Remove-RASMFA
NAME
Remove-RASMFA
SYNOPSIS
Removes a Multi Factor Authentication from a site.
SYNTAX
Remove-RASMFA [-Id] <uint> [<CommonParameters>]
Remove-RASMFA [-InputObject] <MFA> [<CommonParameters>]
Remove-RASMFA [-Name] <string> [[-SiteId] <uint>] [<CommonParameters>]
DESCRIPTION
Removes a Multi Factor Authentication from a site.
PARAMETERS
-Name <string> The name of the Multi Factor Authentication to remove from a site.
-SiteId <uint> Site ID from which to remove the Multi Factor Authentication.
If the parameter is omitted, the Licensing Server site ID will be used.
-Id <uint> The ID of a Multi Factor Authentication to remove from the site.
To obtain the ID, use the Get-RASMFA cmdlet.
-InputObject <MFA> The Multi Factor Authentication Settings to remove from a site.
To obtain a MFA object, use the Get-RASMFA command.
<CommonParameters>
INPUTS
OUTPUTS
-none-
EXAMPLES
---------- EXAMPLE 1 ----------
Remove-RASMFA "My VDI Pool"
Removes the Multi Factor Authentication specified by name from the Licensing Server site (default).
To remove a Multi Factor Authentication from a specific site, specify the -SiteId parameter. ---------- EXAMPLE 2 ----------
Get-RASMFA -Id 10 | Remove-RASMFA
Removes a Multi Factor Authentication, which is identified by an object obtained from the pipeline output.
RELATED LINKS
Last updated