hi i got the below script from this link, i need to know how i can install sophos AV on a machine without admin rights? basically can someone edit this script for a logon user that i can use to install with admin rights please?
https://www.sophos.com/en-us/support/knowledgebase/13090.aspx
@ECHO OFF
REM --- Check for an existing installation of Sophos AutoUpdate on 32-bit (the 'Sophos AutoUpdate Service' process)
IF EXIST "C:\Program Files\Sophos\AutoUpdate\AL
svc.exe" goto _End
REM --- Check for an existing installation of Sophos AutoUpdate on 64-bit (the 'Sophos AutoUpdate Service' process)
IF EXIST "C:\Program Files (x86)\Sophos\AutoUpdate\AL
SVC.exe" goto _End
REM --- Check for an existing installation of Sophos Anti-Virus on 2003/XP (the SAV adapter config file)
IF EXIST "C:\Documents and Settings\All Users\Application Data\Sophos\Remote Management System\3\Agent\AdapterStor
age\SAV\SA
VAdapterCo
nfig" goto _End
REM --- Check for an existing installation of Sophos Anti-Virus on Vista+ (the SAV adapter config file)
IF EXIST "C:\ProgramData\Sophos\Rem
ote Management System\3\Agent\AdapterStor
age\SAV\SA
VAdapterCo
nfig" goto _End
REM --- Deploy to Windows 2000/XP/2003/Vista/Windows
7/2008/200
8-R2
\\SERVER\SophosUpdate\CIDs
\Sxxx\SAVS
CFXP\Setup
.exe -updp "\\SERVER\SophosUpdate\CID
s\Sxxx\SAV
SCFXP" -user USER -pwd PWD -mng yes
REM --- End of the script
:_End
Thanks