How to Fix Windows 10 inetmgr Not Found Error: Step-by-Step Troubleshooting Guide

Encountering the “inetmgr not found” error on Windows 10 can be frustrating, especially when you need to manage Internet Information Services (IIS). This error typically means that the IIS Manager is not installed or accessible on your system. Fortunately, fixing this problem is straightforward with some simple troubleshooting steps.

This guide will walk you through easy-to-follow solutions to get the IIS Manager up and running again. Each step is explained clearly, so even beginners can follow along without confusion.

Before diving into the fixes, it is helpful to understand why the error occurs and what requirements must be met to use inetmgr on Windows 10. This knowledge will guide you in resolving the issue efficiently.

Let’s get started with some quick checks to prepare your system for the troubleshooting process.

Quick Note: Prerequisites and Initial Checks

Before you begin troubleshooting the “inetmgr not found” error, make sure your Windows 10 edition supports IIS. The IIS Manager is available on Windows 10 Pro, Enterprise, and Education editions, but not on Home editions.

Also, ensure that your system is updated with the latest Windows updates. Sometimes, missing updates can cause system components like IIS to malfunction or be unavailable.

Here are a few quick checks:

  • Check Windows Edition: Go to Settings > System > About and verify your Windows edition.
  • Verify Windows Updates: Open Settings > Update & Security > Windows Update and install any pending updates.
  • Run Command Prompt as Administrator: Some steps require administrative privileges.

Step 1: Enable IIS Manager via Windows Features

One of the most common reasons for the “inetmgr not found” error is that IIS Manager is not installed or enabled on your PC. Windows features allow you to turn IIS components on or off as needed.

Follow these simple steps to enable IIS and IIS Manager:

  1. Press Windows key + R to open the Run dialog box.
  2. Type optionalfeatures and press Enter. This opens the Windows Features window.
  3. Scroll down and find Internet Information Services. Click the plus sign (+) to expand it.
  4. Make sure to check the box for Web Management Tools, and under it, check IIS Management Console.
  5. Also, ensure that Internet Information Services itself is checked if you want to run IIS server features.
  6. Click OK and wait for Windows to apply the changes. This may take a few moments.
  7. Once completed, try running inetmgr again by pressing Windows key + R, typing inetmgr, and pressing Enter.

Why this is important: IIS Manager is not installed by default on Windows 10, even on supported editions. Enabling it through Windows Features installs the necessary files and services.

Step 2: Verify IIS Service is Running

After enabling IIS and its management tools, the IIS service needs to be running properly for inetmgr to work.

Here’s how to check and start the IIS service:

  1. Press Windows key + R, type services.msc, and press Enter.
  2. In the Services window, scroll down to find World Wide Web Publishing Service.
  3. Check the Status column. If it says Running, you’re good to go.
  4. If it’s not running, right-click the service and select Start.
  5. Also, right-click, select Properties, and set the Startup type to Automatic so IIS starts automatically on system boot.

Why this matters: The IIS Manager relies on the IIS services running. If the services are stopped, the manager won’t function properly.

Step 3: Use Command Prompt to Install IIS (Alternative Method)

If the Windows Features approach doesn’t work or you prefer using the command line, you can install IIS via the Deployment Image Servicing and Management (DISM) tool.

Follow these steps:

  1. Open Command Prompt as Administrator. To do this, search for cmd, right-click it, and select Run as administrator.
  2. Type the following command and press Enter:
Dism /Online /Enable-Feature /FeatureName:IIS-WebServerRole /All
  1. Wait for the process to complete. This command enables IIS along with all its necessary dependencies.
  2. After completion, try launching IIS Manager again by pressing Windows key + R, typing inetmgr, and pressing Enter.

Why use this method: Sometimes, Windows Features UI may not work properly due to system glitches. Using DISM can bypass those issues and force the installation.

Step 4: Check Environment Variables and PATH

If after installation you still get “inetmgr not found,” it’s possible that the system PATH environment variable does not include the directory where inetmgr.exe is located.

Here’s how to check and fix it:

  1. Press Windows key + S and type Environment Variables, then select Edit the system environment variables.
  2. In the System Properties window, click the Environment Variables button.
  3. Under System variables, find and select the Path variable, then click Edit.
  4. Look for the path C:WindowsSystem32inetsrv. If it’s not listed, you need to add it:
    • Click New and enter C:WindowsSystem32inetsrv.
    • Click OK to save changes on all open windows.
  5. Close and reopen any Command Prompt or Run dialogs and try running inetmgr again.

Why this is necessary: The system needs to know where to find the inetmgr executable. If the path is missing from the environment variables, Windows cannot locate the file when you type inetmgr.

Frequently Asked Questions (FAQs)

Q: Can I install IIS Manager on Windows 10 Home edition?

No, IIS and IIS Manager are not available on Windows 10 Home edition. You need Windows 10 Pro, Enterprise, or Education to use these features.

Q: Why do I get “inetmgr not found” after enabling IIS?

This often happens if the IIS Management Console was not selected during installation or if the system PATH doesn’t include the correct directory. Review the steps above to ensure all components are installed and the environment variables are correct.

Q: Is there a way to manage IIS without inetmgr?

Yes, you can use PowerShell commands or edit configuration files manually, but these methods are more advanced and not as user-friendly as IIS Manager.

Q: Do I need to restart my computer after installing IIS?

Usually, Windows applies IIS changes immediately, but restarting your computer can help ensure all services start properly.

Q: How can I confirm IIS Manager is installed?

Try running inetmgr from Run dialog or Command Prompt. If IIS Manager opens, it is installed correctly. You can also check in Programs and Features > Turn Windows features on or off.

When Nothing Works

If you have followed all the steps above and still cannot access inetmgr, consider the following options:

  • Run System File Checker: Open Command Prompt as administrator and run sfc /scannow to repair corrupted system files.
  • Use DISM Repair: Run Dism /Online /Cleanup-Image /RestoreHealth to fix Windows component store issues.
  • Check for Windows Updates: Sometimes missing updates can block IIS features.
  • Consult Microsoft Documentation: Visit the official IIS documentation at https://docs.microsoft.com/en-us/iis/ for advanced troubleshooting.
  • Consider Reinstalling Windows Features: Disable IIS completely via Windows Features, reboot, then re-enable it.

Conclusion

The “inetmgr not found” error on Windows 10 usually means that IIS Manager is not installed or configured properly. By enabling IIS through Windows Features, verifying services, and checking environment variables, you can resolve the issue quickly.

Alternative methods like using DISM commands or repairing system files provide additional options if the standard approach fails. Remember to confirm your Windows edition supports IIS and keep your system updated for the best experience.

Following this step-by-step guide will help you regain access to IIS Manager so you can manage your web server settings without hassle.

Leave a Reply