/build/static/layout/Breadcrumb_cap_w.png

Adobe Dreamweaver CS3

Version: 9

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.6k  |  Created: 02/25/2007

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

Deployment Tips (8)

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
123
Command Line

Watch the second dash before deploymentfile, when copying and pasting this code into a batch file or run script, it ends up running it as a funny looking u character. If the dashes are not in line, just erase them and manually input two dashed lines.

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

For a silent install of Dreamweaver CS3 first create a file called application.xml.override that contains the following

<?xml version="1.0" encoding="utf-8"?>

<Configuration>

<Payload>

<Data key="Serial" protected="0">111XXXyour S/N no dashes</Data>

<Data key="Registration">Suppress</Data>

<Data key="EULA">Suppress</Data>

<Data key="Updates">Suppress</Data>

</Payload>

</Configuration>

Save this file in the \\server\share\payloads\AdobeDreamweaver9en_USVolume directory

This file provides the S/N info and suppresses the EULA, registration, and turns off automatic updates.

To install silently from the command line use the following

"\\server\share\setup.exe" --mode=Silent -–deploymentFile=\\server\share\deployment.xml

Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
120
Note
Silent Install Method

Run Setup.exe with --record=1 option, run through the quick recorded install, grab the two files it spits out at the end and throw them up on the server. Rename them to install.xml and remove.xml (respectively).

With this done, create the application.xml.override as the PDF explained and put it in the proper location (making sure you have the proper quotation marks!). It should be the value of Driver folder indicated in the payloads/Setup.xml.

<?xml version="1.0" encoding="utf-8"?>
<Configuration>
<Payload>
<Data key="Serial" protected="0">111XXXyour S/N no dashes</Data>
<Data key="Registration">Suppress</Data>
<Data key="EULA">Suppress</Data>
<Data key="Updates">Suppress</Data>
</Payload>
</Configuration>

Run the silent install again pointing to the full path for "install.xml" and you're all set. For my setup the command line I run is [Setup.exe --mode=Silent --deploymentFile=".\install.xml"] without the brackets.

Silent Uninstall Method

To run a silent uninstall I copy the remove.xml to the %TEMP% directory on the machine and run the following command line ["C:\Program Files\Common Files\Adobe\Installers\aef45239e3987fdf2a5e406d559eb22\Setup.exe" --mode=Silent --deploymentFile="%temp%\remove.xml"] without the brackets. Note that i'm running the Setup.exe from the installSourcePath value indicated in the install.xml.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
119
Note

For a silent install of Dreamweaver CS3 first create a file called application.xml.override that contains the following

<?xml version="1.0" encoding="utf-8"?>

<Configuration>

<Payload>

<Data key="Serial" protected="0">111XXXyour S/N no dashes</Data>

<Data key="Registration">Suppress</Data>

<Data key="EULA">Suppress</Data>

<Data key="Updates">Suppress</Data>

</Payload>

</Configuration>

Save this file in the \\server\share\payloads\AdobeDreamweaver9en_USVolume directory

This file provides the S/N info and suppresses the EULA, registration, and turns off automatic updates.

To install silently from the command line use the following

"\\server\share\setup.exe" --mode=Silent -–deploymentFile=\\server\share\deployment.xml

Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
117
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 Dreamweaver.


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 :
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_Dreamweaver_CS3_9.0 with two components, four files, two Custom Action and one Install Condition

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


Content of Install_Adobe_Dreamweaver_CS3_9.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_Dreamweaver_CS3_9.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 Dreamweaver CS3 9.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_Dreamweaver_CS3_9.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_Dreamweaver_CS3_9.0.vbs
- Uninstall_Adobe_Dreamweaver_CS3_9.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_Dreamweaver_CS3_9.0.vbs)


