222k views
0 votes
How do you deploy Active Directory Federations Services via Powershell?

a) Install-ADFS
b) Deploy-ADFSFarm
c) Configure-ADFSService
d) Set-ADFSInstallation

User Greg Beech
by
8.0k points

1 Answer

4 votes

Final answer:

The correct PowerShell command to deploy Active Directory Federation Services is not listed among the options. You would start with installing the server role using 'Install-WindowsFeature ADFS-Federation', followed by configuration commands.

Step-by-step explanation:

The process of deploying Active Directory Federation Services (ADFS) via Powershell is not done with just a single command; it involves a series of steps that include the use of the Install-WindowsFeature cmdlet to install the ADFS server role, and then configuring the federation service with additional cmdlets. However, among the provided choices, the correct option is not listed as a PowerShell cmdlet used for installing or deploying ADFS. Each of these commands serves a different purpose, and it seems like there might be a mix-up in their naming or intended use.

Install-ADFS is not a recognized cmdlet in PowerShell. What you might be looking for is to first install the ADFS role using Install-WindowsFeature ADFS-Federation, followed by additional configuration commands to set up the federation service.

User Simendsjo
by
8.7k points