microsoft.sdc.tasks

Installing a win32 service using MSBuild and Microsoft.Sdc.Tasks

I'm trying to install windows service using the Microsoft.Sdc.Tasks library. <ControlService Action="Install" ServiceName="Service1" User="XXX Password="XXX" ServiceExePath="$(DeployFolder)\XXX.exe"/> But I keep getting prompted for the user and password! This will not work as I'd like to have it as an automated build...

Trying to use MSBuild task <Xml.ModifyFile> from Microsoft.Sdc.Common.tasks

Hi I have a problem with the Xml.ModifyFile task which I do not understand. Can you guys help? My goal is simply to manipulate an attribute in an xml document. Im fairly new to the world of xml and especially msbuild hence I how a hard time interpreting the error message i am receiving. It seems to me that my build file is valid so ...

XPath, Wix and MSBuild ** Duplicate**

The Question and Answer can be found at: http://stackoverflow.com/questions/822104/xpath-in-msbuild-sdc-and-wix Vaccano ...

XPath in MSBuild (SDC) and WIX

Fresh Asking of this Question-> I have a WIX file that I need to modify using MSBuild. It starts like this: <?xml version="1.0" encoding="UTF-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:iis="http://schemas.microsoft.com/wix/IIsExtension"&gt; <?--... Various Removed Params ...--> <Product Id='$(var.Produ...

How do I modify the custom errors of a remote IIS6 website using MSBuild

I'm trying to use "Microsoft.Sdc.Tasks.Web.Website.UpdateHttpErrorSetting" to change the http error messages of a remote IIS website. The documentation for this task in particular is somewhat lacking and I haven't found a way to use it succesfully. I'd like the http 404 error to load a url instead of the default 404b.html file. I've trie...

SDC Tasks Library: CreateVirtualDirectory with AppCreate="False" Ignored...

With the following: <Web.WebSite.Create Condition="'$(Flag)'=='false'" Description="XXX" Path="$(SolutionPath)\Blah" Port="8100"/> <!-- Add Resources VirtualDirectory --> <Web.WebSite.CreateVirtualDirectory Condition="'$(Flag)'=='false'" VirtualDirectoryName="Profile" Path="$(RootFolderPath)\Resources" Ap...