7

I am doing a lot of work using the XAMPP stack, but every time I restart my machine, I have to manually stop IIS before I can start Apache.

I can't find a service for IIS to configure not to start automatically. How can I prevent IIS from starting automatically?

shasi kanth
  • 179
  • 1
  • 3
  • 11
ProfK
  • 493
  • 5
  • 9
  • 28

3 Answers3

14

You have to disable two services:

  • World Wide Web Publishing Service (W3SVC)
  • IIS Admin Service (IISADMIN)

Go to Services, properties of the above mentioned services, change the start up type to "Disabled"

Enjoy.

Noor Khaldi
  • 3,869
  • 3
  • 19
  • 28
7

Look for World Wide Web Publishing Service (W3SVC) in services.

Also you could change the default port into something that does not conflict with Apache?

mikkoko
  • 243
  • 2
  • 11
3
  1. Hit Windowskey-R (or click start -> run).
  2. Type in "services.msc"
  3. Double Click "World Wide Web Publishing Service" to view its properties
  4. On the first tab "General" you'll see a "Startup type" drop down box, set it to "Manual" or "Disabled".
Louis Somers
  • 616
  • 6
  • 15