You need to stop all services like Apache and Mysql before exit from xampp-control.exe
...but, I want quit from all at once.
So I always use this .bat file method.
How to shut down XAMPP with .bat file.
Step1. Create a batch file using Notepad or any other editor.
Step2. Write the code following and save it.
@echo off
call C:\xampp\apache_stop.bat
call C:\xampp\mysql_stop.bat
taskkill /F /IM xampp-control.exe /T
:exit
Step3. Create a desktop shortcut to the batch file.
Step4. Open the shortcut's Properties window.
Step5. Click "Advanced..." and Check "Run as administrator".
All you need is just clicking this shortcut to shut down XAMPP.
What is this batch file doing?
Actually, XAMPP has many *.bat files for shutting down particular services.
call C:\xampp\apache_stop.bat
call C:\xampp\mysql_stop.bat
These lines are stopping Apache and Mysql using XAMPP's batch files.
Batch files are located XAMPP's installation folder, so change path if needed.
taskkill /F /IM xampp-control.exe /T
This line is exiting from control panel.
All comands need administrative rights for running, make sure you run batch file as administrator.
					How to hide Navigation Toolbar in Firefox Nightly for Android.(disable new double address bar)
				
					How to change Thunderbird like Gmail Basic HTML view.(userChrome.css)
				
					OpenSea scams surge! Beware of Phishing mail.
				
					How to emulate mobile device in Firefox browser when user-agent spoofing is not enough.
				
					[Android]How to solve White Fade issue at the top of Home Screen
				
					[Android Chrome]How to hide News/Recipes icons in New Tab Page[Disable query tiles]
				
					[PHP]Fix simplexml_load_string() parser error. (file_get_contents returning garbled data)
				
					[Wordpress]Fix automatically inserting read.amazon.com.au iframe card.
				
					[Windows10]Fix Missing Arrows in explorer context menu(missing system font)
				
					How to block Pinterest crawler and prevent saves to Pinterest from your site.
				
					Fix Windows 10 Update errors(1909 to 20H2/21H1)
				
					How to update ASUS Motherboard BIOS(AI suite 3/EZ update/Asus Business Manager)
				
					[XAMPP]How to stop all services (Apache, Mysql) and exit from control panel by just clicking a shortcut.