find the guid for an application in the registry
-
Friday, November 30, 2012 9:09 AM
hi all, I am trying to follow the below to remove an application from my network.
However how do I find he long guid for the application? When I look in HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall I can see tightvnc but I cannot see a long guid for it.
====
Create script
REM --- Check for an existing installation of *** SOFTWARE YOU WANT GONE ***
if not exist "***directory it lives in***" goto _End
MSIEXEC /X {KEY
from registry} /Q /NORESTART
:_End
exitFind KEY from registry
The key for removing is located here
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\UninstallJust copy the {F3F18612-7B5D-4C05-86C9-AB50F6F71727} from the package you
want gone into the script.Run the script
Either at log on or off or just have it as a shortcut.
All Replies
-
Friday, November 30, 2012 11:07 AM
this is now resolved I simply used the uninstaller with /S and the application was removed
thanks
- Marked As Answer by hyperNoddy Friday, November 30, 2012 11:07 AM
-
Friday, November 30, 2012 11:09 AM
see this once:http://www.symantec.com/connect/downloads/uninstall-application-using-guid-registry
I hope it will help you somehow.Is your script is same as in above link?
Regards, Ravikumar P
- Marked As Answer by Cheers ZHANGMicrosoft Contingent Staff, Moderator Wednesday, December 05, 2012 4:20 AM