Content of Uninstall_Adobe_Dreamweaver_CS3_9.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_Dreamweaver_CS3_9.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 Dreamweaver CS3 9.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 Dreamweaver CS3")
objFSO.DeleteFile("C:\Program Files\Adobe\Creative_Suite_3\Sources\Install_Adobe_Dreamweaver_CS3_9.0.vbs")
objFSO.DeleteFile("C:\Program Files\Adobe\Creative_Suite_3\Sources\Install_Adobe_Dreamweaver_CS3_9.0.xml")
objFSO.DeleteFile("C:\Program Files\Adobe\Creative_Suite_3\Sources\Uninstall_Adobe_Dreamweaver_CS3_9.0.xml")
objFSO.DeleteFile("C:\Program Files\Adobe\Creative_Suite_3\Sources\Uninstall_Adobe_Dreamweaver_CS3_9.0.vbs")

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


Content of Uninstall_Adobe_Dreamweaver_CS3_9.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_Dreamweaver_CS3_9.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_Dreamweaver_CS3_9.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 Dreamweaver.


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_Dreamweaver_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_Dreamweaver_CS3_9.0.vbs
- Install_Adobe_Dreamweaver_CS3_9.0.xml (XML response file)
Destination : [INSTALLDIR]
Shared = Yes
Permanent = No


Content of Install_Adobe_Dreamweaver_CS3_9.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_Dreamweaver_CS3_9.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 Dreamweaver CS3 9.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_Dreamweaver_CS3_9.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_Dreamweaver_CS3_9.0.vbs
- Uninstall_Adobe_Dreamweaver_CS3_9.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_Dreamweaver_CS3_9.0.vbs)


Content of Uninstall_Adobe_Dreamweaver_CS3_9.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_Dreamweaver_CS3_9.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 Dreamweaver CS3 9.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 Dreamweaver CS3")
objFSO.DeleteFile("C:\Program Files\Adobe\Creative_Suite_3\Sources\Install_Adobe_Dreamweaver_CS3_9.0.vbs")
objFSO.DeleteFile("C:\Program Files\Adobe\Creative_Suite_3\Sources\Install_Adobe_Dreamweaver_CS3_9.0.xml")
objFSO.DeleteFile("C:\Program Files\Adobe\Creative_Suite_3\Sources\Uninstall_Adobe_Dreamweaver_CS3_9.0.xml")
objFSO.DeleteFile("C:\Program Files\Adobe\Creative_Suite_3\Sources\Uninstall_Adobe_Dreamweaver_CS3_9.0.vbs")

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


Content of Uninstall_Adobe_Dreamweaver_CS3_9.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_Dreamweaver_CS3_9.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_Dreamweaver_CS3_9.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
117
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 Dreamweaver.


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 :
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_Dreamweaver_CS3_9.0 with two components, four files, two Custom Action and one Install Condition

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


Content of Install_Adobe_Dreamweaver_CS3_9.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_Dreamweaver_CS3_9.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 Dreamweaver CS3 9.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_Dreamweaver_CS3_9.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_Dreamweaver_CS3_9.0.vbs
- Uninstall_Adobe_Dreamweaver_CS3_9.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_Dreamweaver_CS3_9.0.vbs)


Content of Uninstall_Adobe_Dreamweaver_CS3_9.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_Dreamweaver_CS3_9.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 Dreamweaver CS3 9.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 Dreamweaver CS3")
objFSO.DeleteFile("C:\Program Files\Adobe\Creative_Suite_3\Sources\Install_Adobe_Dreamweaver_CS3_9.0.vbs")
objFSO.DeleteFile("C:\Program Files\Adobe\Creative_Suite_3\Sources\Install_Adobe_Dreamweaver_CS3_9.0.xml")
objFSO.DeleteFile("C:\Program Files\Adobe\Creative_Suite_3\Sources\Uninstall_Adobe_Dreamweaver_CS3_9.0.xml")
objFSO.DeleteFile("C:\Program Files\Adobe\Creative_Suite_3\Sources\Uninstall_Adobe_Dreamweaver_CS3_9.0.vbs")

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


Content of Uninstall_Adobe_Dreamweaver_CS3_9.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_Dreamweaver_CS3_9.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_Dreamweaver_CS3_9.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 Dreamweaver.


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_Dreamweaver_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_Dreamweaver_CS3_9.0.vbs
- Install_Adobe_Dreamweaver_CS3_9.0.xml (XML response file)
Destination : [INSTALLDIR]
Shared = Yes
Permanent = No


