katit
katit

Reputation: 17915

disable IIS Express?

Just migrated to VS2012 and having this issue. I need to develop against real IIS server (to be able to debug web services when they called from network devices)

Having issues with "IIS Express started on same port", etc. But there seems to be no IIS Manager for Express? How do I control and configure it?

I'd rather fall back to real IIS

Upvotes: 10

Views: 24223

Answers (2)

Brad
Brad

Reputation: 66

To uninstall IIS Express via Windows 10

Go to Settings -> Apps and features -> Select IIS Express -> Uninstall

Note: IIS Express is packaged with Visual Studio installation (if you have selected to develop ASP.NET Web applications). I DO NOT KNOW if uninstalling IIS Express will have undesirable repercussions in your VS IDE.

I would just follow the instructions above rather than completely uninstalling IIS Express.

Cheers!

Upvotes: 2

Kapil Khandelwal
Kapil Khandelwal

Reputation: 16144

  1. Register asp.net

    C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe -i

  2. Open Project-> Right Click Select Properties-> Select Web Tab-> Select Use Local IIS Web Server & uncheck the Use IIS Express checkbok -> Specify Project Url

enter image description here

Upvotes: 3

Related Questions