Install-AdfsFarm

Creates the first node of a new federation server farm.

Syntax

Install-AdfsFarm
       [-CertificateThumbprint <String>]
       [-Credential <PSCredential>]
       -FederationServiceName <String>
       [-FederationServiceDisplayName <String>]
       -ServiceAccountCredential <PSCredential>
       [-OverwriteConfiguration]
       [-SSLPort <Int32>]
       [-TlsClientPort <Int32>]
       [-WhatIf]
       [-Confirm]
       [<CommonParameters>]
Install-AdfsFarm
       [-CertificateThumbprint <String>]
       [-Credential <PSCredential>]
       -DecryptionCertificateThumbprint <String>
       -FederationServiceName <String>
       [-FederationServiceDisplayName <String>]
       -ServiceAccountCredential <PSCredential>
       -SigningCertificateThumbprint <String>
       [-OverwriteConfiguration]
       [-SSLPort <Int32>]
       [-TlsClientPort <Int32>]
       [-WhatIf]
       [-Confirm]
       [<CommonParameters>]
Install-AdfsFarm
       [-CertificateThumbprint <String>]
       [-Credential <PSCredential>]
       -DecryptionCertificateThumbprint <String>
       -FederationServiceName <String>
       [-FederationServiceDisplayName <String>]
       -GroupServiceAccountIdentifier <String>
       -SigningCertificateThumbprint <String>
       [-OverwriteConfiguration]
       [-SSLPort <Int32>]
       [-TlsClientPort <Int32>]
       [-WhatIf]
       [-Confirm]
       [<CommonParameters>]
Install-AdfsFarm
       [-CertificateThumbprint <String>]
       [-Credential <PSCredential>]
       -DecryptionCertificateThumbprint <String>
       -FederationServiceName <String>
       [-FederationServiceDisplayName <String>]
       -GroupServiceAccountIdentifier <String>
       -SigningCertificateThumbprint <String>
       -SQLConnectionString <String>
       [-OverwriteConfiguration]
       [-SSLPort <Int32>]
       [-TlsClientPort <Int32>]
       [-WhatIf]
       [-Confirm]
       [<CommonParameters>]
Install-AdfsFarm
       [-CertificateThumbprint <String>]
       [-Credential <PSCredential>]
       -DecryptionCertificateThumbprint <String>
       -FederationServiceName <String>
       [-FederationServiceDisplayName <String>]
       -ServiceAccountCredential <PSCredential>
       -SigningCertificateThumbprint <String>
       -SQLConnectionString <String>
       [-OverwriteConfiguration]
       [-SSLPort <Int32>]
       [-TlsClientPort <Int32>]
       [-WhatIf]
       [-Confirm]
       [<CommonParameters>]
Install-AdfsFarm
       [-CertificateThumbprint <String>]
       [-Credential <PSCredential>]
       -FederationServiceName <String>
       [-FederationServiceDisplayName <String>]
       -ServiceAccountCredential <PSCredential>
       -SQLConnectionString <String>
       [-OverwriteConfiguration]
       [-SSLPort <Int32>]
       [-TlsClientPort <Int32>]
       [-WhatIf]
       [-Confirm]
       [<CommonParameters>]
Install-AdfsFarm
       [-CertificateThumbprint <String>]
       [-Credential <PSCredential>]
       -FederationServiceName <String>
       [-FederationServiceDisplayName <String>]
       -GroupServiceAccountIdentifier <String>
       -SQLConnectionString <String>
       [-OverwriteConfiguration]
       [-SSLPort <Int32>]
       [-TlsClientPort <Int32>]
       [-WhatIf]
       [-Confirm]
       [<CommonParameters>]
Install-AdfsFarm
       [-CertificateThumbprint <String>]
       [-Credential <PSCredential>]
       -FederationServiceName <String>
       [-FederationServiceDisplayName <String>]
       -GroupServiceAccountIdentifier <String>
       [-OverwriteConfiguration]
       [-SSLPort <Int32>]
       [-TlsClientPort <Int32>]
       [-WhatIf]
       [-Confirm]
       [<CommonParameters>]

Description

The Install-AdfsFarm cmdlet creates the first node of a new federation server farm.

Examples

Example 1

PS C:\> $fscredential = Get-Credential
PS C:\> Install-AdfsFarm -CertificateThumbprint 8169c52b4ec6e77eb2ae17f028fe5da4e35c0bed -FederationServiceName fs.corp.contoso.com -ServiceAccountCredential $fscredential

Description

Creates the first node in a federation server farm that uses the Windows Internal Database (WID) on the local server computer.

In this example, a certificate thumbprint value is supplied for the CertificateThumbprint parameter. This certificate will be used as the SSL certificate and the service communications certificate. Automatically generated, self-signed certificates will be used for the token signing and token decryption certificates.

To specify certificates for token signing and token decryption, specify thumbprint values for the SigningCertificateThumbprint and DecryptionCertificateThumbprint parameters.

Example 2

PS C:\> Install-AdfsFarm -CertificateThumbprint 8169c52b4ec6e77eb2ae17f028fe5da4e35c0bed -FederationServiceName fs.corp.contoso.com -GroupServiceAccountIdentifier CONTOSO\GroupAccount01

Description

This example creates the first node in a federation server farm that uses a group Managed Service Account as the service account. In this example, a certificate thumbprint value is supplied for the CertificateThumbprint parameter. This certificate will be used as the SSL certificate and the service communications certificate. Automatically generated, self-signed certificates will be used for the token signing and token decryption certificates.To specify certificates for token signing and token decryption, specify thumbprint values for the SigningCertificateThumbprint and DecryptionCertificateThumbprint parameters

