Created
September 14, 2020 15:15
-
-
Save jimdiroffii/19d96be94ab92094b13f69d67e6e3419 to your computer and use it in GitHub Desktop.
Remove all KDS services from a Micros Simphony servicehost
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rem Stop and Disable KDS Services | |
net stop "MICROS KDS Controller" | |
sc config "MICROS KDS Controller" start= disabled | |
rem Stop and Disable IIS Services | |
net stop "IISADMIN" | |
sc config "IISADMIN" start= disabled | |
net stop "W3SVC" | |
sc config "W3SVC" start= disabled | |
rem Remove KDS Registry Keys | |
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\MICROS\Common\KDS" /f | |
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\MICROS\KDS" /f | |
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\MICROS\Common\KDS" /f | |
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\MICROS\KDS" /f | |
rem Remove KDS Directory and Contents | |
rd /s /q "C:\Micros\KDS" | |
rem Reboot | |
shutdown /r /t 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment