Graywalker Posted January 14, 2009 Posted January 14, 2009 A naughty program uninstall leaves behind a couple services. I've got a script to use psservice.exe to stop the service and disable it. I can delete the program folder. Yet, it still shows up as a service (even though its disabled). How do I purge this leftover from the system so I never have to see it again? Will deleting it from the Registry - [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\leftoverservice] - get rid of it or is there more I need to do? ( I am trying to purge systems of CA Unicenter, versions 4 and 11 if anyone is interested in the whole process )
FireFox Posted January 14, 2009 Posted January 14, 2009 (edited) @Graywalkerhttp://www.autoitscript.com/forum/index.php?showtopic=37289Q5. _ServiceDeleteCheers, FireFox. Edited January 14, 2009 by FireFox
Graywalker Posted January 14, 2009 Author Posted January 14, 2009 (edited) @Graywalkerhttp://www.autoitscript.com/forum/index.php?showtopic=37289Q6. _ServiceDeleteCheers, FireFox.Thank You! ( Q5, but hey... )Control a ServiceAlso found the Windows command "SC" Edited January 14, 2009 by Graywalker
azure Posted January 14, 2009 Posted January 14, 2009 A naughty program uninstall leaves behind a couple services. I've got a script to use psservice.exe to stop the service and disable it. I can delete the program folder. Yet, it still shows up as a service (even though its disabled). How do I purge this leftover from the system so I never have to see it again? Will deleting it from the Registry - [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\leftoverservice] - get rid of it or is there more I need to do? ( I am trying to purge systems of CA Unicenter, versions 4 and 11 if anyone is interested in the whole process ) $servicename = "leftoverservice" Run("sc delete "&$servicename)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now