How do I uninstall a Windows Service when there is no executable for it left on the system? I can not run installutil -u since there is not executable left on the s
installutil -u
I'd use PowerShell for this
Remove-Service -Name "TestService"
https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/remove-service