无法在 Windows Server 2012 R2 中配置 Web 应用程序代理

无法在 Windows Server 2012 R2 中配置 Web 应用程序代理

在服务器中配置 WAP 时,我收到以下错误。WAP 服务器和 ADFS 服务器都位于同一 Azure 区域和网络中。

Powershell 错误

截屏

答案1

错误表明您-FederationServiceTrustCredential在运行Install-WebApplicationProxycmdlet 时缺少此参数。您可以像以下示例一样添加它:

$FScredential = Get-Credential
Install-WebApplicationProxy -FederationServiceName "FS01.Contoso.com" -FederationServiceTrustCredential $FScredential -CertificateThumbprint "0a1b2c3d0a1b2c3d0a1b2c3d0a1b2c3d0a1b2c3d"

参考:安装-WebApplicationProxy

相关内容