New-FsrmClassificationPropertyDefinition

New-FsrmClassificationPropertyDefinition

Creates a classification property definition.

構文

Parameter Set: cim:CreateInstance0
New-FsrmClassificationPropertyDefinition [-Name] <String> -Type <PropertyDefinitionTypeEnum> [-AsJob] [-CimSession <CimSession[]> ] [-Description <String> ] [-DisplayName <String> ] [-Parameters <String[]> ] [-PossibleValue <CimInstance[]> ] [-ThrottleLimit <Int32> ] [-Confirm] [-WhatIf] [ <CommonParameters>]

詳細説明

The New-FsrmClassificationPropertyDefinition cmdlet creates a classification property definition on the server. You create a property definition to define the property that you want to use to classify files. One or more classification rules can specify the property. The File Server Resource Manager (FSRM) server limits the number of property definitions to 100.

パラメーター

-AsJob

エイリアス

なし

必須?

false

位置は?

named

既定値

なし

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-CimSession<CimSession[]>

リモート セッションまたはリモート コンピューターでコマンドレットを実行します。New-CimSession コマンドレットや Get-CimSession コマンドレットの出力など、コンピューター名またはセッション オブジェクトを入力します。既定値は、ローカル コンピューターで実行中の現在のセッションです。

エイリアス

Session

必須?

false

位置は?

named

既定値

なし

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-Description<String>

Specifies a description for the property definition.

エイリアス

なし

必須?

false

位置は?

named

既定値

なし

パイプライン入力を許可する

True (ByPropertyName)

ワイルドカード文字を許可する

false

-DisplayName<String>

Specifies an optional name for the property.

エイリアス

なし

必須?

false

位置は?

named

既定値

なし

パイプライン入力を許可する

True (ByPropertyName)

ワイルドカード文字を許可する

false

-Name<String>

Specifies a name for the property.

エイリアス

なし

必須?

true

位置は?

2

既定値

なし

パイプライン入力を許可する

True (ByPropertyName)

ワイルドカード文字を許可する

true

-Parameters<String[]>

Specifies an array of strings using the format <name>=<value>. The File Classification Infrastructure and other management tools use these parameters.

エイリアス

なし

必須?

false

位置は?

named

既定値

なし

パイプライン入力を許可する

True (ByPropertyName)

ワイルドカード文字を許可する

false

-PossibleValue<CimInstance[]>

Specifies an array of property values. The default value is an empty list. You can use the New-FsrmClassificationPropertyValue cmdlet to create possible values for a classification property.

エイリアス

なし

必須?

false

位置は?

named

既定値

なし

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-ThrottleLimit<Int32>

このコマンドレットを実行するために確立できる最大同時操作数を指定します。このパラメーターを省略するか、値として 0 を入力した場合、Windows PowerShell® では、コンピューターで実行している CIM コマンドレットの数に基づいて、コマンドレットに対する最適なスロットル制限を計算します。スロットル制限は現在のコマンドレットのみに適用され、セッションまたはコンピューターには適用されません。

エイリアス

なし

必須?

false

位置は?

named

既定値

なし

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-Type<PropertyDefinitionTypeEnum>

Specifies the type of the classification property definition. このパラメーターに対して使用できる値:
-- OrderedList
-- MultiChoice
-- SingleChoice
-- String
-- MultiString
-- Integer
-- YesNo
-- DateTime

エイリアス

なし

必須?

true

位置は?

named

既定値

なし

パイプライン入力を許可する

True (ByPropertyName)

ワイルドカード文字を許可する

false

-Confirm

コマンドレットを実行する前に、ユーザーに確認を求めます。

必須?

false

位置は?

named

既定値

false

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-WhatIf

コマンドレットを実行するとどのような結果になるかを表示します。コマンドレットは実行されません。

必須?

false

位置は?

named

既定値

false

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

<CommonParameters>

このコマンドレットは次の共通パラメーターをサポートします。-Verbose、-Debug、-ErrorAction、-ErrorVariable、-OutBuffer、-OutVariable.詳細については、以下を参照してください。 about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216)。

入力

入力型は、コマンドレットにパイプできるオブジェクトの型です。

出力

出力型は、コマンドレットによって生成されるオブジェクトの型です。

Example 1: Create a YesNo classification property definition

This command creates a YesNo classification property definition that named "ClassProp01" with a display name of "Central Level Definitions".

PS C:\> New-FsrmClassificationPropertyDefinition -Name "ClassProp01" -DisplayName "Central Level Definitions" -Type YesNo

Example 2: Create an ordered list classification property definition

This command creates an OrderedList classification property definition named "Impact", and specifies the possible values for the property.

PS C:\> New-FsrmClassificationPropertyDefinition -Name "Impact" -Type OrderedList -PossibleValue @("High","Moderate","Low")

関連トピック

Get-FsrmClassificationPropertyDefinition

Set-FsrmClassificationPropertyDefinition

Update-FsrmClassificationPropertyDefinition

Remove-FsrmClassificationPropertyDefinition

New-FsrmClassificationPropertyValue