IIS Manager in Windows 10

前端 未结 11 1506
旧巷少年郎
旧巷少年郎 2020-11-28 19:21

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 Manage

相关标签:
11条回答
  • 2020-11-28 19:40
    • Run appwiz.cpl - brings up Programs and Features
    • Choose "Turn Windows Features On/Off"
    • Select the IIS Services you need
    0 讨论(0)
  • 2020-11-28 19:45

    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.

    0 讨论(0)
  • 2020-11-28 19:49

    Actually you must make sure that the IIS Management Console feature is explicitly checked. On my win 10 pro I had to do it manually, checking the root only was not enough!

    0 讨论(0)
  • 2020-11-28 19:50

    @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

    0 讨论(0)
  • 2020-11-28 19:54

    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.

    0 讨论(0)
  • 2020-11-28 19:58

    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" :)

    0 讨论(0)
提交回复
热议问题