0

While configuring WAP in the server I am getting the below error. Both WAP server and ADFS server are in the same Azure region and network.

Powershell error

screenshot

alexander.polomodov
  • 1,060
  • 3
  • 10
  • 14
Sajeel
  • 1
  • 1

1 Answers1

0

The error states that you lack this parameter -FederationServiceTrustCredential when you run Install-WebApplicationProxy cmdlet. You can add it like the following example:

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

References: Install-WebApplicationProxy

Nancy Xiong
  • 610
  • 4
  • 5
  • Same error. Even if we are not passing -FederationServiceTrustCredential, PS will ask for the credentials during execution. The error is related to something else. I have tried all the ways including reinstalling adfs and wap in a new instance as well. But I am able to configure if I do from a 2016 server. – Sajeel Aug 17 '18 at 18:23
  • What is that test environment when this error happen? – Nancy Xiong Aug 18 '18 at 02:47