Hi All, So i've been installing central for a few months using the documented installation method for GPO. And its been working fine. However my last two deployments have been really problematic. The first time I ended up discussing with support and had to uninstall and re-install from the installer and it wall all fine. I assumed it would be a one-off but now its happened again.
It seems to partially install, if I look in add-remove I see only "Sophos Endpoint Agent"
Central reports is like this...
and this is my script which is basically that from Sophos ...
@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
pushd \\********\SophosCentral
SophosSetup.exe --quiet
Popd
Any ideas what might be hapening here?
Thanks
This thread was automatically locked due to age.