New-RASClientPolicy

NAME

New-RASClientPolicy

SYNOPSIS

Adds a new client policy.

SYNTAX

New-RASClientPolicy [Name]** (string) [Description (string)] [Enabled (bool)] [(CommonParameters)]

DESCRIPTION

Adds a new client policy.

PARAMETERS

Name (string)

Name of the new client policy.

        Required?                    true

        Position?                    0

        Default value                

        Accept pipeline input?       false

        Accept wildcard characters?  false

Enabled (bool)

Whether the new client policy will be enabled or disabled.

        Required?                    false

        Position?                    named

        Default value                True

        Accept pipeline input?       false

        Accept wildcard characters?  false

Description (string)

Description for the new client policy.

        Required?                    false

        Position?                    named

        Default value                

        Accept pipeline input?       false

        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

-none-

OUTPUTS

ClientRules

EXAMPLES

**---------- EXAMPLE 1 ----------

New-RASClientPolicy -Name PDFPolicy

Adds a new client policy named as PDFPolicy. **---------- EXAMPLE 2 ----------

New-RASClientPolicy -Name UserGroupPolicy -Enable $False -Description 'For the User Groups'

Adds a new client policy named as UserGroupPolicy which is disabled and has a description of 'For the User Groups'.

Last updated