Dim $result Dim $title = 'UD Software' TrayTip ( 'UD Software', 'Now performing automated install of' & @CRLF & 'Symantec Antivirus Corporate Edtion v10.0.1.1000' & @CRLF & '(Managed by ) ...', 20 ) RunWait ( @ScriptDir & '\v10.0.1.1000\setup.exe /V"/qb REBOOT=ReallySuprress ENABLEAUTOPROTECT=1 RUNLIVEUPDATE=1 NETWORKTYPE=1 SERVERNAME="' ) TrayTip ( '', '', 1 ) ;punch hole is firewall If @OSVersion = 'WIN_XP' AND @OSServicePack = 'Service Pack 2' Then SplashTextOn ( $title, 'Opening TCP and UDP Port 2967' & @CRLF & 'in XP SP2 Firewall for' & @CRLF & '"Symantec Antivirus" service ...', 300, 75 ) RunWait ( 'netsh firewall set portopening PROTOCOL=TCP 2967 NAME="Symantec Antivirus v10 Client" MODE=ENABLE PROFILE=ALL', '', @SW_HIDE ) RunWait ( 'netsh firewall set portopening PROTOCOL=UDP 2967 NAME="Symantec Antivirus v10 Client" MODE=ENABLE PROFILE=ALL', '', @SW_HIDE ) Sleep ( 2500 ) SplashOff ( ) EndIf ;Copy over SAV1's grc.dat file SplashTextOn ( $title, 'Updating GRC.DAT File ...', 300, 50 ) FileInstall ( '\\\vol\Applications\Antivirus\Symantec Antivirus CE\v10.0.1.1000\files\v10.0.1.1000\GRC.DAT', @AppDataCommonDir & '\Symantec\Symantec AntiVirus Corporate Edition\7.5\grc.dat', 1 ) Sleep ( 2500 ) SplashOff ( ) ;Copy over SAV1's certificate file SplashTextOn ( $title, 'Updating certificate ...', 300, 50 ) FileInstall ( '\\\vol\Applications\Antivirus\Symantec Antivirus CE\v10.0.1.1000\files\v10.0.1.1000\.servergroupca.cer', 'C:\Program Files\Symantec Antivirus\pki\roots\.0.servergroupca.cer', 1 ) Sleep ( 2500 ) SplashOff ( )