Content of Install_Adobe_Dreamweaver_CS3_9.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_Dreamweaver_CS3_9.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 Dreamweaver CS3 9.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_Dreamweaver_CS3_9.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_Dreamweaver_CS3_9.0.vbs
- Uninstall_Adobe_Dreamweaver_CS3_9.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_Dreamweaver_CS3_9.0.vbs)


Content of Uninstall_Adobe_Dreamweaver_CS3_9.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_Dreamweaver_CS3_9.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 Dreamweaver CS3 9.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 Dreamweaver CS3")
objFSO.DeleteFile("C:\Program Files\Adobe\Creative_Suite_3\Sources\Install_Adobe_Dreamweaver_CS3_9.0.vbs")
objFSO.DeleteFile("C:\Program Files\Adobe\Creative_Suite_3\Sources\Install_Adobe_Dreamweaver_CS3_9.0.xml")
objFSO.DeleteFile("C:\Program Files\Adobe\Creative_Suite_3\Sources\Uninstall_Adobe_Dreamweaver_CS3_9.0.xml")
objFSO.DeleteFile("C:\Program Files\Adobe\Creative_Suite_3\Sources\Uninstall_Adobe_Dreamweaver_CS3_9.0.vbs")

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


Content of Uninstall_Adobe_Dreamweaver_CS3_9.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_Dreamweaver_CS3_9.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_Dreamweaver_CS3_9.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
0
Note
Information posted here is complete and really useful. However, i would like to add up something to it.

Standard Properties can be passed to the setup (startmenufolder,Reboot etc) using deployment.xml/install.xml whatever be your case. In source Install_Adobe_Dreamweaver_CS3_9.0.xml was also present.

To disable updates we can set policies as well in the following registry hive
"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Adobe\Updater\Enterprise", 1, "REG_DWORD".

The above mentioned processes of creating override file disables updates in all the other shortcuts except in "Adobe ExtendScript Toolkit". Setting the above key resolves the update issue.

if your requirement is to prevent a particular component from installation this can also be achived thru a XML file called AdobeDreamweaver9de_DE.proxy.xml.

Find the AdobeDreamweaver9de_DE.proxy.xml file in your payload folder and find the word "required" in the XML. under this you can find the list of applications being installed by ur setup. Remove the application name from the XML.

This is how you can disallow any extra component from installing.

Hope this helps!!!
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
0
Note
For Dreamweaver CS3 9.0 I used the following...

Full Command Line: "\\server\share\Setup.exe" --mode=Silent --deploymentFile="\\server\share\deployment.xml"

Did the below steps:

--> Navigate to \\server\share where your setup.exe is
--> Navigate to \\server\share\payloads\AdobeDreamweaver9en_USVolume
--> Create an application.xml file with thew content:

<?xml version="1.0" encoding="utf-8"?>
<Configuration>
<Payload>
<Data key="Serial" protected="0">your serial number no hifens</Data>
<Data key="Registration">Suppress</Data>
<Data key="EULA">Suppress</Data>
<Data key="Updates">Suppress</Data>
</Payload>
</Configuration>

--> Save this and then rename it to application.xml.override

In KBOX Distribution tab, I used the below:

tick 'Software without an associated file'
Installation command: Configure Manually
tick 'Run command only'
tick 'Dont prepend msiexec.exe'
tick 'Delete downloaded files'
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows

Inventory Records (2)

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

Versions

Dreamweaver CS3

Version

9.0

Uninstall String

C:\Program Files\Common Files\Adobe\Installers\7d27d533949941418d33ba1f052e783\Setup.exe C:\Program Files\Common Files\Adobe\Installers\7328fdfcb73660ec8b11d5a3d5c6232\Setup.exe C:\Program Files\Common Files\Adobe\Installers\435a6af7459cb02a9c1138113a26e9

Questions & Answers (0)

Questions & Answers related to Adobe Dreamweaver CS3

Blogs (0)

Blog posts related to Adobe Dreamweaver CS3

Reviews (0)

Reviews related to Adobe Dreamweaver 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