Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Have WAMP start automatically upon Windows start-up (without logging on or any UAC interference)

I'm looking to have WAMP start when I switch on the computer. Ideally it would start without users even having to log on. I've added WAMP to the start-up in the registry but a user needs to have logged on and UAC is still playing it's annoying part.

Is there a way to accomplish this without logging on or UAC interfering?

Thanks.

like image 446
George Avatar asked Dec 07 '12 10:12

George


People also ask

How do I start and stop WAMP server?

Shutting Down WampServer To shut down WampServer, click on the systray icon and select Stop All Services to shut down the Apache and MySQL services. The icon will turn red once all services have been shut down. Next you will right-click on the WampServer systray icon and click Exit to close the program.

What does WAMP stand for and what is the meaning behind each of the 4 components?

WAMP is an acronym that stands for Windows, Apache, MySQL, and PHP. It's a software stack which means installing WAMP installs Apache, MySQL, and PHP on your operating system (Windows in the case of WAMP). Even though you can install them separately, they are usually bundled up, and for a good reason too.


1 Answers

Follow these instructions to start the appropriate WAMP services on start-up. UAC will not interfere here and there is no need to log in to start your web-server:

  1. Log in as an administrator.

  2. Start -> Run "services.msc"

  3. Right click the service wampapache (may also be called wampapache64). Go to properties and set start-up type to 'Automatic'

  4. If you want MySQL to also be available on startup, then repeat step 3 for wampmysqld (or wampmysqld64)

enter image description here

Tried and tested on Windows 7-10

like image 118
George Avatar answered Oct 23 '22 12:10

George