Guest User!

You are not Sophos Staff.

This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Safeguard Deployment issues on Windows 7

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
:19531


This thread was automatically locked due to age.
Parents
  • If you're not using the volume encryption to encrypt the internal hard disk of the machine, wouldn't it be easier to use the SGNClient_withoutDE.msi file for the install, and add ADDLOCAL=ALL to your MSI options?  That should install everything (except DE), which may solve your Windows 7 problems.

    :19819
Reply
  • If you're not using the volume encryption to encrypt the internal hard disk of the machine, wouldn't it be easier to use the SGNClient_withoutDE.msi file for the install, and add ADDLOCAL=ALL to your MSI options?  That should install everything (except DE), which may solve your Windows 7 problems.

    :19819
Children
No Data