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

I'm getting pop-up from User Account Control when installing Single-Sign-On agent

I am following this article How to Implement Single Sign On Authentication with Active Directory and on step 8. you have an instruction how to automate this installation and use Logon script.  Everything works fine except the pop-up message I have from UAC saying that the SSSophosSetup.exe is from untrusted location.

Very annoying. Is there a way to fix this without disabling UAC?



This thread was automatically locked due to age.
Parents
  • I have finally got the thing working.

    The certificate is not the issue, it's SophosRun.exe tring to install the client using credential stored in Admin.ini.

    I move the install part of the logon script to startup script and now it's working.

     

    Set following startup script for the workstations

    Set WshShell = WScript.CreateObject("WScript.Shell")
    WshShell.Run "\\domain.local\netlogon\Sophos\SSSophosSetup.exe /VERYSILENT"

    and remove lines before

    ECHO Configuring...

    in the logon script.

     

    It looks i can even get rid of the scripts entirely using some custom msi package.

Reply
  • I have finally got the thing working.

    The certificate is not the issue, it's SophosRun.exe tring to install the client using credential stored in Admin.ini.

    I move the install part of the logon script to startup script and now it's working.

     

    Set following startup script for the workstations

    Set WshShell = WScript.CreateObject("WScript.Shell")
    WshShell.Run "\\domain.local\netlogon\Sophos\SSSophosSetup.exe /VERYSILENT"

    and remove lines before

    ECHO Configuring...

    in the logon script.

     

    It looks i can even get rid of the scripts entirely using some custom msi package.

Children
No Data