WampServer issues after Windows 10 upgrade

Solution 1:

Update: this seems to fix it permanently

  1. Search for "Turn Windows features on or off" on the taskbar.
  2. Under "Internet Information Services" deselect "World Wide Web Services" that Microsoft must turn on by default (takes port).
  3. Reboot and WAMP came back up as before.

Original solution

I can confirm the following fixed the problem:

Run cmd as Administrator, and enter: iisreset /stop

Then Apache > Service > Install Service will prompt you to press Enter to install as normal.

You may also need to install: http://www.microsoft.com/en-us/download/details.aspx?id=30679

Solution 2:

For Windows 10 Clean Install :

If you have done clean installation of Windows 10, you may not have the Word Wide Web Publishing Service. In that case, simple WAMP/XAMPP installation should work fine.

If it doesn't, try installing Visual C++ Redistributable and then re-install WAMP/XAMPP.


I was facing a similar problem with WAMP. In Windows 10 TP, the Word Wide Web Publishing Service comes pre-installed. This is related to IIS and you can remove it if you don't need it.

This blocks the port 80 making Apache act weirdly. You can do the following and try again.

  • Go to Start, type in services.msc
  • Scroll down in the Services window to find the World Wide Web Publishing Service.
  • Right click on it and select Stop.

This should make port 80 free and restarting WAMP/XAMPP should get you up and running!

There are other ways to do fix this. http://praveenpuglia.com/make-wamp-work-on-windows-10-technical-preview/

Solution 3:

After all the possible fixes that everybody has been mentioning in answers across the Internet, when it still didn't work, I figured out the missing step as:

Running wampmanager.exe as Administrator

It's so trivial - but leaving this answer for someone who was stuck like me.