Add-CMAssetIntelligenceSynchronizationPoint

Add-CMAssetIntelligenceSynchronizationPoint

Installs an Asset Intelligence synchronization point.

Syntax

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>]

Detailed Description

The Add-CMAssetIntelligenceSynchronizationPoint cmdlet installs an Asset Intelligence synchronization point. Microsoft System Center 2012 SP1 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.

Parameters

-CertificateFile<String>

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

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

-EnableSynchronization

Indicates that this operation enables the Asset Intelligence synchronization point.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

-ScheduleToken<IResultObject>

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

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

-SiteSystemServerName<String>

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

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: 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

New-CMSchedule

Remove-CMAssetIntelligenceSynchronizationPoint

Set-CMAssetIntelligenceSynchronizationPoint