How To Install IIS In Windows 11 (3 Methods)

Photo of author

By Porbeni Johnson

Published

Do you wish to install an IIS manager on your Windows 11 computer? This article shows you ways to install IIS in Windows 11.

In this guide, you will learn three methods to install the IIS manager on your PC. To be more specific, you will learn how to install IIS from Control Panel and with DISM (Deployment Image Servicing and Management).

That’s not all; I will also show you how to perform this task using Windows PowerShell. Hence, at the end of this guide, you should be able to perform this task using any of the three methods I discussed in this guide.

Furthermore, this guide contains a Frequently Asked Questions section that provides answers to other questions you have on this topic or in Windows 11 in general.

How To Install IIS In Windows 11 From Control Panel

How To Install IIS In Windows 11 From Control Panel
  1. To start with, click the Windows 11 search icon beside the Windows key in the Taskbar.
  2. Then, type the word control panel in the Windows 11 search box.
  3. From the result of your search, double click on Control Panel.
How to Install IIS in Windows 11
  1. In Control Panel, confirm that View by is set in the Category option. If it is not on this option, click the drop-down and select Category.
How to Install IIS in Windows 11
  1. Once that is done, click on Programs.
How to Install IIS in Windows 11
  1. When Programs opens, under the Programs and Features option click on Turn Windows features on or off. Clicking this will open a Windows Features pop-up menu.
How to Install IIS in Windows 11
You can expand the Windows Features pop-up window if the view is too small for you.
How to Install IIS in Windows 11
  1. On the Windows Features pop-up menu, locate the Internet Information Services option and click on the check box beside it. By clicking on the check box you have checked the default sub-features in this option.
How to Install IIS in Windows 11
  1. Still on the Windows Features pop menu, if you wish to customize the features in the Internet Information Services option, click on the + sign beside the check box. Furthermore, you can expand the 3-sub-features folders and check additional feature(s) you wish to add to the installation.
  2. When you are done with your selection, click on the OK button to start the installation.
How to Install IIS in Windows 11
  1. Then, the installation process will commence by searching for the required files.
How to Install IIS in Windows 11
  1. Once the search is complete, the features will start applying. Here’s what it looks like.
How to Install IIS in Windows 11
  1. When the installation is completed, click on the Close button at the bottom right corner of the pop-up screen.
How to Install IIS in Windows 11
  1. Furthermore, to confirm that your installation was successful, click on the search icon beside the Windows start and type IIS in the search field.
How to Install IIS in Windows 11

How To Install IIS In Windows 11 With Command Line

As expected, you can also install IIS in Windows 11 using the command prompt. Follow the steps below to enable IIS with the DISM command:

  1. Firstly, click on the search icon next to the Windows start menu on the Taskbar and type cmd in the search field.
  1. On the right pane of your search results, beneath Command Prompt, click on Run as Administrator.
How to Install IIS in Windows 11
  1. Click Yes to the User Account Control prompt requesting to allow the app to make changes on the PC.
  2. When Command Prompt opens, type the command below and press enter.
DISM.exe /Online /Get-Features | find "IIS"

The result of this command will show all available IIS features…

You can enable features one after the other, or you could install the default IIS features.
  1. To install the IIS default features, type the command below and press enter on your keyboard. This command will initiate the installation process.
Dism /Online /Enable-Feature /FeatureName:IIS-DefaultDocument /All
  1. Once Enabling feature (s) bar reaches 100% and displays “The operation completed successfully,” you have successfully installed IIS.
How to Install IIS in Windows 11

How To Install IIS In Windows 11 With PowerShell

How To Install IIS In Windows 11 With PowerShell

Here are the detailed steps to install IIS in Windows 11 using Windows PowerShell:

  1. To begin with, click on the search icon next to the Windows start menu on the Taskbar. In the search field, type the word powershell.
  1. Then, on the right pane of your search results, click on Run as Administrator beneath PowerShell.
  1. You will receive a User Account Control prompt requesting that you grant permission to Powershell to make changes on your PC. Click on the Yes button to proceed.
  2. In PowerShell, type the command below and press enter to get a list of all IIS optional features.
