Complete-FasCloudRegistration

SYNOPSIS

Finishes the cloud registration process.

SYNTAX

Complete-FasCloudRegistration -ResourceLocationId <String> -Rule <String> [-Address <String>]
 [-UserName <String>] [-Password <String>] [<CommonParameters>]
<!--NeedCopy-->

DESCRIPTION

The cloud registration process is a 3-step process involving requesting a registration code, approving that code in Citrix Cloud, and finally completing the registration process once the code is approved. This command completes the cloud registration process, effectivly connecting FAS to the Citrix Cloud.

The specified resource location associates this FAS server with a specific resource location, such that when desktops and apps (resources) are launched in this location, this FAS server will be used to SSO into those resources. The rule name identifies which FAS rule to use when performing SSO, and is usually specified as “Default”

EXAMPLES

Example 1

PS C:\> Complete-FasCloudRegistration -ResourceLocationId xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx -Rule Default -Address localhost
<!--NeedCopy-->

This command completes the cloud registration process by associating the FAS server located at localhost with the specified resource location and the default FAS rule. The registration code needs to have been approved by a Citrix cloud administrator prior to running this command, otherwise an error will occur. Get-FasCloudRegistrationStatus can be used to the list the available resource locations that can be used.

PARAMETERS

-ResourceLocationId

The resource location Id, such that when desktops and apps (resources) are launched in this location, this FAS server will be used to SSO into those resources. The resource location id can be found in resource locations page in Citrix Cloud or using Get-FasCloudRegistrationStatus once the registration code is approved in Citrix Cloud.

Type: String
Parameter Sets: (All)
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
<!--NeedCopy-->

-Rule

The rule name parameter specifies which rule is applied to identity assertions made by Citrix Cloud Workspace

Type: String
Parameter Sets: (All)
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
<!--NeedCopy-->

-Address

Address of FAS Server (or $NULL to use $CitrixFasAddress)

Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
<!--NeedCopy-->

-Password

Password for authentication to FAS server ($NULL for current user account)

Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
<!--NeedCopy-->

-UserName

The username to use to connect to FAS server, which if unspecified, will use the current Windows network identity

Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
<!--NeedCopy-->

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

None

OUTPUTS

Citrix.Authentication.FederatedAuthenticationService.ToggledPowerShell.Registration.Models.CompleteCloudRegistrationUserResponse

NOTES

Get-FasCloudRegistrationCloudInfo

Request-FasCloudRegistration

Get-FasCloudRegistrationStatus

New-FasCloudRegistration

Complete-FasCloudRegistration