You are on page 1of 1

@ECHO OFF

REM - Check for an existing installation of Sophos Anti-Virus on the system


REM - For 64 Bit Windows
if exist “C:\Program Files (x86)\Sophos\Sophos Anti-Virus\SavService.exe" goto EOF
REM - For 32 Bit Windows
if exist “C:\Program Files\Sophos\Sophos Anti-Virus\SavService.exe” goto EOF
REM Deploy to Windows 2000/XP/2003/Vista/2008/7/2008R2
REM --------------------------------------------------------------------------------------------
REM - Replace SophosServerNameHere with Actual Sophos Anti-Virus Server Name in your Network -
REM - Replace Domain\UserNameHere with Sophos Account ID in your Environment -
REM - Replace PasswordHere with Password of Above Sophos Account -
REM --------------------------------------------------------------------------------------------
\\SophosServerNameHere\SophosUpdate\CIDs\S014\SAVSCFXP\Setup.exe -s \ -user "Domain\UserNameHere" -pwd "PasswordHere" -mng yes
REM — End of the script
:EOF

You might also like