/build/static/layout/Breadcrumb_cap_w.png

Adobe Illustrator CS3

Version: 13

Don't be a Stranger!

Sign up today to participate, stay informed, earn points and establish a reputation for yourself!

Sign up! or login
Views: 4.5k  |  Created: 02/25/2007

Average Rating: 0
Illustrator CS3 has 5 inventory records, 0 Questions, 0 Blogs and 0 links. Please help add to this by sharing more!

Deployment Tips (3)

Most Common Setup Type
Not Determined
Average Package Difficulty Rating
Rated 0 / 5 (Not Rated) based on 0 ratings
Most Commonly Reported Deployment Method
Not Determined
119
Note
The technical paper describes how to automate the installation.

In my case the 'deployment.xml' from the source files didn't work. I had to create my own xml with the command line 'setup.exe --record=1'.

Further you have to make sure that the file 'application.xml.override' doesn't have line breaks within the tags (not as shown in the technical paper). Each tag must have a separate line.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
116
Note

When installing silently, make sure that Internet Explorer isn't open and running. I ended up using TaskKill.exe within my installation script to kill the iexplore.exe process prior to silently installing.

Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
115
Note
In my case, I use method describe with Photoshop CS3 10.x by sharanshirol !
He is the architect of this Installation method
(Thanks a lot sharanshirol !!!)

YOU CAN USE THIS METHOD FOR ALL CS3 PRODUCT !

Windows Installer does not allow the launch a MSI which launches himself another MSI.
The Adobe CS3 setup launches between 30 and 35 MSI in background by application.
it is not possible to launch MSI which launches the adobe setup because himself launches MSI....

This method thus allows to launch a VBS from a MSI.
This VBS will launch another VBS containing the parameters of Adobe installation and using the adobe setup while the first one MSI will have finished his installation.....
Now the Adobe setup could install the various package MSI.

1 - Generate XML response File with setup.exe and record flag.


2 - I build a simple MSI (Adobe_CS3_Sources) with all sources of CS3 (because it s too much long to install with the network) and 2 Install Condition.


A ) INSTALLDIR : [ProgramFilesFolder]Adobe\Creative_Suite_3\Sources
All the sources will be in that folder (setup.exe, payloads folder etc)
Package Adobe_CS3_Sources will be the pre requites of Illustrator.


B ) Install Condition : because all products CS3 need 1 go memory and screen resolution at less 1028 X 768, here are the install conditions :
Condition :

----------------------------------------------------------------------------
Condition :
PhysicalMemory>1000

Message :
It's necessary to have 1 go of memory to run this product. Please upgrade your memory !
----------------------------------------------------------------------------

----------------------------------------------------------------------------
Condition :
ScreenX>=1024 AND ScreenY>=768

Message :
All Adobe Creative Suite 3 products needs at less screen resolution 1024 par 768. Your resolution Screen is [ScreenX] par [ScreenY], Please change the resolution of your screen !
----------------------------------------------------------------------------


3 - I build another package with this name : Adobe_Illustrator_CS3 with two components, four files, two Custom Action and one Install Condition

A ) Name of the Fisrt component >> Installation
Including two files :
- Install_Adobe_Illustrator_CS3_13.0.vbs
- Install_Adobe_Illustrator_CS3_13.0.xml (XML response file)
Destination : [INSTALLDIR]
Shared = Yes
Permanent = No


