How can I configure Web Deploy on Windows 10? Should it work? I found information about Web Deploy on Windows 8, there it isn't working. How is it in Windows 10?
Microsoft is being super sneaky about this, but it appears they have removed the ability to use web deploy remotely from ALL non server os's. Even in Windows 7, if you do all of the newest updates, the deploy menu vanishes in IIS. So if you want to use web deploy it seems like your only option is to shell out some bucks for a server os.
HOWEVER, I was able to get FTP publishing configured and working on my Windows 10 machine, which works almost as well. Just install the FTP server under control panel => programs and settings => install windows components. Then open iis mgr and right click on your site and a configure FTP publishing option should pop up. The configuration is a pain and not straightforward, but if you mess with it you'll figure it out.
Then in Visual Studio right click on your project, hit publish, then in the first screen in the drop down there is the good old fashioned ftp option. Good luck!
EDIT
From OP's response, another solution is to simply share the root folder on the server, so for example
C:/inetpub/www
Then mount that share on your development box, I mounted it as the P:\ drive for production, and Q:\ drive for qa. Then in visual studio on the publish screen just select deploy to file system and deploy to that mapped drive, works like a charm and is far simpler than setting up FTP.
Ok, I did this (in Windows 10):
- Uninstalled Web Deploy 3.6 from control panel(didn't help).
- Downloaded Web Deploy 3.6 installer, then ran uninstall from the installation menu.
- Downloaded Microsoft Web Platform Installer 5.0.
- From the Web Platform Installer 5.0, I installed Web Deploy 3.5 + Web Deploy 3.5 without bundled SQL Support
- I seem to have the deploy context menu back when I right click a site.
net start WMSVC
and then sc config WMSVC start= auto
but still it's not working bcs we need to enable the remote debugging that is not available in iis –
Nonprofessional Make sure you do the following:
- Install web Deploy 3.6
- Go to Server Manager > IIS
- Under Server Roles go down to Web Server (IIS), expand this tree and select Management Tools.
- Make sure "Management Service" is checked
- Go to Services, Make sure "Web Management Services" is started. (go ahead and make it automatic while you're in there).
Now you'll see the "Configure Web Deploy Publishing" option under the Deploy menu on IIS. From there make sure you have port 8172 open from the IP you are publishing from.
Installing WebDeploy 2.1 (available from the Web Platform Installer) gives you a 'Deploy' option on your website in Windows 10
See: https://serverfault.com/questions/253292/why-dont-i-have-deploy-actions-available-in-iis-7-manager
© 2022 - 2024 — McMap. All rights reserved.