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
Here is the powershell script to delete a service foo
foo
$foo= Get-WmiObject -Class Win32_Service -Filter "Name='foo'" $foo.delete()