Remove-RASMFARadiusAttr
NAME
Remove-RASMFARadiusAttr
SYNOPSIS
Removes attribute settings from Radius provider settings.
SYNTAX
Remove-RASMFARadiusAttr [-AttributeType] {Number | String | IP | Time} [-Id] <uint> -AttributeID <uint> -RadiusAttrName <string> -Value <string> -Vendor <string> -VendorID <uint> [<CommonParameters>] Remove-RASMFARadiusAttr [-AttributeType] {Number | String | IP | Time} [-InputObject] <MFA> -AttributeID <uint> -RadiusAttrName <string> -Value <string> -Vendor <string> -VendorID <uint> [<CommonParameters>] Remove-RASMFARadiusAttr [-AttributeType] {Number | String | IP | Time} [-Name] <string> [[-SiteId] <uint>] -AttributeID <uint> -RadiusAttrName <string> -Value <string> -Vendor <string> -VendorID <uint> [<CommonParameters>]
DESCRIPTION
The cmdlet removes attribute settings. The removal is done by specifying the parameters that will match the attribute.
PARAMETERS
-VendorID <uint> RADIUS attribute vendor ID
Required? true Position? named Default value 0 Accept pipeline input? false Accept wildcard characters? false-AttributeID <uint> RADIUS attribute ID
Required? true Position? named Default value 0 Accept pipeline input? false Accept wildcard characters? false-Value <string> RADIUS attribute value The value has many forms:IP, Number, String, and Time. When setting the time it is expected that the time value is in epoch time.
Required? true Position? named Default value Accept pipeline input? false Accept wildcard characters? false-RadiusAttrName <string> RADIUS attribute name
Required? true Position? named Default value Accept pipeline input? false Accept wildcard characters? false-Vendor <string> RADIUS attribute vendor name
Required? true Position? named Default value Accept pipeline input? false Accept wildcard characters? false-AttributeType <RadiusAttrType> RADIUS attribute type. IP, string, number, or time Possible values: Number, String, IP, Time
Required? true Position? 0 Default value String Accept pipeline input? false Accept wildcard characters? false-Name <string> The name of the target multi-factor authentication . This must be the actual multi-factor authentication name used in the RAS farm.
Required? true Position? 0 Default value Accept pipeline input? false Accept wildcard characters? false-SiteId <uint> Site ID in which to modify the specified multi-factor authentication . If the parameter is omitted, the site ID of the Licensing Server will be used.
Required? false Position? 1 Default value 0 Accept pipeline input? false Accept wildcard characters? false-Id <uint> The ID of the multi-factor authentication to modify. To obtain the ID, use the Get-RASMFA cmdlet.
Required? true Position? 0 Default value 0 Accept pipeline input? false Accept wildcard characters? false-InputObject <MFA> The multi factor authentication to modify. To obtain an object of type MFA, use the Get-RASMFA cmdlet.
Required? true Position? 0 Default value Accept pipeline input? true (ByValue) Accept wildcard characters? false<CommonParameters>
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters .
INPUTS
OUTPUTS
-none-
EXAMPLES
---------- EXAMPLE 1 ---------- Remove-RASMFARadiusAttr -VendorID 1 -AttributeID 1 -AttributeType Time -Value 1500892425 -Name attrName -Vendor vendorName Removes an attribute from the Radius attribute list of type IP.
Last updated