Reputation: 11193
How do you open IIS (Internet Information Services) Manager using Windows 10?
I have installed the developer preview of Windows 10 and can't seem to find IIS Manager? It is not in Control Panel > Administrative Tools.
When I browse to the folder
C:\Windows\System32\inetsrv
it is empty.
I did a full search of my hard drive to find inetmgr.exe
and found three copies and none of them would open, when I tried to open them it says "This App cannot Run on your PC" To find a version of the App that works contact the publisher.
I know IIS works because I have ran local ASP.NET apps through Visual Studio, but I can't seem to find any way to launch IIS Manager to do some configurations for a site.
Anyone know anything about this?
Upvotes: 444
Views: 845967
Reputation: 4470
After turning IIS on (by going to Windows Features On/Off) type inetmgr
in search bar or run.
Upvotes: 19
Reputation: 1131
appwiz.cpl
- brings up Programs and FeaturesUpvotes: 26
Reputation: 493
@user1664035 & @Attila Mika's suggestion worked. You have to navigate to Control Panel -> Programs And Features -> Turn Windows Features On or Off. And refer to the screenshot. You should check IIS Management Console.
Upvotes: 47
Reputation: 741
Actually you must make sure that the IIS Management Console feature is explicitly checked. On my Windows 10 Pro I had to do it manually, checking the root only was not enough!
Upvotes: 72
Reputation: 177
I arrived here because I was having the same issue.
If you are here and everything above didn't work, it's likely that you butchered your path somehow.
Go to System -> Advanced System Settings -> Advanced -> Environment Variables -> Machine or User
and add the following entry to the end, or append to the existing, separating with a semi-colon:
C:\Windows\System32\inetsrv
After closing and opening your shell, you should now be able to access inetmgr from the command line.
Upvotes: 2
Reputation: 317
To install the IIS Management Console under Windows 10 using Powershell with RSAT installed:
Enable-WindowsOptionalFeature -Online -FeatureName IIS-ManagementConsole -All
Credit and thanks to Mikhail's comment above.
Upvotes: 20
Reputation: 5008
Under the windows feature list, make sure to check the IIS Management Console You also need to check additional check boxes as shown below:
Upvotes: 311
Reputation: 441
Press the Windows Key and type Windows Features, select the first entry Turn Windows Features On or Off.
Make sure the box next to IIS is checked. You good to go.
Upvotes: 3
Reputation: 2211
It most likely means that IIS Management Console was not installed, and modern Windows administrator/IT pro should be able to quickly check this by issuing this command:
Get-WindowsFeature *Web*
And if it is missing just quickly add this via the following command:
Add-WindowsFeature Web-Mgmt-Console
GUI options mentioned above are also valid (see answer from @Joe Wu) but PowerShell it is best way to do IT for IT Pro or let's put it as "if you have to do this slightly more often than once a year" :)
Upvotes: 5
Reputation: 11193
Thanks to @SLaks comment above I was able to turn on IIS and bring the manager back.
Press the Windows Key and type Windows Features, select the first entry Turn Windows Features On or Off.
Make sure the box next to IIS is checked.
If it is not checked, check it. This might take a few minutes, but this will install everything you need to use IIS.
When it is done, IIS should have returned to Control Panel > Administrative Tools
Upvotes: 592
Reputation: 37
Launch Windows Features On/Off and select your IIS options for installation.
For custom site configuration, ensure IIS Management Console is marked for installation under Web Management Tools.
Upvotes: 2