Invoke-CMAmtProvisioningDiscovery

Invoke-CMAmtProvisioningDiscovery

Checks whether computers have Intel AMT hardware.

構文

Parameter Set: SearchByDeviceNameMandatory
Invoke-CMAmtProvisioningDiscovery -DeviceName <String> [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: SearchByDeviceIdMandatory
Invoke-CMAmtProvisioningDiscovery -DeviceId <String> [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: SearchByDeviceValueMandatory
Invoke-CMAmtProvisioningDiscovery -Device <IResultObject> [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: SearchByIdMandatory
Invoke-CMAmtProvisioningDiscovery -DeviceCollectionId <String> [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: SearchByNameMandatory
Invoke-CMAmtProvisioningDiscovery -DeviceCollectionName <String> [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: SearchByValueMandatory
Invoke-CMAmtProvisioningDiscovery -DeviceCollection <IResultObject> [-Confirm] [-WhatIf] [ <CommonParameters>]

詳細説明

The Invoke-CMAmtProvisioningDiscovery cmdlet checks whether computers have Intel Active Management Technology (Intel AMT) hardware that supports out-of-band management. You can check individual computers or computers that belong to a Microsoft System Center 2012 Configuration Manager collection.

パラメーター

-Device<IResultObject>

Specifies a device object in Configuration Manager. To obtain a device object, use the Get-CMDevice cmdlet.

エイリアス

なし

必須?

true

位置は?

named

既定値

なし

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

True (ByPropertyName)

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

false

-DeviceCollection<IResultObject>

Specifies a device collection object in Configuration Manager. To obtain a device collection object, use the Get-CMDeviceCollection cmdlet.

エイリアス

なし

必須?

true

位置は?

named

既定値

なし

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

True (ByPropertyName)

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

false

-DeviceCollectionId<String>

Specifies the ID of a device collection.

エイリアス

なし

必須?

true

位置は?

named

既定値

なし

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

True (ByPropertyName)

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

false

-DeviceCollectionName<String>

Specifies the name of a device collection.

エイリアス

なし

必須?

true

位置は?

named

既定値

なし

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

True (ByPropertyName)

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

false

-DeviceId<String>

Specifies the ID of a device.

エイリアス

ResourceID

必須?

true

位置は?

named

既定値

なし

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

True (ByPropertyName)

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

false

-DeviceName<String>

Specifies the name of a device.

エイリアス

Name

必須?

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: Check a computer for Intel AMT hardware by using an ID

This command checks for Intel AMT-based hardware on a device that has the ID 16777230.

PS C:\> Invoke-CMAmtProvisioningDiscovery -DeviceID "16777230"

Example 2: Check computers for Intel AMT hardware in a named device collection

This command checks for Intel AMT-based hardware on the devices that belong to the collection named Floor03.

PS C:\> Invoke-CMAmtProvisioningDiscovery -DeviceCollectionName "Floor03"

Example 3: Check for a computer for Intel AMT hardware by using a variable

The first command gets a device object by using the Get-CMDevice command, and stores it in the $CMD variable.

The second command checks for Intel AMT-based technology on the device stored in the $CMD variable.

PS C:\> $CMD = Get-CMDevice -Name "Accn023.Contoso.com"
PS C:\> Invoke-CMAmtProvisioningDiscovery -Device $CMD

関連トピック

Update-CMAMTProvisioning

Remove-CMAmtProvisioningData

Get-CMDevice

Get-CMDeviceCollection