Hi All,
I am deploying Sophos Safeguard using scripted installation for all my company's machines. Scripted is only uses for PCs which will only have Data Exchange and Port Control.
My script attached below. I am using cpau.exe to run the below script in elevated permissions.
I found out that the script runs perfectly for Windows XP. But for Windows 7, although i can see the machines registering with the management console, the initial user synchronization doesnt happen. I cannot see the inventory of the Windows 7 machines as well.
What am i missing??
@echo off FOR /F "usebackq" %%i IN (`hostname`) DO SET MYVAR=%%i REM ECHO %MYVAR% if exist "C:\Program Files\Sophos\SafeGuard Enterprise" goto theend pushd \\server1\software\sophos regedit.exe /s IRP.reg Vcredist_x86.exe /q:a /c:"msiexec /i vcredist.msi /qn /l*v %MYVAR%.log" NetFx20SP1_x86.exe /q /norestart msiexec /i SGxClientPreinstall.msi /qn REBOOT=ReallySuppress msiexec /i SGNClient.msi /qn ADDLOCAL=Client,Authentication,ConfigurationProtection,SecureDataExchange REBOOT=ReallySuppress /Le %MYVAR%.txt msiexec /i "GI Clients.msi" /qn REBOOT=ReallySuppress popd :theend if exist "C:\Program Files\Sophos\SafeGuard PortProtector Client" goto thefinal pushd \\server1\software\sophos msiexec /i SGN_CP_Client.msi /qn REBOOT=ReallySuppress /Le %MYVAR%_CP.txt popd :thefinal end
This thread was automatically locked due to age.