Jump to content

Recommended Posts

Posted
As above appdeploy is the best place. Otherwise the main switches are S Q slient quiet VS VQ A N
Posted

That will all be custom.exe switches, you will have to consult the Sophos documentation... but here's one I made earlier (designed for MDT so you may find the share authentication unnecesary).

 

@echo off

echo Authenticating to \\Sophos\SophosUpdate as user SCHOOL\sophosinstalluser
net use \\Sophos\SophosUpdate /user:"SCHOOL\sophosinstalluser" passwordhere

echo Running Sophos installer with credentials for user SCHOOL\sophosinstalluser
start /wait \\Sophos\SophosUpdate\CIDs\S000\SAVSCFXP\Setup.exe -s \ -user "SCHOOL\sophosinstalluser" -pwd "passwordhere" -mng yes -g "\Sophos\Global Group\Computer Group"

echo Running Sophos update process
REM Check for 32bit or 64bit OS and switch to the correct location for the update utility
reg query HKLM\Hardware\Description\System\CentralProcessor\0 /c /f "x86" > nul:

If %ERRORLEVEL% == 0 (
   echo System is 32bit
   start /b "%PROGRAMFILES%\Sophos\AutoUpdate\ALUpdate.exe -ManualUpdate"
) ELSE (
   echo System is 64bit
   start /b "%PROGRAMFILES(X86)%\Sophos\AutoUpdate\ALUpdate.exe -ManualUpdate"
)


:loop

tasklist /nh /fi "imagename eq ALUpdate.exe" | find /i "ALUpdate.exe" >nul && (
echo ALUpdate.exe is running, waiting for it to finish
timeout 10
goto loop
) || (
echo ALUpdate.exe process has ended.
)

Posted
What I really want to do is deploy symantec endpoint client to my cc3 machines but don't know the correct parametres to put in the ini file.

 

With all due respect, why not use RMVP5 with all that hassle done for you...

Posted

When I say bog standard it does stipulate the setup.exe

 

I will have a play with this tomorrow, i can actually get the product to allocate out to stations just using a bog standard cc3 ini file but can't get it to allocate quietly or silently, users would be able to cancel the install from running.
Posted

The RMVP5 CC3 package from RM uses the SEP MSI.

 

[Package]
Description=RMVP5.1 for Computers
OS=5.WS,5.2WS,
WIPackage=SYMANTEC ANTIVIRUS.MSI
Reboots=1
AddCommand=RUNLIVEUPDATE=0 SYMPROTECTDISABLED=0 ADDLOCAL=Core,SAVMain,PTPMain,COHMain
UninstallCommand=REBOOT=FORCE

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...