Skip to content

Instantly share code, notes, and snippets.

@jimdiroffii
Created September 14, 2020 15:15
Show Gist options
  • Save jimdiroffii/19d96be94ab92094b13f69d67e6e3419 to your computer and use it in GitHub Desktop.
Save jimdiroffii/19d96be94ab92094b13f69d67e6e3419 to your computer and use it in GitHub Desktop.
Remove all KDS services from a Micros Simphony servicehost
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