I didn’t find much to do with scripted installs of CA eTrust Antivirus and how to remove the splash screen and the animated icon (realtime scanner) in the taskbar. Here’s how to automate it:
@ECHO OFF
START /WAIT MSIEXEC /I "eTrust Antivirus.MSI" ALLUSERS=TRUE INO_ICFFILE=%CD%\inoc6.icf /QB
REG ADD "HKLM\SOFTWARE\ComputerAssociates\eTrustAntivirus\CurrentVersion\Realtime" /v "Enable Animation" /t REG_DWORD /d 00000000 /f
REG ADD "HKLM\SOFTWARE\ComputerAssociates\eTrustAntivirus\CurrentVersion\SystemSetting" /v "RTAboutBox" /t REG_DWORD /d 00000000 /fMost people will want to turn the splash screen and animated icon off, especially in Terminal Server environments. The two registry keys disable both the icon and the splash screen.







