New-CMAssetIntelligenceCatalogItem

New-CMAssetIntelligenceCatalogItem

Creates an item for the Asset Intelligence catalog.

Syntax

Parameter Set: New
New-CMAssetIntelligenceCatalogItem -CategoryName <String> -Type <Types> {TypeCategory | TypeFamily | TypeTag} [-Description <String> ] [-LanguageId <Int32> ] [-Confirm] [-WhatIf] [ <CommonParameters>]

Detailed Description

The New-CMAssetIntelligenceCatalogItem cmdlet creates software categories, software families, and custom software labels from the Asset Intelligence catalog in Microsoft System Center 2012 Configuration Manager.

The Asset Intelligence catalog contains categorization and identification information for software titles. The catalog includes predefined categories and families. Predefined items cannot be modified. In addition to predefined software categories and software families, you can create custom categories and families. You can also create custom software labels.

Parameters

-CategoryName<String>

Specifies the name of a category, family, or label in the Asset Intelligence catalog.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

-Description<String>

Specifies the description of a category, family, or label in the Asset Intelligence catalog.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

-LanguageId<Int32>

Specifies the locale identifier for an item. For more information and a list of locale identifiers, see the Locale IDs Assigned by Microsoft topic at https://go.microsoft.com/fwlink/?LinkId=262651.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

-Type<Types>

Specifies the type of Asset Intelligence catalog item. Possible values are TYPE_CATEGORY, TYPE_FAMILY, and TYPE_TAG.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

-Confirm

Prompts you for confirmation before running the cmdlet.

Required?

false

Position?

named

Default Value

false

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet is not run.

Required?

false

Position?

named

Default Value

false

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

<CommonParameters>

This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see    about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Inputs

The input type is the type of the objects that you can pipe to the cmdlet.

Outputs

The output type is the type of the objects that the cmdlet emits.

Examples

Example 1: Create category label item in the catalog

This command creates a category label in the Asset Intelligence catalog named Databases that has a language ID of 1033 and a type of TYPE_TAG.

PS C:\> New-CMAssetIntelligenceCatalogItem -CategoryName "Databases" -LanguageId 1033 -Type TYPE_TAG

Example 2: Create a category item in the catalog

This command creates a category in the Asset Intelligence catalog named Database Tools that has a type of TYPE_CATEGORY.

PS C:\> New-CMAssetIntelligenceCatalogItem -CategoryName "Database Tools" -Type TYPE_CATEGORY

Example 3: Create a category family in the catalog

This command creates a category family item in the Asset Intelligence catalog family named Database Software that has a type of TYPE_FAMILY.

PS C:\> New-CMAssetIntelligenceCatalogItem -CategoryName "Database Software" -Type TYPE_FAMILY

Get-CMAssetIntelligenceCatalogItem

Set-CMAssetIntelligenceCatalogItem

Remove-CMAssetIntelligenceCatalogItem