You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
Hello.
I have an asp.net web page which I am building with Visual Studio in bamboo ,
I will deploy it to as IIS server, but I cannot find any option in bamboo for it neither can I find it in Atlassian Market.
I have found some posts but they are old...
What is the best way to do it?
What you are looking for is MS Web Deploy. This is a Windows tool, that can perform remote deployments to IIS using a CLI command, making it easy to integrate into tools like Bamboo or Jenkins.
In order to use this, you'll need to have 2 services setup and installed on the IIS server.
Once those services are setup and running, you can run the msdeploy.exe (C:\Program Files\IIS\Microsoft Web Deploy V3\msdeploy.exe) that comes with MS Web Deploy to execute a application deployment. This can be done from the same server, or from a remote server.
Example:
msdeploy.exe -verb:sync
-source:iisApp="$appPath\web"
-dest:iisApp='$SiteName',wmsvc="$IIS-Server-Name",UserName='$user',Password='$password',AuthType='Basic',skipAppCreation=true
-enableRule:AppOffline
-allowUntrusted:true
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.