MattyMerrix
MattyMerrix

Reputation: 11193

IIS Manager in Windows 10

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

Answers (11)

Code_Worm
Code_Worm

Reputation: 4470

After turning IIS on (by going to Windows Features On/Off) type inetmgr in search bar or run.

Upvotes: 19

jchadhowell
jchadhowell

Reputation: 1131

  • Run appwiz.cpl - brings up Programs and Features
  • Choose "Turn Windows Features On/Off"
  • Select the IIS Services you need

Upvotes: 26

user3122382
user3122382

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.

Screenshot

Upvotes: 47

Attmik
Attmik

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

rdelgado-incinc
rdelgado-incinc

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

cyberop5
cyberop5

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

Joseph Wu
Joseph Wu

Reputation: 5008

Windows features, ISS Management Console

Under the windows feature list, make sure to check the IIS Management Console You also need to check additional check boxes as shown below:

Windows features, ISS, HTTP Features

Upvotes: 311

Sahan Pasindu Nirmal
Sahan Pasindu Nirmal

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

Mike
Mike

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

MattyMerrix
MattyMerrix

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.

enter image description here

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

enter image description here

Upvotes: 592

user1664035
user1664035

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

Related Questions