Difference between revisions of "Dreamweaver MX 2004"
m |
m |
||
| Line 9: | Line 9: | ||
First the entry for packages.xml: | First the entry for packages.xml: | ||
| − | + | <package | |
| − | <package | + | id="dreamweavermx2004" |
| − | id="dreamweavermx2004" | + | name="Macromedia Dreamweaver MX 2004" |
| − | name="Macromedia Dreamweaver MX 2004" | + | revision="1" |
| − | revision="1" | + | reboot="true" |
| − | reboot="true" | + | priority="0"> |
| − | priority="0" | + | <check type="uninstall" condition="exists" path="Macromedia Dreamweaver MX 2004" /> |
| − | <check type="uninstall" condition="exists" path="Macromedia Dreamweaver MX 2004" / | + | <install cmd='%SOFTWARE%\dreamweaver\installers\macromedia-install.bat' /> |
| − | <install cmd=' | + | |
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
</package> | </package> | ||
| − | |||
This is macromedia-install.bat - it has three lines: | This is macromedia-install.bat - it has three lines: | ||
| − | + | %SOFTWARE%\dreamweaver\installers\DW_Client_Installer\setup.exe -s -sms -f1"%SOFTWARE%\dreamweaver\installers\DW_Client_Installer\setup.iss" -f2"C:\windows\temp\dreamweaver-install.log" | |
| − | + | ||
| + | %SOFTWARE%\dreamweaver\installers\dwmx2004_701update_de\setup.exe -s -sms -f1"%SOFTWARE%\dreamweaver\installers\dwmx2004_701update_de\setup.iss" -f2"C:\windows\temp\dreamweaver-update-install.log" | ||
| + | |||
| + | regedit /s %SOFTWARE%\dreamweaver\installers\macromedia-register.reg | ||
| − | |||
| − | |||
| − | |||
| − | |||
We need one more trick - register our Macromedia Dreamweaver MX 2004 installation (so that the user is not notified "You have to register to use this software").<br> | We need one more trick - register our Macromedia Dreamweaver MX 2004 installation (so that the user is not notified "You have to register to use this software").<br> | ||
Put this into a macromedia-register.reg file, it will be added to the registry with the above macromedia-install.bat file: | Put this into a macromedia-register.reg file, it will be added to the registry with the above macromedia-install.bat file: | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | "Register"="2" | + | [HKEY_LOCAL_MACHINE\SOFTWARE\Macromedia\Dreamweaver\7\Registration] |
| + | |||
| + | "Serial Number"="XXXXXX-XXXXX-XXXXX-XXXXX" | ||
| + | |||
| + | "Validation"="ABCDEFGHIJKLMNOP" | ||
| + | |||
| + | "Register"="2" | ||
| + | |||
| + | "Location"="C:\\Programme\\Macromedia\\Dreamweaver MX 2004\\Dreamweaver.exe" | ||
| − | |||
| − | |||
So install your Dreamweaver MX 2004 manually, register it, launch regedit, go to HKEY_LOCAL_MACHINE\SOFTWARE\Macromedia\Dreamweaver\7\Registration key, and see what are the correct values for you ("Serial Number" and "Validation"). | So install your Dreamweaver MX 2004 manually, register it, launch regedit, go to HKEY_LOCAL_MACHINE\SOFTWARE\Macromedia\Dreamweaver\7\Registration key, and see what are the correct values for you ("Serial Number" and "Validation"). | ||
[[category:Silent Installers|Dreamweaver MX 2004]] | [[category:Silent Installers|Dreamweaver MX 2004]] | ||
Revision as of 20:46, 30 September 2006
This is a silent installer for Macromedia Dreamweaver MX 2004.
I couldn't figure out how to uninstall it silently.
As the installation contains an update, it is placed in a batch file.
A reboot is necessary, as after the installation an Internet Explorer window opens (with a brief description of Macromedia Dreamweaver MX 2004) - so if we don't reboot, a user which sits in front of the workstation could potentially do something harmful, as this Internet Explorer runs with SYSTEM privileges.
First the entry for packages.xml:
<package
id="dreamweavermx2004"
name="Macromedia Dreamweaver MX 2004"
revision="1"
reboot="true"
priority="0">
<check type="uninstall" condition="exists" path="Macromedia Dreamweaver MX 2004" />
<install cmd='%SOFTWARE%\dreamweaver\installers\macromedia-install.bat' />
</package>
This is macromedia-install.bat - it has three lines:
%SOFTWARE%\dreamweaver\installers\DW_Client_Installer\setup.exe -s -sms -f1"%SOFTWARE%\dreamweaver\installers\DW_Client_Installer\setup.iss" -f2"C:\windows\temp\dreamweaver-install.log" %SOFTWARE%\dreamweaver\installers\dwmx2004_701update_de\setup.exe -s -sms -f1"%SOFTWARE%\dreamweaver\installers\dwmx2004_701update_de\setup.iss" -f2"C:\windows\temp\dreamweaver-update-install.log" regedit /s %SOFTWARE%\dreamweaver\installers\macromedia-register.reg
We need one more trick - register our Macromedia Dreamweaver MX 2004 installation (so that the user is not notified "You have to register to use this software").
Put this into a macromedia-register.reg file, it will be added to the registry with the above macromedia-install.bat file:
[HKEY_LOCAL_MACHINE\SOFTWARE\Macromedia\Dreamweaver\7\Registration] "Serial Number"="XXXXXX-XXXXX-XXXXX-XXXXX" "Validation"="ABCDEFGHIJKLMNOP" "Register"="2" "Location"="C:\\Programme\\Macromedia\\Dreamweaver MX 2004\\Dreamweaver.exe"
So install your Dreamweaver MX 2004 manually, register it, launch regedit, go to HKEY_LOCAL_MACHINE\SOFTWARE\Macromedia\Dreamweaver\7\Registration key, and see what are the correct values for you ("Serial Number" and "Validation").