Lists thumbprint values of currently installed certificates.

Example 3

PS C:\> $fscredential = Get-Credential
PS C:\> Install-AdfsFarm -CertificateThumbprint 8169c52b4ec6e77eb2ae17f028fe5da4e35c0bed -FederationServiceName fs.corp.contoso.com -ServiceAccountCredential $fscredential -SQLConnectionString "Data Source=SQLHost;Integrated Security=True"

Description


Creates the first node in a federation server farm that uses a Microsoft SQL server database on a remote computer named "SQLHost".

In this example, a certificate thumbprint value is supplied for the CertificateThumbprint parameter. This certificate will be used as the SSL certificate and the service communications certificate. Automatically generated, self-signed certificates will be used for the token signing and token decryption certificates.

To specify certificates for token signing and token decryption, specify thumbprint values for the SigningCertificateThumbprint and DecryptionCertificateThumbprint parameters.

Example 4

PS C:\> $fscredential = Get-Credential
PS C:\> Install-AdfsFarm -CertificateThumbprint 8169c52b4ec6e77eb2ae17f028fe5da4e35c0bed -FederationServiceName fs.corp.contoso.com -ServiceAccountCredential $fscredential -SQLConnectionString "Data Source=SQLHost;Integrated Security=True" -OverwriteConfiguration -SigningCertificateThumbprint 8169c52b4ec6e77eb2ae17f028fe5da4e35c0bed -DecryptionCertificateThumbprint cf2e5064c521d625c8d53536bc98aa8e08f5f2ad

Description


Overwrites an existing AD FS configuration database and creates the first node in a federation server farm that uses a Microsoft SQL server database on a remote computer named "SQLHost".

In this example, certificate thumbprint values are specified for the token signing certificate and for the token encryption certificate using the SigningCertificateThumbprint and DecryptionCertificateThumbprint parameters respectively.

Parameters

-CertificateThumbprint

Specifies the value of the certificate thumbprint of the certificate that should be used in the Secure Sockets Layer (SSL) binding of the Default Web Site in Internet Information Services (IIS). This value should match the thumbprint of a valid certificate in the Local Computer certificate store.

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-Confirm

Prompts you for confirmation before running the cmdlet.

Type:SwitchParameter
Aliases:cf
Position:Named
Default value:False
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-Credential

Specifies a PSCredential object based on a user name and password. To obtain a PSCredential object, use the Get-Credentialhttp://go.microsoft.com/fwlink/?LinkID=293936 cmdlet. For more information, type Get-Help Get-Credential. To use this cmdlet, you must supply credentials that have domain administrator privileges.

Type:PSCredential
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-DecryptionCertificateThumbprint

Specifies the value of the certificate thumbprint of the certificate that should be used for token decryption. If this parameter is used, the automatic certificate rollover feature will be disabled, and a token signing certificate must also be specified using the SigningCertificateThumbprint parameter. This value should match the thumbprint of a valid certificate in the Local Computer certificate store.

Type:String
Position:Named
Default value:None
Required:True
Accept pipeline input:False
Accept wildcard characters:False

-FederationServiceDisplayName

Specifies the display name of the Federation Service. The name that you specify is the organization for which this Federation Service issues tokens. For instance, you might specify Contoso Corporation. If you do not specify a value for this parameter, the Federation Service uses the value specified by the FederationServiceName parameter.

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-FederationServiceName

Specifies the DNS name of the federation service. This value must match the subject name of the certificate configured on the SSL binding in IIS.

Type:String
Position:Named
Default value:None
Required:True
Accept pipeline input:False
Accept wildcard characters:False

-GroupServiceAccountIdentifier

Specifies the Group Managed Service Account under which the Active Directory Federation Services (AD FS) service runs.

Type:String
Position:Named
Default value:None
Required:True
Accept pipeline input:False
Accept wildcard characters:False

-OverwriteConfiguration

This parameter must be used to remove an existing Active Directory Federation Services (AD FS) configuration database and overwrite it with a new database.

Type:SwitchParameter
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-ServiceAccountCredential

Specifies the Active Directory account under which the AD FS service runs.

Type:PSCredential
Position:Named
Default value:None
Required:True
Accept pipeline input:False
Accept wildcard characters:False

-SigningCertificateThumbprint

Specifies the value of the certificate thumbprint of the certificate that should be used for token signing. If this parameter is used, the automatic certificate rollover feature will be disabled, and a token decryption certificate must also be specified using the DecryptionCertificateThumbprint parameter. This value should match the thumbprint of a valid certificate in the Local Computer certificate store.

Type:String
Position:Named
Default value:None
Required:True
Accept pipeline input:False
Accept wildcard characters:False

-SQLConnectionString

Specifies the SQL Server database that will store the AD FS configuration settings. If not specified, the AD FS installer uses the Windows Internal Database to store configuration settings.

Type:String
Position:Named
Default value:None
Required:True
Accept pipeline input:False
Accept wildcard characters:False

-SSLPort

Specifies the value of the port number of the SSL binding that the AD FS web site will use.

Type:Int32
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-TlsClientPort

Specifies the port number that the AD FS service uses for Transport Layer Security (TLS) authentication for the user certificate client. The default value is 49443.

Type:Int32
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet is not run.

Type:SwitchParameter
Aliases:wi
Position:Named
Default value:False
Required:False
Accept pipeline input:False
Accept wildcard characters:False