Content of Install_Adobe_Illustrator_CS3_13.0.vbs =
----------------------------------------------------------------------------
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set WshShell = wscript.CreateObject("WScript.Shell")
Set objApp = CreateObject("WScript.Shell")
Dim strpath, Executingpath
Dim objApp
strpath = wscript.ScriptFullName
strPath = left(strpath, InStrRev(strpath, "\"))
Executingpath = chr(34) & strpath & "Setup.exe" & chr(34) & " --mode=silent --skipProcessCheck=1 --deploymentFile=" & chr(34) & strpath & "Install_Adobe_Illustrator_CS3_13.0.xml" & chr(34)
Set wshShell = CreateObject ("WSCript.shell")
Set oExec = wshShell.Exec(Executingpath)
Do While oExec.Status = 0
DisplayEnddialog
Loop
Function DisplayEndDialog()
Const wshYesNoDialog = 0
Const wshQuestionMark = 64
Dim intval
intval = 0
intval = WshShell.Popup("Please don't close windows, They will be closed automatically after installation product. BE CAREFUL :Installation can last more than 45 minutes following the power of your computer. Please wait… ", _
60, "Installation Adobe Illustrator CS3 13.0",wshYesNoDialog + wshQuestionMark)

End function
objApp.Run "cmd /C reg DELETE HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe_5647dddec81b3798d8bab8c5ac5fcb0 /f"

objFSO.DeleteFolder("C:\Program Files\Common Files\Adobe\Updater5")

set wshShell = nothing
Set objFSO = nothing
set objApp = nothing
----------------------------------------------------------------------------


Content of Install_Adobe_Illustrator_CS3_13.0.xml
----------------------------------------------------------------------------
<?xml version="1.0" encoding="UTF-8"?>
<Deployment><Properties><Property name="INSTALLDIR">C:\Program Files\Adobe\Creative_Suite_3</Property><Property name="OS64Bit">0</Property><Property name="StartMenuSubFolder">C:\Documents and Settings\All Users\Menu Démarrer\Programmes\Adobe\Creative Suite 3</Property><Property name="driverAdobeCode">{E0706FC6-85E3-43F3-A8BC-BEB698DD3BE2}</Property><Property name="eula_EPIC_EULA_ACCEPTED">1</Property><Property name="eula_EPIC_EULA_SELECTED">1</Property><Property name="installLanguage">fr_FR</Property><Property name="installSourcePath">C:\Program Files\Common Files\Adobe\Installers\5647dddec81b3798d8bab8c5ac5fcb0</Property><Property name="sessionID">5647dddec81b3798d8bab8c5ac5fcb0</Property><Property name="setupVersion">1.0.135.0</Property></Properties><Payloads><Payload adobeCode="{E0706FC6-85E3-43F3-A8BC-BEB698DD3BE2}"><Action>install</Action></Payload><Payload adobeCode="{EDA53937-9C4F-42AD-9435-2E8980896D87}"><Action>install</Action></Payload></Payloads></Deployment>
----------------------------------------------------------------------------


B ) Name of the Second component >> Uninstall
Including two files :
- Uninstall_Adobe_Illustrator_CS3_13.0.vbs
- Uninstall_Adobe_Illustrator_CS3_13.0.xml (XML response file)
Destination : [INSTALLDIR]
Shared = Yes
Permanent = Yes (leave the file on the system for uninstall ! This files will be delete with the Uninstall_Adobe_Illustrator_CS3_13.0.vbs)


Content of Uninstall_Adobe_Illustrator_CS3_13.0.vbs
----------------------------------------------------------------------------
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set WshShell = wscript.CreateObject("WScript.Shell")
Set objApp = CreateObject("WScript.Shell")
Dim strpath, Executingpath
Dim objApp
strpath = wscript.ScriptFullName
strPath = left(strpath, InStrRev(strpath, "\"))
Executingpath = chr(34) & strpath & "Setup.exe" & chr(34) & " --mode=silent --skipProcessCheck=1 --deploymentFile=" & chr(34) & strpath & "Uninstall_Adobe_Illustrator_CS3_13.0.xml" & chr(34)
Set wshShell = CreateObject ("WSCript.shell")
Set oExec = wshShell.Exec(Executingpath)
Do While oExec.Status = 0
DisplayEnddialog
Loop
Function DisplayEndDialog()
Const wshYesNoDialog = 0
Const wshQuestionMark = 64
Dim intval
intval = 0
intval = WshShell.Popup("Please don't close windows, they will be automatically closed after product uninstall. BE CAREFUL: uninstall can last more than 45 minutes following the power of your computer. Please wait… ", _
60, "Uninstall Adobe Illustrator CS3 13.0",wshYesNoDialog + wshQuestionMark)

End function
objApp.Run "cmd /C reg DELETE HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe_5647dddec81b3798d8bab8c5ac5fcb0 /f"

objFSO.DeleteFolder("C:\Program Files\Adobe\Creative_Suite_3\Adobe Illustrator CS3")
objFSO.DeleteFile("C:\Program Files\Adobe\Creative_Suite_3\Sources\Install_Adobe_Illustrator_CS3_13.0.vbs")
objFSO.DeleteFile("C:\Program Files\Adobe\Creative_Suite_3\Sources\Install_Adobe_Illustrator_CS3_13.0.xml")
objFSO.DeleteFile("C:\Program Files\Adobe\Creative_Suite_3\Sources\Uninstall_Adobe_Illustrator_CS3_13.0.xml")
objFSO.DeleteFile("C:\Program Files\Adobe\Creative_Suite_3\Sources\Uninstall_Adobe_Illustrator_CS3_13.0.vbs")

set wshShell = nothing
Set objFSO = nothing
set objApp = nothing
----------------------------------------------------------------------------


Content of Uninstall_Adobe_Illustrator_CS3_13.0.xml (XML response file)
----------------------------------------------------------------------------
<?xml version="1.0" encoding="UTF-8"?>
<Deployment><Properties/><Payloads><Payload adobeCode="{E0706FC6-85E3-43F3-A8BC-BEB698DD3BE2}"><Action>remove</Action></Payload><Payload adobeCode="{EDA53937-9C4F-42AD-9435-2E8980896D87}"><Action>remove</Action></Payload></Payloads></Deployment>
----------------------------------------------------------------------------


C) First Custom Action :

Name of the first Custom Action >> Installation
New VBScript >> Store in Custom Action

----------------------------------------------------------------------------
Return Processing : Synchronous (Check exit code)
In-Script Execution: Immediate Execution
Execution Scheduling : Always execute
Use 64 Bits Scripting : No
Install UI Sequence : < Absent from Sequence >
Install UI Condition : Blank
Install Exec Sequence : After ScheduleReboot
Install Exec Condition : NOT Installed
Advertise Exec Sequence : < Absent from Sequence >
Advertise Exec Condition : Blank
Admin UI Exec Sequence : < Absent from Sequence >
Admin UI Exec Condition : Blank
Admin Exec Sequence : < Absent from Sequence >
Admin Exec Exec Condition : Blank
MSI Type Number : 38
Comments : Blank
Help File Path : Blank
----------------------------------------------------------------------------


Content of label script :
----------------------------------------------------------------------------
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set WshShell = CreateObject("WScript.Shell")
Dim strpath, Executingpath
strpath = Session.Property("INSTALLDIR")
systempath = objFSO.getspecialfolder(1)
Executingpath = systempath & "\Cscript.exe /s " & chr(34) & strpath & "Install_Adobe_Illustrator_CS3_13.0.vbs" & chr(34)
Set wshShell1 = CreateObject ("WSCript.shell")
Set oExec = wshShell.Exec(Executingpath)
Set wshshell = Nothing
----------------------------------------------------------------------------


D ) Second Custom Action

Name of the second Custom Action >> Uninstall
New VBScript >> Store in Custom Action

----------------------------------------------------------------------------
Return Processing : Synchronous (Check exit code)
In-Script Execution: Immediate Execution
Execution Scheduling : Always execute
Use 64 Bits Scripting : No
Install UI Sequence : < Absent from Sequence >
Install UI Condition : Blank
Install Exec Sequence : After InstallInitialise
Install Exec Condition : REMOVE="ALL"
Advertise Exec Sequence : < Absent from Sequence >
Advertise Exec Condition : Blank
Admin UI Exec Sequence : < Absent from Sequence >
Admin UI Exec Condition : Blank
Admin Exec Sequence : < Absent from Sequence >
Admin Exec Exec Condition : Blank
MSI Type Number : 38
Comments : Blank
Help File Path : Blank
----------------------------------------------------------------------------


Content of label script :
----------------------------------------------------------------------------
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set WshShell = CreateObject("WScript.Shell")
Dim strpath, Executingpath
strpath = Session.Property("INSTALLDIR")
systempath = objFSO.getspecialfolder(1)
Executingpath = systempath & "\Cscript.exe /s " & chr(34) & strpath & "Uninstall_Adobe_Illustrator_CS3_13.0.vbs" & chr(34)
Set wshShell1 = CreateObject ("WSCript.shell")
Set oExec = wshShell.Exec(Executingpath)
Set wshshell = Nothing
----------------------------------------------------------------------------


E ) Install Condition

