--- title: "Remove-VBOFederatedAuthenticationAuthority" description: "This cmdlet removes an external authentication provider." canonical: "https://helpcenter.veeam.com/docs/vbo365/powershell/remove-vbofederatedauthenticationauthority.html" breadcrumb: "PowerShell Reference > Veeam Backup for Microsoft 365 PowerShell Reference > External Authentication Providers > Remove-VBOFederatedAuthenticationAuthority" dateModified: "2026-08-21" --- # Remove-VBOFederatedAuthenticationAuthority ## Short Description Removes external authentication providers. ## Syntax ``` Remove-VBOFederatedAuthenticationAuthority -Authority [] ``` ## Detailed Description This cmdlet removes an external authentication provider. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Authority

Specifies an external authentication provider. The cmdlet will remove this external authentication provider.

Accepts the VBOFederatedAuthenticationAuthority object.

To get this object, run the Get-VBOFederatedAuthenticationAuthority cmdlet.

VBOFederatedAuthenticationAuthority

True

Named

False

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the [About Common Parameters](http://go.microsoft.com/fwlink/p/?LinkID=113216) section of Microsoft Learn. ## Examples ::: example ### Removing External Authentication Provider This example shows how to remove an external authentication provider. ``` $authority = Get-VBOFederatedAuthenticationAuthority -Id 8657138e-ca49-4f91-XXXX-a17818eb818e Remove-VBOFederatedAuthenticationAuthority -Authority $authority ``` Perform the following steps: 1. Run the [`Get-VBOFederatedAuthenticationAuthority`](get-vbofederatedauthenticationauthority.md) cmdlet. Specify the `Id` parameter value. Save the result to the `$authority` variable. 2. Run the `Remove-VBOFederatedAuthenticationAuthority` cmdlet. Set the `$authority` variable as the `Authority` parameter value. ::: ## Related Commands [`Get-VBOFederatedAuthenticationAuthority`](get-vbofederatedauthenticationauthority.md)