Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagepowershell
UseConnect-JobSchedulerMasterJobScheduler http://somehost:44444446 -ProxyUrl http://proxyhost:3128

...

  • The -ProxyUrl parameter specifies the host and port that the proxy server is operated for.
  • No immedidate connection attempts are carried out.

Using a Proxy server with default credentials

A proxy server can be specified with the UseConnect-JobSchedulerMasterJobScheduler cmdlet to use the default credentials of the current user like this:

Code Block
languagepowershell
UseConnect-JobSchedulerMasterJobScheduler http://somehost:44444446 -ProxyUrl http://proxyhost:3128 -ProxyUseDefaultCredentials

...

A proxy server can be specified with the UseConnect-JobSchedulerMasterJobScheduler cmdlet to use explicit credentials like this:

...

Explicit credentials for a proxy server can be specified with the Set-JobSchedulerCredentials cmdlet like this:

Code Block
languagepowershell
Set-JobSchedulerCredentials -ProxyCredentials $credentials

...

Explicit credentials for a proxy server can be specified on-the-fly with the Set-JobSchedulerCredentials cmdlet like this:

Code Block
languagepowershell
Set-JobSchedulerCredentials -ProxyAskForCredentials

...