Difference between revisions of "Symantec Anti-Virus Corporate"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
m
 
Line 2: Line 2:
  
 
In profiles.xml add:
 
In profiles.xml add:
 
+
<source lang="xml">
                <package package-id="sav" />
+
    <package package-id="sav" />
 +
</source>
  
 
to your profiles section.
 
to your profiles section.
  
then in packages.xml add:
+
Then in packages.xml add:
  
<package
+
<source lang="xml">
 +
<package
 
   id="sav"
 
   id="sav"
 
   name="Symantec Anti-Virus"
 
   name="Symantec Anti-Virus"
Line 17: Line 19:
 
   execute="once">
 
   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!' />
 
   <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>
 
+
</source>
 
+
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].
+
Copy the contents of the \sav directory from the cdrom to %SOFTWARE%\sav and rename "symantec antivirus.msi" to sav10.1.msi.
  
 
[[category:Silent Installers]]
 
[[category:Silent Installers]]

Latest revision as of 20:32, 18 April 2008

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.