Installing Ghost

Patch Ghost’s Client.msi:

In the Client.msi, the startClientAgent custom action needs to be changed from Asynchronous to Synchronous return processing. Here’s my transform file for the patch: Ghost Client MSI Patch

CMDLines.txt:

[COMMANDS]
“RunOnce.cmd”

RunOnce.cmd:

cmdow @ /HID
@Echo Off

SET PP=%SystemDrive%\

SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx

REG ADD %KEY% /V TITLE /D “Installing Programs” /f

REG ADD %KEY%\000 /VE /D “Sleeping” /f
REG ADD %KEY%\000 /V 1 /D “%PP%Windows\sleep.exe 90″ /f

REG ADD %KEY%\001 /VE /D “Symantec Ghost Client” /f
REG ADD %KEY%\001 /V 1 /D “%PP%Ghost\ClientSetup.exe /v\”/qn GHOSTINSTALLTYPE=\”Client\” REBOOT=\”Force\” GHOSTCONSOLENAME=\”wwcs-ghost\”\”" /f

EXIT

Comments are closed.