Difference between revisions of "Dreamweaver MX 2004"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
(No difference)

Revision as of 10:30, 5 August 2005

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='\\server\Admin\Non-MSI\dreamweaver\installers\macromedia-install.bat'>
<exit code="0" />
</install>

<remove cmd= />

<upgrade cmd="" />

</package>


This is macromedia-install.bat - it has three lines:

\\server\Admin\Non-MSI\dreamweaver\installers\DW_Client_Installer\setup.exe -s -sms -f1"\\server\Admin\Non-MSI\dreamweaver\installers\DW_Client_Installer\setup.iss" -f2"C:\windows\temp\dreamweaver-install.log"

\\server\Admin\Non-MSI\dreamweaver\installers\dwmx2004_701update_de\setup.exe -s -sms -f1"\\server\Admin\Non-MSI\dreamweaver\installers\dwmx2004_701update_de\setup.iss" -f2"C:\windows\temp\dreamweaver-update-install.log"

regedit /s \\server\Admin\Non-MSI\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:

Windows Registry Editor Version 5.00


[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").