Add-CMAssetIntelligenceSynchronizationPoint

Add-CMAssetIntelligenceSynchronizationPoint

Installs an Asset Intelligence synchronization point.

構文

Parameter Set: AISyncPoint
Add-CMAssetIntelligenceSynchronizationPoint -SiteSystemServerName <String> [-CertificateFile <String> ] [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: AISyncPointWithSchedule
Add-CMAssetIntelligenceSynchronizationPoint -EnableSynchronization -ScheduleToken <IResultObject> -SiteSystemServerName <String> [-CertificateFile <String> ] [-Confirm] [-WhatIf] [ <CommonParameters>]

詳細説明

The Add-CMAssetIntelligenceSynchronizationPoint cmdlet installs an Asset Intelligence synchronization point. Microsoft System Center 2012 Configuration Manager uses the Asset Intelligence synchronization point site system role to connect System Center 2012 Configuration Manager sites to System Center Online to synchronize Asset Intelligence catalog information.

You can install the Asset Intelligence synchronization point only on a site system located at the top-level site of the System Center 2012 Configuration Manager hierarchy.

パラメーター

-CertificateFile<String>

Specifies the path to a System Center Online authentication certificate (.pfx) file.

エイリアス

なし

必須?

false

位置は?

named

既定値

なし

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

True (ByPropertyName)

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

false

-EnableSynchronization

Indicates that the Asset Intelligence synchronization point is enabled.

エイリアス

なし

必須?

true

位置は?

named

既定値

なし

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

True (ByPropertyName)

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

false

-ScheduleToken<IResultObject>

Specifies a Configuration Manager schedule object. You can use the New-CMSchedule cmdlet to create a schedule token.

エイリアス

なし

必須?

true

位置は?

named

既定値

なし

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

True (ByPropertyName)

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

false

-SiteSystemServerName<String>

Specifies an array of fully qualified domain names (FQDN) of the servers that host the site system role.

エイリアス

なし

必須?

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: Install an Asset Intelligence synchronization point

This command installs an Asset Intelligence synchronization point on the site system server named CMDIV-TSQA04.CORP.CONTOSO.COM.

PS C:\> Add-CMAssetIntelligenceSynchronizationPoint -SiteSystemServerName "CMDIV-TSQA04.CORP.CONTOSO.COM" 

Example 2: Install a scheduled Asset Intelligence synchronization point

This first command creates a System Center 2012 Configuration Manager schedule token that specifies an event that occurs once a week for three weeks on Fridays. The command stores the results in the $Sc variable.

The second command installs an Asset Intelligence synchronization point on the site system server named CMDIV-TSQA04.CORP.CONTOSO.COM, specifying the schedule stored in $Sc. The command also specifies the System Center Online authentication certificate (.pfx) file, and enables synchronization.

PS C:\> $Sc = New-CMSchedule -DayOfWeek Friday -RecurCount 2
PS C:\> Add-CMAssetIntelligenceSynchronizationPoint -SiteSystemServerName "CMDIV-TSQA04.CORP.CONTOSO.COM" -CertificateFile "\\Contoso01\CM\ACDataFile\AIpfx.pfx" -EnableSynchronization -ScheduleToken $Sc

関連トピック

Get-CMAssetIntelligenceSynchronizationPoint

Remove-CMAssetIntelligenceSynchronizationPoint

Set-CMAssetIntelligenceSynchronizationPoint

New-CMSchedule