IIS w3svc error

  1. Confirm that “Windows Management Instrumentation” is started and its start up type is set to automatic.

  2. Also make sure the following dependency services are started for World Wide Web Publishing Service:

    • Windows Process Activation Service
    • Remote Procedure Call (RPC)
    • DCOM Server Process Launcher
    • RPC Endpoint Mapper.
  3. Open regedit, navigate to [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\HTTP]:
    a) Double click on Start and change value data from 4(disabled) to 3(automatically).
    b) Delete "NoRun" key if this key exists.

  4. (warning: backup any IIS website configuration first). UN-install “Internet information Service” and “Windows process activation service(if it is already installed)” from “Turn windows feature on or off” and Restart your PC.

  5. Type the below command in CMD and press enter:

     net start http
    

Now it will notify you that service is already running.

  1. Re-install Internet information Service from “Turn windows feature on or off”.

  2. Start IIS and my websites are started now, no more “w3svc service is not running error.”

Leave a Comment