Search This Blog

Tuesday, October 27, 2009

Symantec Ghost MSI

SCRIPT TO INSTALL VIA GPO
Set fso = CreateObject("Scripting.FileSystemObject")
MyFile = "C:\Program Files\Symantec\Ghost\ghost.exe"
If (Not fso.FileExists(MyFile)) Then
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "msiexec /i ""\\server\software\Symantec Ghost 8.2 1117\Symantec Ghost.msi"" /q"
WScript.Sleep 300000
End If