Versions Compared

Key

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

...

A proxy server can be specified with the Use-MasterJobSchedulerMaster cmdlet like this:

Code Block
languagepowershell
Use-MasterJobSchedulerMaster http://somehost:4444 -ProxyUrl http://proxyhost:3128

...

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

Code Block
languagepowershell
Use-MasterJobSchedulerMaster http://somehost:4444 -ProxyUrl http://proxyhost:3128 -ProxyUseDefaultCredentials

...

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

Code Block
languagepowershell
Use-MasterJobSchedulerMaster http://somehost:4444 -ProxyUrl http://proxyhost:3128 -ProxyCredentials $credentials

...

  • A credentials object is forwarded to the proxy server should authentication be required.
  • See Use Cases - Credentials Management for information how to manage credentials objects.

...

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

Code Block
languagepowershell
Set-CredentialsJobSchedulerCredentials -ProxyCredentials $credentials

...

  • A credentials object is forwarded to the proxy server should authentication be required.
  • This operation can be carried out at any time and is valid starting from the next request that is sent to the JobScheduler Master.
  • See Use Cases - Credentials Management for information how to manage credentials objects.

...

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

Code Block
languagepowershell
Set-CredentialsJobSchedulerCredentials -ProxyAskForCredentials

Explanations

  • The cmdlet will prompt for input of the user account and password that are used for authentication with a proxy server.
  • See Use Cases - Credentials Management for information how to manage credentials objects.

 

...