使用 Oauth 凭据的新 PSSession Cmdlet
New-PSSession Cmdlet using Oauth credentials
我想创建一个 New-PSSession
使用 访问令牌 (Oauth) 而不是默认凭据。
可能吗?
根据documentation,这些是身份验证类型:
- 默认
- 基本
- Credssp
- 摘要
- Kerberos
- 协商
- NegotiateWithImplicitCredential
谢谢!
New-PSSession
与不支持 OAuth 身份验证的 PS Remoting (WinRM) 连接。您可以提供用于获取 OAuth 令牌的 PSCredential
对象(如果有的话)。
我想创建一个 New-PSSession
使用 访问令牌 (Oauth) 而不是默认凭据。
可能吗?
根据documentation,这些是身份验证类型:
- 默认
- 基本
- Credssp
- 摘要
- Kerberos
- 协商
- NegotiateWithImplicitCredential
谢谢!
New-PSSession
与不支持 OAuth 身份验证的 PS Remoting (WinRM) 连接。您可以提供用于获取 OAuth 令牌的 PSCredential
对象(如果有的话)。