Get-WindowsOptionalFeature -Online | Where-Object {$_.FeatureName -like "IIS*"} | Format-Table

Here is what the results of the command will look like in PowerShell. However, some of the results are hidden in my screenshot below.

The results of the command are displayed in table format because of the inclusion of the Format-Table command. If the Format-Table command were to be removed, the results would be listed.
  1. Moving on, to install the default IIS features, type the command below and press enter to proceed.
Enable-WindowsOptionalFeature -Online -FeatureName "IIS-DefaultDocument" -All
  1. Once you’ve entered the command, PowerShell will begin the IIS installation.
How to Install IIS in Windows 11
  1. When the installation is completed, it will display a result similar to the one in the image below.
  1. Hence, you have successfully installed IIS with PowerShell.

How To Install IIS In Windows 11: Frequently Asked Questions

1. How Do I Get To IIS?

To get the IIS (Internet Information Services) manager on your Windows 11 computer, follow these simple steps below:
a) Click on the search icon right next to the Windows start menu on your Taskbar.
b) On the search field, type control panel, and from the result of your search, click on Control Panel.
c) In Control Panel, click System and Security.
d) Next, click on the Administrative Tools window and double-click Internet Information Service (IIS).

2. Is Tomcat The Same As IIS?

No, it isn’t. Tomcat is a server developed for running Java and JSP applications.
Also, it has an HTTP web server that is capable of running Java codes. On the contrary, IIS is a Microsoft web server for processing HTML documents, and it is exclusive to Windows Servers.

3. What Is IIS In Windows Server?

IIS is an acronym for Internet Information Services. It is a multi-purpose web server developed by Microsoft to process HTML files and pages.

4. How Do I Enable IIS In Windows 11?

Navigate to your computer’s Control Panel-> select Programs-> click on Programs and Features->open “Turn Windows Features on or off“-> click on the checkbox in front of Internet Information Service.-> Then click the OK button.

5. Does Installing IIS Require A Reboot?

No, it doesn’t. Installing IIS does not require your system to reboot.

How To Install IIS In Windows 11: My Final Thoughts

How To Install IIS In Windows 11 My Final Thoughts

IIS (Internet Information Services) is a web server that processes HTML files and pages. To give more details, the server is capable of securely hosting and sharing information on the internet.

Hence, this guide teaches you how to install IIS on Windows 11 using three different methods.

Was this post helpful to you? If you found this article helpful, kindly spare 2 minutes to share your experience with our community at [discourse_topic_url]. .

However, if you have any questions regarding this article or if the steps did not fix your problem, please post your question at [discourse_topic_url]. Our team and other community members will come back to you with a fix as soon as possible.

Finally, for more Windows 11 guides and fixes, visit our Windows How-To page.

References And Further Reading

  1. techtarget.com – Internet Information Services (IIS)
  2. documentation.observeit.com – Installing IIS on Windows Server

About the Author

Photo of author

Porbeni Johnson

Porbeni Johnson is a Technical Writer for Itechguides.com. He has a B.Eng in Electrical/Electronic Engineering. Porbeni loves reading, movies, playing soccer, and gadgets. In Itechguides.com, he writes gadget buying guides, apps and software reviews, movies, and video games reviews.

Related Articles

Get in Touch

We're committed to writing accurate content that informs and educates. To learn more, read our Content Writing Policy, Content Review Policy, Anti-plagiarism Policy, and About Us.

However, if this content does not meet your expectations, kindly reach out to us through one of the following means:

  1. Respond to "Was this page helpful?" above
  2. Leave a comment with the "Leave a Comment" form below
  3. Email us at [email protected] or via the Contact Us page.

Leave a comment