Make a system search on file [ProgramFilesFolder]Adobe\Creative_Suite_3\Sources\setup.exe
Store the value in the property and use the property in install condition

In my case, I use method describe with Photoshop CS3 10.x by sharanshirol (Thanks a lot sharanshirol !!!)


1 - Generate XML response File with setup.exe and record flag.


2 - I build a simple MSI (Adobe_CS3_Sources) with all sources of CS3 because it s too much long to install with the network and 2 Install Conditions.


A ) INSTALLDIR : [ProgramFilesFolder]Adobe\Creative_Suite_3\Sources
All the sources will be in that folder (setup.exe, payloads folder etc)
Package Adobe_CS3_Sources will be the pre requites of Illustrator.


B ) Install Condition : because all products CS3 need 1 go memory and screen resolution at less 1028 X 768, here are the install conditions :
Condition :

----------------------------------------------------------------------------
Condition :
PhysicalMemory>1000

Message :
It's necessary to have 1 go of memory to run this product. Please upgrade your memory !
----------------------------------------------------------------------------

----------------------------------------------------------------------------
Condition :
ScreenX>=1024 AND ScreenY>=768

Message :
All Adobe Creative Suite 3 products needs at less screen resolution 1024 par 768. Your resolution Screen is [ScreenX] par [ScreenY], Please change the resolution of your screen !
----------------------------------------------------------------------------


