diff --git a/docset/windows/adfs/add-adfsclient.md b/docset/windows/adfs/add-adfsclient.md index 6759a3c215..ff2025d930 100644 --- a/docset/windows/adfs/add-adfsclient.md +++ b/docset/windows/adfs/add-adfsclient.md @@ -7,7 +7,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml keywords: powershell, cmdlet manager: alanth -ms.date: 12/20/2016 +ms.date: 09/19/2016 ms.prod: w10 ms.technology: powershell-windows ms.topic: reference @@ -28,7 +28,7 @@ Registers an OAuth 2.0 client with AD FS. Add-AdfsClient [-ClientId] [-Name] [[-RedirectUri] ] [-Description ] [-ClientType ] [-ADUserPrincipalName ] [-JWTSigningCertificate ] [-JWTSigningCertificateRevocationCheck ] [-JWKSUri ] [-JWKSFile ] - [-GenerateClientSecret] [-PassThru] [-WhatIf] [-Confirm] [] + [-GenerateClientSecret] [-LogoutUri] [-PassThru] [-WhatIf] [-Confirm] [] ``` @@ -241,6 +241,22 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -LogoutUri +Specifies the logout URI for the OAuth 2.0 client to register with the AD FS. When AD FS initiates a logout it redirects the client's user-agent to this URI by rendering this URI in an iframe. The value of this parameter must be an absolute URI, may include a query component, and must not include a fragment component. This parameter is available with the Windows Update KB4038801 installed. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False + +``` + ### -PassThru Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output. diff --git a/docset/windows/adfs/add-adfsnativeclientapplication.md b/docset/windows/adfs/add-adfsnativeclientapplication.md index 6223b87ee2..b74d3a5e8a 100644 --- a/docset/windows/adfs/add-adfsnativeclientapplication.md +++ b/docset/windows/adfs/add-adfsnativeclientapplication.md @@ -7,7 +7,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml keywords: powershell, cmdlet manager: alanth -ms.date: 12/20/2016 +ms.date: 09/19/2017 ms.prod: w10 ms.technology: powershell-windows ms.topic: reference @@ -27,13 +27,13 @@ Adds a native client application role to an application in AD FS. ### ApplicationGroupIdentifier (Default) ``` Add-AdfsNativeClientApplication [-ApplicationGroupIdentifier] [-Name] [-Identifier] - [[-RedirectUri] ] [-Description ] [-PassThru] [-WhatIf] [-Confirm] [] + [[-RedirectUri] ] [-Description ] [-LogoutUri] [-PassThru] [-WhatIf] [-Confirm] [] ``` ### ApplicationGroupObject ``` Add-AdfsNativeClientApplication [-ApplicationGroup] [-Name] [-Identifier] - [[-RedirectUri] ] [-Description ] [-PassThru] [-WhatIf] [-Confirm] [] + [[-RedirectUri] ] [-Description ] [-LogoutUri] [-PassThru] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -117,6 +117,21 @@ Position: 2 Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False +``` +### -LogoutUri +Specifies the logout URI for the OAuth 2.0 client to register with the AD FS. When AD FS initiates a logout it redirects the client's user-agent to this URI by rendering this URI in an iframe. The value of this parameter must be an absolute URI, may include a query component, and must not include a fragment component. This parameter is available with the Windows Update KB4038801 installed. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False + ``` ### -Name diff --git a/docset/windows/adfs/add-adfsserverapplication.md b/docset/windows/adfs/add-adfsserverapplication.md index 7533ced013..d859d93962 100644 --- a/docset/windows/adfs/add-adfsserverapplication.md +++ b/docset/windows/adfs/add-adfsserverapplication.md @@ -7,7 +7,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml keywords: powershell, cmdlet manager: alanth -ms.date: 12/20/2016 +ms.date: 09/19/2017 ms.prod: w10 ms.technology: powershell-windows ms.topic: reference @@ -29,7 +29,7 @@ Adds a server application role to an application in AD FS. Add-AdfsServerApplication [-ApplicationGroupIdentifier] [-Name] [-Identifier] [[-RedirectUri] ] [-Description ] [-ADUserPrincipalName ] [-JWTSigningCertificate ] [-JWTSigningCertificateRevocationCheck ] - [-JWKSUri ] [-JWKSFile ] [-GenerateClientSecret] [-PassThru] [-WhatIf] [-Confirm] + [-JWKSUri ] [-JWKSFile ] [-GenerateClientSecret] [-LogoutUri] [-PassThru] [-WhatIf] [-Confirm] [] ``` @@ -38,7 +38,7 @@ Add-AdfsServerApplication [-ApplicationGroupIdentifier] [-Name] [-Name] [-Identifier] [[-RedirectUri] ] [-Description ] [-ADUserPrincipalName ] [-JWTSigningCertificate ] [-JWTSigningCertificateRevocationCheck ] - [-JWKSUri ] [-JWKSFile ] [-GenerateClientSecret] [-PassThru] [-WhatIf] [-Confirm] + [-JWKSUri ] [-JWKSFile ] [-GenerateClientSecret] [-LogoutUri] [-PassThru] [-WhatIf] [-Confirm] [] ``` @@ -227,6 +227,22 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -LogoutUri +Specifies the logout URI for the OAuth 2.0 client to register with the AD FS. When AD FS initiates a logout it redirects the client's user-agent to this URI by rendering this URI in an iframe. The value of this parameter must be an absolute URI, may include a query component, and must not include a fragment component. This parameter is available with the Windows Update KB4038801 installed. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False + +``` + ### -Name Specifies a name. diff --git a/docset/windows/adfs/set-adfsclient.md b/docset/windows/adfs/set-adfsclient.md index 466971b3bf..ffb75268cf 100644 --- a/docset/windows/adfs/set-adfsclient.md +++ b/docset/windows/adfs/set-adfsclient.md @@ -7,7 +7,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml keywords: powershell, cmdlet manager: alanth -ms.date: 12/20/2016 +ms.date: 09/19/2017 ms.prod: w10 ms.technology: powershell-windows ms.topic: reference @@ -29,7 +29,7 @@ Modifies registration settings for an OAuth 2.0 client registered with AD FS. Set-AdfsClient [-Force] [-TargetName] [-ClientId ] [-Name ] [-RedirectUri ] [-Description ] [-ADUserPrincipalName ] [-JWTSigningCertificate ] [-JWTSigningCertificateRevocationCheck ] [-ChangeClientSecret] [-ResetClientSecret] - [-JWKSUri ] [-ReloadJWTSigningKeys] [-JWKSFile ] [-PassThru] [-WhatIf] [-Confirm] + [-JWKSUri ] [-ReloadJWTSigningKeys] [-JWKSFile ] [-LogoutUri] [-PassThru] [-WhatIf] [-Confirm] [] ``` @@ -38,7 +38,7 @@ Set-AdfsClient [-Force] [-TargetName] [-ClientId ] [-Name [-ClientId ] [-Name ] [-RedirectUri ] [-Description ] [-ADUserPrincipalName ] [-JWTSigningCertificate ] [-JWTSigningCertificateRevocationCheck ] [-ChangeClientSecret] [-ResetClientSecret] - [-JWKSUri ] [-ReloadJWTSigningKeys] [-JWKSFile ] [-PassThru] [-WhatIf] [-Confirm] + [-JWKSUri ] [-ReloadJWTSigningKeys] [-JWKSFile ] [-LogoutUri] [-PassThru] [-WhatIf] [-Confirm] [] ``` @@ -48,7 +48,7 @@ Set-AdfsClient [-Force] [-TargetClient] [-ClientId ] [-Name [-RedirectUri ] [-Description ] [-ADUserPrincipalName ] [-JWTSigningCertificate ] [-JWTSigningCertificateRevocationCheck ] [-ChangeClientSecret] [-ResetClientSecret] [-JWKSUri ] [-ReloadJWTSigningKeys] [-JWKSFile ] - [-PassThru] [-WhatIf] [-Confirm] [] + [-LogoutUri] [-PassThru] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -235,6 +235,22 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -LogoutUri +Specifies the logout URI for the OAuth 2.0 client to register with the AD FS. When AD FS initiates a logout it redirects the client's user-agent to this URI by rendering this URI in an iframe. The value of this parameter must be an absolute URI, may include a query component, and must not include a fragment component. This parameter is available with the Windows Update KB4038801 installed. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False + +``` + ### -Name Specifies a name. The cmdlet modifies the OAuth 2.0 client registration information with the name that you specify. diff --git a/docset/windows/adfs/set-adfsnativeclientapplication.md b/docset/windows/adfs/set-adfsnativeclientapplication.md index a3c8751ed5..2333480c50 100644 --- a/docset/windows/adfs/set-adfsnativeclientapplication.md +++ b/docset/windows/adfs/set-adfsnativeclientapplication.md @@ -7,7 +7,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml keywords: powershell, cmdlet manager: alanth -ms.date: 12/20/2016 +ms.date: 09/19/2017 ms.prod: w10 ms.technology: powershell-windows ms.topic: reference @@ -27,19 +27,19 @@ Modifies configuration settings for a server native client application role of a ### Identifier (Default) ``` Set-AdfsNativeClientApplication [-TargetIdentifier] [-Identifier ] [-Name ] - [-RedirectUri ] [-Description ] [-PassThru] [-WhatIf] [-Confirm] [] + [-RedirectUri ] [-Description ] [-LogoutUri] [-PassThru] [-WhatIf] [-Confirm] [] ``` ### Name ``` Set-AdfsNativeClientApplication [-TargetName] [-Identifier ] [-Name ] - [-RedirectUri ] [-Description ] [-PassThru] [-WhatIf] [-Confirm] [] + [-RedirectUri ] [-Description ] [-LogoutUri] [-PassThru] [-WhatIf] [-Confirm] [] ``` ### ApplicationObject ``` Set-AdfsNativeClientApplication [-TargetApplication] [-Identifier ] - [-Name ] [-RedirectUri ] [-Description ] [-PassThru] [-WhatIf] [-Confirm] + [-Name ] [-RedirectUri ] [-Description ] [-LogoutUri] [-PassThru] [-WhatIf] [-Confirm] [] ``` @@ -94,6 +94,21 @@ Position: Named Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False +``` +### -LogoutUri +Specifies the logout URI for the OAuth 2.0 client to register with the AD FS. When AD FS initiates a logout it redirects the client's user-agent to this URI by rendering this URI in an iframe. The value of this parameter must be an absolute URI, may include a query component, and must not include a fragment component. This parameter is available with the Windows Update KB4038801 installed. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False + ``` ### -Name diff --git a/docset/windows/adfs/set-adfsproperties.md b/docset/windows/adfs/set-adfsproperties.md index 0ce9d875e7..4f4b366d91 100644 --- a/docset/windows/adfs/set-adfsproperties.md +++ b/docset/windows/adfs/set-adfsproperties.md @@ -7,7 +7,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml keywords: powershell, cmdlet manager: alanth -ms.date: 12/20/2016 +ms.date: 09/19/2017 ms.prod: w10 ms.technology: powershell-windows ms.topic: reference @@ -504,7 +504,7 @@ Accept wildcard characters: False ``` ### -EnableOAuthLogout -Enables the OAuth logout endpoint publishing in the OAuth discovery document. The OAuth logout endpoint logs out the current user from the ADFS. It does not support logging out a federated user from the federated identity provider. This parameter is only available with the Windows Update KB4019472 installed. +Enables the OAuth logout endpoint publishing in the OAuth discovery document. The OAuth logout endpoint logs out the current user from the AD FS. This parameter is available with the Windows Update KB4019472 installed. The AD FS does not support logging out a federated user from the federated identity provider when using the OAuth logout endpoint with Windows Update KB4019472 installed. The Windows Update KB4038801 makes this parameter obsolete and the value of this parameter to be always true. The Windows Update KB4038801 also adds support for logging our a federated user from the federated identity provider when using the OAuth logout endpoint. ```yaml Type: Boolean diff --git a/docset/windows/adfs/set-adfsserverapplication.md b/docset/windows/adfs/set-adfsserverapplication.md index fd7f69b312..24d6ddccf6 100644 --- a/docset/windows/adfs/set-adfsserverapplication.md +++ b/docset/windows/adfs/set-adfsserverapplication.md @@ -7,7 +7,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml keywords: powershell, cmdlet manager: alanth -ms.date: 12/20/2016 +ms.date: 09/19/2017 ms.prod: w10 ms.technology: powershell-windows ms.topic: reference @@ -30,7 +30,7 @@ Set-AdfsServerApplication [-TargetIdentifier] [-Identifier ] [- [-RedirectUri ] [-Description ] [-ADUserPrincipalName ] [-JWTSigningCertificate ] [-JWTSigningCertificateRevocationCheck ] [-ChangeClientSecret] [-ResetClientSecret] [-JWKSUri ] [-ReloadJWTSigningKeys] [-JWKSFile ] - [-PassThru] [-WhatIf] [-Confirm] [] + [-LogoutUri] [-PassThru] [-WhatIf] [-Confirm] [] ``` ### Name @@ -38,7 +38,7 @@ Set-AdfsServerApplication [-TargetIdentifier] [-Identifier ] [- Set-AdfsServerApplication [-TargetName] [-Identifier ] [-Name ] [-RedirectUri ] [-Description ] [-ADUserPrincipalName ] [-JWTSigningCertificate ] [-JWTSigningCertificateRevocationCheck ] [-ChangeClientSecret] [-ResetClientSecret] - [-JWKSUri ] [-ReloadJWTSigningKeys] [-JWKSFile ] [-PassThru] [-WhatIf] [-Confirm] + [-JWKSUri ] [-ReloadJWTSigningKeys] [-JWKSFile ] [-LogoutUri] [-PassThru] [-WhatIf] [-Confirm] [] ``` @@ -48,7 +48,7 @@ Set-AdfsServerApplication [-TargetApplication] [-Identifier [-RedirectUri ] [-Description ] [-ADUserPrincipalName ] [-JWTSigningCertificate ] [-JWTSigningCertificateRevocationCheck ] [-ChangeClientSecret] [-ResetClientSecret] [-JWKSUri ] [-ReloadJWTSigningKeys] [-JWKSFile ] - [-PassThru] [-WhatIf] [-Confirm] [] + [-LogoutUri] [-PassThru] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -206,6 +206,22 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -LogoutUri +Specifies the logout URI for the OAuth 2.0 client to register with the AD FS. When AD FS initiates a logout it redirects the client's user-agent to this URI by rendering this URI in an iframe. The value of this parameter must be an absolute URI, may include a query component, and must not include a fragment component. This parameter is available with the Windows Update KB4038801 installed. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False + +``` + ### -Name Specifies a name.