Trying to figure out SSO.
We installed ADFS on our Windows Server 2012 then I created an Azure Active Directory version of an SSO sample project following: https://github.com/Azure-Samples/active-directory-dotnet-native-client
That worked fine.
Then trying to port it to our Windows Server 2012 ADFS I followed this tutorial:
Which at one point says to run the following powershell command to add the WPF windows client to ADFS:
Add-ADFSClient -Name “MyClient” -ClientId “E1CF1107-FF90-4228-93BF-26052DD2C714” -RedirectUri “http://anarbitraryreturnuri/”
But this tutorial is geared towards Windows Server 2012 R2 and we run the plain Windows Server 2012 version and this Add-ADFSClient powershell command is missing.
How can I do the equivalent adding of a Windows client to ADFS on Windows Server 2012?
Thanks!