3 - I build another package with this name : Adobe_Illustrator_CS3 with 2 components, 4 files and 2 Custom Action and 1 Install Condition

A ) Name of the Fisrt component >> Installation
Including two files :
- Install_Adobe_Illustrator_CS3_13.0.vbs
- Install_Adobe_Illustrator_CS3_13.0.xml (XML response file)
Destination : [INSTALLDIR]
Shared = Yes
Permanent = No


Content of Install_Adobe_Illustrator_CS3_13.0.vbs =
----------------------------------------------------------------------------
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set WshShell = wscript.CreateObject("WScript.Shell")
Set objApp = CreateObject("WScript.Shell")
Dim strpath, Executingpath
Dim objApp
strpath = wscript.ScriptFullName
strPath = left(strpath, InStrRev(strpath, "\"))
Executingpath = chr(34) & strpath & "Setup.exe" & chr(34) & " --mode=silent --skipProcessCheck=1 --deploymentFile=" & chr(34) & strpath & "Install_Adobe_Illustrator_CS3_13.0.xml" & chr(34)
Set wshShell = CreateObject ("WSCript.shell")
Set oExec = wshShell.Exec(Executingpath)
Do While oExec.Status = 0
DisplayEnddialog
Loop
Function DisplayEndDialog()
Const wshYesNoDialog = 0
Const wshQuestionMark = 64
Dim intval
intval = 0
intval = WshShell.Popup("Please don’t close windows, They will be closed automatically after product installation. BE CAREFUL :Installation can last more than 45 minutes following the power of your computer. Please wait… ", _
60, "Installation Adobe Illustrator CS3 13.0",wshYesNoDialog + wshQuestionMark)

End function
objApp.Run "cmd /C reg DELETE HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe_5647dddec81b3798d8bab8c5ac5fcb0 /f"

objFSO.DeleteFolder("C:\Program Files\Common Files\Adobe\Updater5")

set wshShell = nothing
Set objFSO = nothing
set objApp = nothing
----------------------------------------------------------------------------


Content of Install_Adobe_Illustrator_CS3_13.0.xml
----------------------------------------------------------------------------
<?xml version="1.0" encoding="UTF-8"?>
<Deployment><Properties><Property name="INSTALLDIR">C:\Program Files\Adobe\Creative_Suite_3</Property><Property name="OS64Bit">0</Property><Property name="StartMenuSubFolder">C:\Documents and Settings\All Users\Menu Démarrer\Programmes\Adobe\Creative Suite 3</Property><Property name="driverAdobeCode">{E0706FC6-85E3-43F3-A8BC-BEB698DD3BE2}</Property><Property name="eula_EPIC_EULA_ACCEPTED">1</Property><Property name="eula_EPIC_EULA_SELECTED">1</Property><Property name="installLanguage">fr_FR</Property><Property name="installSourcePath">C:\Program Files\Common Files\Adobe\Installers\5647dddec81b3798d8bab8c5ac5fcb0</Property><Property name="sessionID">5647dddec81b3798d8bab8c5ac5fcb0</Property><Property name="setupVersion">1.0.135.0</Property></Properties><Payloads><Payload adobeCode="{E0706FC6-85E3-43F3-A8BC-BEB698DD3BE2}"><Action>install</Action></Payload><Payload adobeCode="{EDA53937-9C4F-42AD-9435-2E8980896D87}"><Action>install</Action></Payload></Payloads></Deployment>
----------------------------------------------------------------------------


B ) Name of the Second component >> Uninstall
Including two files :
- Uninstall_Adobe_Illustrator_CS3_13.0.vbs
- Uninstall_Adobe_Illustrator_CS3_13.0.xml (XML response file)
Destination : [INSTALLDIR]
Shared = Yes
Permanent = Yes (leave the file on the system for uninstall ! This files will be delete with Uninstall_Adobe_Illustrator_CS3_13.0.vbs)


Content of Uninstall_Adobe_Illustrator_CS3_13.0.vbs
----------------------------------------------------------------------------
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set WshShell = wscript.CreateObject("WScript.Shell")
Set objApp = CreateObject("WScript.Shell")
Dim strpath, Executingpath
Dim objApp
strpath = wscript.ScriptFullName
strPath = left(strpath, InStrRev(strpath, "\"))
Executingpath = chr(34) & strpath & "Setup.exe" & chr(34) & " --mode=silent --skipProcessCheck=1 --deploymentFile=" & chr(34) & strpath & "Uninstall_Adobe_Illustrator_CS3_13.0.xml" & chr(34)
Set wshShell = CreateObject ("WSCript.shell")
Set oExec = wshShell.Exec(Executingpath)
Do While oExec.Status = 0
DisplayEnddialog
Loop
Function DisplayEndDialog()
Const wshYesNoDialog = 0
Const wshQuestionMark = 64
Dim intval
intval = 0
intval = WshShell.Popup("Please don't close windows, they will be automatically closed after the uninstall of the product. BE CAREFUL: uninstall can last more than 45 minutes following the power of your computer. Please wait… ", _
60, "Uninstall Adobe Illustrator CS3 13.0",wshYesNoDialog + wshQuestionMark)

End function
objApp.Run "cmd /C reg DELETE HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe_5647dddec81b3798d8bab8c5ac5fcb0 /f"

objFSO.DeleteFolder("C:\Program Files\Adobe\Creative_Suite_3\Adobe Illustrator CS3")
objFSO.DeleteFile("C:\Program Files\Adobe\Creative_Suite_3\Sources\Install_Adobe_Illustrator_CS3_13.0.vbs")
objFSO.DeleteFile("C:\Program Files\Adobe\Creative_Suite_3\Sources\Install_Adobe_Illustrator_CS3_13.0.xml")
objFSO.DeleteFile("C:\Program Files\Adobe\Creative_Suite_3\Sources\Uninstall_Adobe_Illustrator_CS3_13.0.xml")
objFSO.DeleteFile("C:\Program Files\Adobe\Creative_Suite_3\Sources\Uninstall_Adobe_Illustrator_CS3_13.0.vbs")

set wshShell = nothing
Set objFSO = nothing
set objApp = nothing
----------------------------------------------------------------------------


Content of Uninstall_Adobe_Illustrator_CS3_13.0.xml (XML response file)
----------------------------------------------------------------------------
<?xml version="1.0" encoding="UTF-8"?>
<Deployment><Properties/><Payloads><Payload adobeCode="{E0706FC6-85E3-43F3-A8BC-BEB698DD3BE2}"><Action>remove</Action></Payload><Payload adobeCode="{EDA53937-9C4F-42AD-9435-2E8980896D87}"><Action>remove</Action></Payload></Payloads></Deployment>
----------------------------------------------------------------------------


C) Install Custom Action :

Name of the first Custom Action >> Installation
New VBScript >> Store in Custom Action

----------------------------------------------------------------------------
Return Processing : Synchronous (Check exit code)
In-Script Execution: Immediate Execution
Execution Scheduling : Always execute
Use 64 Bits Scripting : No
Install UI Sequence : < Absent from Sequence >
Install UI Condition : Blank
Install Exec Sequence : After ScheduleReboot
Install Exec Condition : NOT Installed
Advertise Exec Sequence : < Absent from Sequence >
Advertise Exec Condition : Blank
Admin UI Exec Sequence : < Absent from Sequence >
Admin UI Exec Condition : Blank
Admin Exec Sequence : < Absent from Sequence >
Admin Exec Exec Condition : Blank
MSI Type Number : 38
Comments : Blank
Help File Path : Blank
----------------------------------------------------------------------------


Content of label script :
----------------------------------------------------------------------------
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set WshShell = CreateObject("WScript.Shell")
Dim strpath, Executingpath
strpath = Session.Property("INSTALLDIR")
systempath = objFSO.getspecialfolder(1)
Executingpath = systempath & "\Cscript.exe /s " & chr(34) & strpath & "Install_Adobe_Illustrator_CS3_13.0.vbs" & chr(34)
Set wshShell1 = CreateObject ("WSCript.shell")
Set oExec = wshShell.Exec(Executingpath)
Set wshshell = Nothing
----------------------------------------------------------------------------


D ) Uninstall Custom Action

Name of the second Custom Action >> Uninstall
New VBScript >> Store in Custom Action

----------------------------------------------------------------------------
Return Processing : Synchronous (Check exit code)
In-Script Execution: Immediate Execution
Execution Scheduling : Always execute
Use 64 Bits Scripting : No
Install UI Sequence : < Absent from Sequence >
Install UI Condition : Blank
Install Exec Sequence : After InstallInitialise
Install Exec Condition : REMOVE="ALL"
Advertise Exec Sequence : < Absent from Sequence >
Advertise Exec Condition : Blank
Admin UI Exec Sequence : < Absent from Sequence >
Admin UI Exec Condition : Blank
Admin Exec Sequence : < Absent from Sequence >
Admin Exec Exec Condition : Blank
MSI Type Number : 38
Comments : Blank
Help File Path : Blank
----------------------------------------------------------------------------


Content of label script :
----------------------------------------------------------------------------
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set WshShell = CreateObject("WScript.Shell")
Dim strpath, Executingpath
strpath = Session.Property("INSTALLDIR")
systempath = objFSO.getspecialfolder(1)
Executingpath = systempath & "\Cscript.exe /s " & chr(34) & strpath & "Uninstall_Adobe_Illustrator_CS3_13.0.vbs" & chr(34)
Set wshShell1 = CreateObject ("WSCript.shell")
Set oExec = wshShell.Exec(Executingpath)
Set wshshell = Nothing
----------------------------------------------------------------------------


E ) Install Condition

Make a system search on file [ProgramFilesFolder]Adobe\Creative_Suite_3\Sources\setup.exe
Store the value in the property and use the property in install condition

----------------------------------------------------------------------------
Condition :
SOURCE
----------------------------------------------------------------------------

----------------------------------------------------------------------------
Message :
Adobe CS3 sources are not present on the system ! Please Install package CS3 sources before install this package !
----------------------------------------------------------------------------


F ) Build the project and TEST your packages !

Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows

Inventory Records (5)

View inventory records anonymously contributed by opt-in users of the K1000 Systems Management Appliance.

Illustrator CS3

Version

13.0.2

Uninstall String

/Applications/Adobe Illustrator CS3/Adobe Illustrator.app /Volumes/B314/Applications/Adobe Illustrator CS3/Adobe Illustrator.app /Applications/Adobe Products/Adobe Illustrator CS3/Adobe Illustrator.app

Questions & Answers (0)

Questions & Answers related to Adobe Illustrator CS3

Blogs (0)

Blog posts related to Adobe Illustrator CS3

Reviews (0)

Reviews related to Adobe Illustrator CS3

 
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