Remove Silent dreameweaver with VBS
haii all,
please help me to remove silent Dreamweaver CS6 through UninstallString program in the registry with a vbs, I've tried with this script but it is still wrong ..
WScript.Echo "Uninstalling 'Adobe Dreamweaver CS6'"
Dim objShell
Set wshshell = CreateObject ("WScript.Shell")
objShell.Run ("C: \ Program Files (x86) \ Common Files \ Adobe \ OOBE \ PDApp \ core \ PDApp.exe --appletID = DWA_UI --appletVersion = 2.0 --mode = Uninstall --mediaSignature = {A4ED5E53- 7AA0-11E1-BF04-B2D4D4A5360E} "), 1, True
Set objShell = nothing
thank you
0 Comments
[ + ] Show comments
Answers (1)
Please log in to answer
Posted by:
EdT
10 years ago
Try the following:
objShell.Run("C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\core\PDApp.exe --appletID = DWA_UI --appletVersion = 2.0 --mode = Uninstall --mediaSignature = {A4ED5E53- 7AA0-11E1-BF04-B2D4D4A5360E}", 1, True)
There should be no spurious spaces in the path to the executable, and the brackets need to be around the entire command string.
If you continue to get errors, then please let us know what they are.