lawrence1981 Posted July 2, 2012 Posted July 2, 2012 I need to remove a program from control panel. I searched through this site and found few suggestions to uninstall a software using registry key or silent uninstall or uninstall.exeI do not want to remove a program with above mentioned options. Is there any way to remove a program from control panel?Reference:
Juvigy Posted July 2, 2012 Posted July 2, 2012 You can use WMI:strComputer = "."Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!" _ & strComputer & "rootcimv2")Set colSoftware = objWMIService.ExecQuery _ ("Select * from Win32_Product " _ & "Where Name = 'Personnel database'")For Each objSoftware in colSoftware objSoftware.Uninstall()NextThis is a VB script but it can be easily onverted to AutoIT
JohnOne Posted July 2, 2012 Posted July 2, 2012 Try AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
Moderators JLogan3o13 Posted July 3, 2012 Moderators Posted July 3, 2012 Hi, lawrence1981. Just to clarify, are you wanting to remove it from the control panel, but not uninstall the application (e.g. make it invisible to Add/Remove Programs)? "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum!
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