Difference between revisions of "Symantec Anti-Virus Corporate"
From WPKG | Open Source Software Deployment and Distribution
m |
m |
||
Line 16: | Line 16: | ||
priority="13" | priority="13" | ||
execute="once"> | execute="once"> | ||
− | <install cmd='%systemroot%\system32\msiexec.exe /i " | + | <install cmd='%systemroot%\system32\msiexec.exe /i "%SOFTWARE%\sav\sav10.1.msi" REBOOT=ReallySuppress INSTALLSERVER=0 NETWORKTYPE=1 SERVERNAME=your_server RUNLIVEUPDATE=0 ADDLOCAL=SAVMain,SAVUI,SAVHelp,QClient /qb!' /> |
</package> | </package> | ||
− | copy the contents of the \sav directory from the cdrom to | + | copy the contents of the \sav directory from the cdrom to %SOFTWARE%\sav and rename "symantec antivirus.msi" to sav10.1.msi. |
I got the install line from [http://www.appdeploy.com/packages/detail.asp?id=505 here]. | I got the install line from [http://www.appdeploy.com/packages/detail.asp?id=505 here]. | ||
[[category:Silent Installers]] | [[category:Silent Installers]] |
Revision as of 14:15, 3 October 2006
This is my configuration for Symantec Antivirus Corporate 10.1 as of July 7, 2006.
In profiles.xml add:
<package package-id="sav" />
to your profiles section.
then in packages.xml add:
<package id="sav" name="Symantec Anti-Virus" revision="13" reboot="false" priority="13" execute="once"> <install cmd='%systemroot%\system32\msiexec.exe /i "%SOFTWARE%\sav\sav10.1.msi" REBOOT=ReallySuppress INSTALLSERVER=0 NETWORKTYPE=1 SERVERNAME=your_server RUNLIVEUPDATE=0 ADDLOCAL=SAVMain,SAVUI,SAVHelp,QClient /qb!' /> </package>
copy the contents of the \sav directory from the cdrom to %SOFTWARE%\sav and rename "symantec antivirus.msi" to sav10.1.msi.
I got the install line from here.