To kill the service, get the name of the offending service from Server Manager. In my case, it was vmware-ufad-vci:
Open a command prompt and get the PID for the hung service by running the following command:
sc queryex <service name>
Then kill the appropriate PID:
taskkill /PID <PID> /F
That's it!