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

Endpoint proxy?

Hi

I need to allow our users to manage the proxy settings for the AutoUpdate secondary location (they often work on customer sites, and so need to enter customer proxy details as appropriate). This of course assumes that the endpoint doesn't automatically use the proxy as defined in Windows Internet Options?

Anyway, the KB article at http://www.sophos.com/en-us/support/knowledgebase/44325.aspx details how to do this on the endpoint, but I need to do this as part of an Enterprise Console policy.

Thanks

:49066


This thread was automatically locked due to age.
Parents
  • Hi,

    Could running some script help?  For example:

    C:\Windows\SysWOW64\cscript C:\Proxy.vbs

    dim objSAUConfig : set objSAUConfig = CreateObject("SAUConfigDLL.SAUConfig")
    dim objAddressSecondary : set objAddressSecondary = objSAUConfig.GetAddress(1)
    dim objProxy2 : set objProxy2 = objAddressSecondary.GetProxy()

    wscript.echo "Current secondary proxy: " & objProxy2.Address & ":" & objProxy2.Port
    objProxy2.Address ="http://one"
    objProxy2.Port ="8080"
    objSAUConfig.Commit

    Will set the proxy of the secondary location to be http://one:8080.

    Maybe you could use something like this.  This was extended from the info under:

    http://www.sophos.com/en-us/support/knowledgebase/36262.aspx

    Regards,

    Jak

    :49214
Reply
  • Hi,

    Could running some script help?  For example:

    C:\Windows\SysWOW64\cscript C:\Proxy.vbs

    dim objSAUConfig : set objSAUConfig = CreateObject("SAUConfigDLL.SAUConfig")
    dim objAddressSecondary : set objAddressSecondary = objSAUConfig.GetAddress(1)
    dim objProxy2 : set objProxy2 = objAddressSecondary.GetProxy()

    wscript.echo "Current secondary proxy: " & objProxy2.Address & ":" & objProxy2.Port
    objProxy2.Address ="http://one"
    objProxy2.Port ="8080"
    objSAUConfig.Commit

    Will set the proxy of the secondary location to be http://one:8080.

    Maybe you could use something like this.  This was extended from the info under:

    http://www.sophos.com/en-us/support/knowledgebase/36262.aspx

    Regards,

    Jak

    :49214
Children
No Data