Remove-RASClientPolicyGW

NAME

Remove-RASClientPolicyGW

SYNOPSIS

Removes a GW from the list of a client policy.

SYNTAX

Remove-RASClientPolicyGW [-Name] <string> [-IP] <string> [<CommonParameters>]

Remove-RASClientPolicyGW [-Id] <uint> [-IP] <string> [<CommonParameters>]

Remove-RASClientPolicyGW [-InputObject] <ClientRules> [-IP] <string> [<CommonParameters>]

DESCRIPTION

Removes a GW from the list of a client policy.

PARAMETERS


-IP <string>
The IP address of the Gateway to remove from the client policy list.

        Required?                    true
        Position?                    1
        Default value                
        Accept pipeline input?       false
        Accept wildcard characters?  false

-Name <string>
Name of the client policy to modify.

This must be the actual client policy name used in the RAS farm.

        Required?                    true
        Position?                    0
        Default value                
        Accept pipeline input?       false
        Accept wildcard characters?  false

-Id <uint>
The ID of the client policy to modify. To obtain the ID, use the Get-RASClientPolicy cmdlet.

        Required?                    true
        Position?                    0
        Default value                0
        Accept pipeline input?       false
        Accept wildcard characters?  false

-InputObject <ClientRules>
The client policy object to modify.

        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 documentation. 

INPUTS

ClientRules

OUTPUTS

-none-

EXAMPLES


---------- EXAMPLE 1 ----------

Remove-RASClientPolicyGW -Name "MACPolicy" -IP "1.2.8.43"

Removes the GW with IP 1.2.8.43 from the list of the client policy with Name=MACPolicy.

RELATED LINKS