Microsoft command line tool for deploying, synchronizing and packaging web applications, content and configuration settings to IIS Web Servers.

learn more… | top users | synonyms

0
votes
1answer
11 views

How can you vary an image using msdeploy?

I have a web application I want to publish to multiple different clients, each with their own logo. I'm using 'publish web' from visual studio to do my deployment. The only way I can think to change ...
0
votes
1answer
14 views

Is it possible to include the site name as query parameter to MSDeploy within MSBuild

I am trying to setup a CI process with Team Build and VS2012. I've setup the web server to accept web deployment. I've installed Web Deploy 3.0, IIS Management Services and have configured the ...
0
votes
1answer
25 views

Modify files after deployment package is created

I'm in the process of creating a web deployment package through an automatic build trigger on the server. The package should take care of everything (including creation of a specific website, ...
0
votes
2answers
16 views

Detect remote runcommand failed when running msdeploy

I am running msdeploy (in powershell, as part of a script) with a runcommand provider as a postsync step, which runs a batch file on the remote machine. The batch file just executes exit /b 1 which ...
0
votes
0answers
7 views

msdeploy how to grant read/write permsinon for IIS_ISURS to c:\windows\temp folder

I am adding this item in the ItemGroup in the project wpp.targets file. <MsDeploySourceManifest Include="setAcl"> <Path>%windir%\TEMP</Path> ...
0
votes
0answers
11 views

MSDeploy provider for PostgreSql

I am using MSDeploy (Web deploy) as our automated deploy tool on top of PostgreSql database and there is no out of the box provider support, any ideas will be highly appreciated
0
votes
0answers
73 views

Jenkins, MSBuild and Web Deploy: Unable to create Web Package

I'm currently trying to create a Jenkins CI job on a build server (Windows Server R2), which has turned out to require a lot more work without installing Visual Studio. For this job, I am trying to ...
0
votes
0answers
34 views

How to copy a single Project file to a separate IIS virtual directory as part of Web deploy publish web?

I have an ASP.NET Web API project that is deployed to an Application inside IIS 7 Default Web Site. As part of the deployment I need to copy a single JavaScript file called MyCustomScript.js that sits ...
0
votes
0answers
63 views

What Parameters do I need to pass to the PackageWeb powershell script to make it deploy to my remote machine

still, I am fiddling around within the MSBuild-/MSDeploy-world and have been scratching my head far too often lately. I want to be able to build a Web Application Project only once and deploy it to ...
0
votes
1answer
41 views

Automated deployment of web site

I'm planning to do an automated deployment of a website,but im kind of stuck at this moment. I have looked at MS-Deploy, it got all the functions for deploying Website. I have a created a Web ...
0
votes
2answers
37 views

How can I stop Visual Studio's Web Publish from removing write permissions from my target web site?

I have a web app (actually Orchard CMS) that I am customizing and I want to push directl from my build server to my hosting provider, using Web Publishing aka MSDeploy. The problem is, when I publish ...
0
votes
0answers
32 views

WPI Package with RunCommand provider is not working in Manifest.xml

I have problem to run the runCommand provider in WPI. My goal is to enable 32 bit of application pool that has been created automatically (I guest it) by WPI. So i think the runCommand provider is ...
0
votes
1answer
47 views

Azure websites Deploy from Source Control fails on nuget dependency

Asp.Net v4 Webforms App has a dependency on Windows.Azure.Storage. This all works fine if i use WebDeploy to deploy it to Azure Websites. Now i want to use a branch in my bitbucket repo to have it ...
0
votes
0answers
38 views

MSDeploy WMSVC Not working

