/build/static/layout/Breadcrumb_cap_w.png

Uninstalling Creative Suite 2.x

Hi all!

I'm installing Creative Suite 2.x with the solution provided by Adobe at their site:

http://www.adobe.com/support/techdocs/331297.html

It works fine.
The problem I've is to make a silence uninstall of the whole suite.
The uninstall entry on the registry for Creative Suite is located at:

HKLM\Software\Microsoft\CurrentVersion\Uninstall\{0134A1A1-C283-4A47-91A1-92F19F960372}\UninstallString

But when running the string stored there, it just pop up the uninstall wizard, there I have manually to click NEXT...NEXT.
I can't fine any way to make a full SILENCE uninstall.

Does anyone know how to uninstall the whole Adobe Creative Suite using the entry on the registry?

Regards from Sweden!

//JC

1 Comment   [ + ] Show comment
  • Hello,

    Hi all,
    I have a problems to uninstall the adobe creative suite 2 in registry. Anyone can show me how to do in toturial and advise.
    I appreciate your help. thanks - Afarizal 9 years ago

Answers (3)

Posted by: urban_diver 18 years ago
Orange Senior Belt
0
juank,

I'm in a little diffrent situation. I can't get the silent installation to work. Can you share with me the xml file you created?
I appreciate your help.

Thanks in advance!!
Posted by: wiseapp 18 years ago
Second Degree Green Belt
0
Hi Urban:

He has given the link for the XML file that needs to be created you would find step by step guide to create the same.
Posted by: Lucid 18 years ago
Purple Belt
0
Since I just spent a couple hours trying to figure out this very thing I thought I'd share it.... Basically what you need to do is find the Adobe Product IDs within the "HKEY_LOCAL_MACHINE/Software/Microsoft/Windows/Currentversion/Uninstall" registry subkeys. Then just use MSIexec to automatically remove each component. If you get stuck, check out the info contained in the "UnistallString" key.

Here's sample of a .VBS script that removes Adobe Creative Suite 2 - note that I don't install all the components, so you'll need to do some work (I also uninstall with a passive progress bar and not totally silent). Also, if you want to be really neat and tidy, check out Adobe's site for information on what additional folders and registry keys you can get rid of.

' Automatically removes Adobe Illustrator CS2 from the workstation.
WshShell.Run "msiexec /x {B2F5D08C-7E79-4FCD-AAF4-57AD35FF0601} /passive /norestart", 1, True

' Automatically removes Adobe InDesign CS2 from the workstation.
WshShell.Run "msiexec /x {7F4C8163-F259-49A0-A018-2857A90578BC} /passive /norestart", 1, True

' Automatically removes Adobe PhotoShop CS2 from the workstation.
WshShell.Run "msiexec /x {236BB7C4-4419-42FD-0409-1E257A25E34D} /passive /norestart", 1, True

' Automatically removes Adobe Acrobat 7.0 from the workstation.
WshShell.Run "msiexec /x {AC76BA86-1033-0000-7760-100000000002} /passive /norestart", 1, True

' Automatically removes Adobe Stock Photos 1.0 from the workstation.
WshShell.Run "msiexec /x {786C5747-1033-0000-B58E-000000000001} /passive /norestart", 1, True

' Automatically removes Adobe Bridge 1.0 from the workstation.
WshShell.Run "msiexec /x {B74D4E10-1033-0000-0000-000000000001} /passive /norestart", 1, True

' Automatically removes Adobe Help Center 1.0 from the workstation.
WshShell.Run "msiexec /x {E9787678-1033-0000-8E67-000000000001} /passive /norestart", 1, True

' Automatically removes Adobe Common File Installer from the workstation.
WshShell.Run "msiexec /x {8EDBA74D-0686-4C99-BFDD-F894678E5B39} /passive /norestart", 1, True

' Automatically removes Adobe Suite Specific from the workstation.
WshShell.Run "msiexec /x {C49DAA9C-5BA8-459A-8244-E57B69DF0F04} /passive /norestart", 1, True


I hope that helps,
- Lucid
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