Hello all,
I am having issues rolling out our AV via GPO/script. I followed KB:120611
https://community.sophos.com/kb/en-us/120611
What seems odd to me is, it works on some machines "Very few" but then on others not at all. I am at a point now where looking into SCCM might be an option since it has other useful benifits as a solution but figured I would ask the community here to see whatever has done to resolve this?
Here is our exact script:
_____________________________________________________________________
@echo off
SET MCS_ENDPOINT=Sophos\Management Communications System\Endpoint\McsClient.exe
IF "%PROCESSOR_ARCHITECTURE%" == "x86" GOTO X86_PROG
IF NOT EXIST "%ProgramFiles(x86)%\%MCS_ENDPOINT%" GOTO INSTALL
exit /b 0
:X86_PROG
IF NOT EXIST "%ProgramFiles%\%MCS_ENDPOINT%" GOTO INSTALL
exit /b 0
:INSTALL
mkdir C:\sophos
cd C:\sophos
copy "%logonserver%\netlogon\_Locations\_General\AV\SophosInstallFull.exe" "C:\sophos\SophosInstallFull.exe"
SophosInstallFull.exe -q -tps remove
goto end
:end
_____________________________________________________________________
We have the script being called via GPO during PC start up operation since most of our users do not have local administrator. - Some of the PC's also have the older endpoint installed via documentation I am under the impression "-tps remove" should take care of that?
Appreciate any help on this!
This thread was automatically locked due to age.