I have a build/test server which is currently running Jenkins for my continuous integration and it also is acting as my test server where code will be deployed to once built (i hope to rectify this ...
0
votes
0answers
28 views

Is “AutoParameterizationWebConfigConnectionStrings”-option the only way to prevent connection string tokenization?

I am still trying to get my head around MSBuild things. Currently I am fiddling around with deploying via powershell script using the generated scripts from the PackageWeb-Nuget-Package (video demo). ...
0
votes
0answers
30 views

MSDeployPublish target destination Web Deploy

I'm trying to get a PowerShell script to run after Web Deploy. This is the build target: <Target Name="PostPublishTarget" AfterTargets="MSDeployPublish"> <Exec Command="PowerShell ...
0
votes
1answer
118 views

TeamCity won't publish project using MsDeploy

I have msbuild command to publish my project (WCF Service Application) that looks as follow: msbuild FooBar.Service.csproj /p:DeployOnBuild=true; DeployTarget=MsDeployPublish; ...
0
votes
2answers
106 views

Msbuild just produces a package but does not deploy it when using a publish profile. Why?

MSBuild really seems to like me. Recently I am trying out the different possibilities to build and deploy from command line. However I am experiencing some seemingly strange behaviour when I pass a ...
0
votes
1answer
98 views

msdeploy cannot reach destination despite having web deployment service started

as you can see from the title I am experiencing some trouble deploying to a remote IIS. Here is what I have done so far: I have set up a virtual machine running an IIS7 on Windows Server 2008. I ...
2
votes
2answers
48 views

msdeploy: allowuntrusted is being ignored

I have a machine [A] running fresh installation of Win2008 R2 which holds a webapp on IIS. I try to use msdeploy command line tool on machine [B] to publish a deployment package to this machine, but i ...
0
votes
0answers
55 views

Add appHostAuthOverride to msdeploy package using Web Publishing Pipeline

Web Deploy 3 adds a new appHostAuthOverride provider that enables overriding of authentication settings in application's web.config. I have a Web Application Project in VS 2012 for which I'd like to ...
1
vote
0answers
41 views

How to keep web deployment package parameter values set through IIS UI across package updates?

My question is similar to this one, which remained unanswered, unfortunately. We are rolling out a web application as a web deployment package (Web Deploy/MSdeploy) to different environments. The ...
0
votes
0answers
27 views

MSDeploy skip root web.config

I can't get msdeploy to skip only the root web.config (I want to keep any web.config files that exist in sub folders below the root) This is the parameter I am using: ...
1
vote
1answer
87 views

Deploy multiple configurations from command line without changing project files

Please don't be too harsh, because I do not grasp this entirely correctly still, but msbuild/msdeploy is giving me some headaches lately. Hopefully someone can provide a textual aspirin of some kind? ...
0
votes
1answer
86 views

msdeploy inside visual studio publish profile

How do i use my custom msdeploy and msbuild community task script from VS 2010 web deployment project inside a visual studio 2012 publish profile? My script in VS2010 builds to a local directory and ...
1
vote
0answers
119 views

ASP.NET MVC plugin architecture & deployments

For a customer we have an ASP.NET MVC plugin architecture consisting of: - 1 core web application (this is the root web application in IIS) - X plugins for which the content (views, css, scripts) are ...
1
vote
2answers
27 views

How can I skip deleting a folder but still sync the folder contents for an Web Deploy (msdeploy) sync?

Let's say I have a folder 'content' that (for some reason) may or may not be present in the source folder tree for a Web Deploy sync operation. With what skip setting(s) can I have Web Deploy sync ...
0
votes
1answer
29 views

MSDeploy override contentPath directory with manifest

I'm trying to override the installation directory when using contentPath provider with an MSDeploy package that contains a manifest. I'm sure I've done this in the past, but just can't get it to ...
1
vote
1answer
110 views

web.config transform at deploy time not build

I'm wanting to know how to perform the following Build & package an ASP.NET website to the file system Be able to deploy the website to one or more environments. I want to the transforms of ...
2
votes
2answers
68 views

MSDeploy throwing weird error: Stream data of xxxxx.dll is not yet available

I am deploying a number of .Net projects to different servers. To do this my team is using TFS to build, then from the build template calling a ps1 script that uses msdeploy to push to all the ...
1
vote
1answer
121 views

updating url rewriting rule with vs2012 web deployment web.config transformations

I can't figure out how to get my web.config deployment transformation to work for a rewrite rule. I've tried the following and it ignores it. <?xml version="1.0"?> <configuration ...
0
votes
1answer
61 views

msdeploy via powershelll and psake fails

So I'm trying to use powershell and psake for my build and deployment. I've tried without any success to call the following psake task. Exec { msdeploy.exe "-verb:sync" ...
0
votes
0answers
25 views

MSDeploy command to sync virtual dirs and applications under a website

I have a IIS website called XYZ123 and I have several Applications and Virtual Directories under it. We are syncing the content using Rsync. And I just want to sync the applications and virtual ...
0
votes
0answers
31 views

How to use MSDeploy to copy a file to the Windows directory?

I need a particular XML file to be copied to a web server on publish. The file needs to be in the %windir%\system32\instsrv\config\schema directory. When I use the command-line MSDeploy.exe ...
1
vote
0answers
46 views

MSDeploy broken on Team Build Server after Installing Visual Studio SDK

I have had nightly builds set up and working for a few months until now. I installed Visual Studio 2012 SDK on Saturday and now my builds are not deploying via MSDeploy. My build server has Visual ...
0
votes
1answer
46 views

File.Exists fails on file in published website

Setup: MVC Web Api app, Visual Studio 2012 Folder layout: D:\WebSites\MySite\bin\MyDLLBin\Some.dll My application needs to LoadLibrary on an unmanaged DLL as part of a MVC Web API application. ...
1
vote
3answers
98 views

TeamCity “.Net Process Runner” hangs

We have started migrating our one of several projects to team city as part of CI. Below is how we have setup teamcity build. We are trying to deploy WebSite. 1) Build Step 1 (Package installation) ...
2
votes
1answer
75 views

Schedule a task after deployment

I need to setup a scheduled task in Windows Task Scheduler (v2.0 on Windows Server 2008 R2) right after my web site deploys. I am using TFS 2010 to build my application, and apparently my MSBuild ...
1
vote
1answer
77 views

How can I set the deployment path for an iisApp Provider using MsDeploy?

I am creating Web Deployment Package zip files for my Web Applications I found I am able to specify the Site Name of the application by including a pubxml during the packaging of my site and using ...
3
votes
1answer
69 views

Creating Multiple SetParameters.xml from One Build task

I am searching for a solution that allows me to generate a Web Deploy Package and the associated deploy.cmd and SetParameters.xml. But I need to generate a deploy.cmd and SetParameters.xml Per ...
0
votes
2answers
28 views

Webdeploy skip rule includes .css files as well as .cs

I am trying to use webdeploy in my build system. I would like it to be able to pull content files from my source code file but skip the code files. I am using a skip rule: ...
0
votes
1answer
13 views

How do I execute a command file to upgrade existing IIS 7 web applications during a web deploy?

I want to deploy a couple of web apps but, when deploying to a server which has the existing web apps, I need to upgrade the application pools for those two web apps (to use ASP.NET 4.0). I have an ...
0
votes
1answer
303 views

Application Pool not set when deploying msdeploy iisApp package

I'm having an issue with msdeploy not syncing application pool information for a sub application of a site (Default Web Site for example). Essentially I was hoping I could create webdeploy/msdeploy ...
1
vote
1answer
113 views

VS2012 Error when creating publish package: Exception in Executing Publishing Access to path is denied

I am trying to publish an application with VS2012 and when i try and make the package i get an error that access to the path is denied. I have checked and my user has full control and verified the ...
0
votes
1answer
221 views

Is there a current walkthrough on Web Deploy Installation and Configuration?

I've tried on a couple of different servers to install Web Deploy and it works to the extent that I need it to, but I haven't identified what the missing steps are. Where it falls down is after ...
0
votes
0answers
51 views

web publishing pipeline with teamcity

I have a project with a wpp pipeline that has some extra acl and dbDacFx tasks. The solution runs fine on my build machine and produces the correct deployment manifest, however when i run the same ...
0
votes
1answer
55 views

msbuild deployment - Only delete folders in package

I am using msbuild to build and deploy a package for a web application. I have a question on how files are synced. Let's say I have the following folder structure: -Root -Pages* -Javascript* ...
1
vote
0answers
86 views

MSDeploy Command Console

How to open the "MSDeploy Command Console" that I see in the video "http://www.iis.net/downloads/microsoft/web-deploy" at around 3 minutes, 40 secs I could access that by pointing a cmd prompt to ...
0
votes
1answer
99 views

Use MSDeploy to copy buildresult to targetserver

There is a webproject with a batchfile that generates all files needed on the targetserver and puts them in a folder "/Deployable" . The batch file is quite involved because the project contains a ...
2
votes
1answer
55 views

How do I target an already existing application pool with webdeploy?

I am trying to make sure that my app gets deployed to a specific application pool that already exists when using weddeploy. The application pool should be configurable by the user using the GUI when ...

1 2 3 4 5 11