Invoke-CMAmtProvisioningDiscovery
Updated: March 1, 2013
Applies To: System Center 2012 Configuration Manager SP1
Invoke-CMAmtProvisioningDiscovery
Syntax
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>]
Detailed Description
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.
Parameters
-Device<IResultObject>
Specifies a device object in Configuration Manager. To obtain a device object, use the Get-CMDevice cmdlet.
Aliases | none |
Required? | true |
Position? | named |
Default Value | none |
Accept Pipeline Input? | True (ByPropertyName) |
Accept Wildcard Characters? | false |
-DeviceCollection<IResultObject>
Specifies a device collection object in Configuration Manager. To obtain a device collection object, use the Get-CMDeviceCollection cmdlet.
Aliases | none |
Required? | true |
Position? | named |
Default Value | none |
Accept Pipeline Input? | True (ByPropertyName) |
Accept Wildcard Characters? | false |
-DeviceCollectionId<String>
Specifies the ID of a device collection.
Aliases | none |
Required? | true |
Position? | named |
Default Value | none |
Accept Pipeline Input? | True (ByPropertyName) |
Accept Wildcard Characters? | false |
-DeviceCollectionName<String>
Specifies the name of a device collection.
Aliases | none |
Required? | true |
Position? | named |
Default Value | none |
Accept Pipeline Input? | True (ByPropertyName) |
Accept Wildcard Characters? | false |
-DeviceId<String>
Specifies the ID of a device.
Aliases | ResourceID |
Required? | true |
Position? | named |
Default Value | none |
Accept Pipeline Input? | True (ByPropertyName) |
Accept Wildcard Characters? | false |
-DeviceName<String>
Specifies the name of a device.
Aliases | Name |
Required? | true |
Position? | named |
Default Value | none |
Accept Pipeline Input? | True (ByPropertyName) |
Accept Wildcard Characters? | false |
-Confirm
Prompts you for confirmation before executing the command.
Required? | false |
Position? | named |
Default Value | false |
Accept Pipeline Input? | false |
Accept Wildcard Characters? | false |
-WhatIf
Describes what would happen if you executed the command without actually executing the command.
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.
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: 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
This example checks for Intel AMT-based hardware on a device named Accn023.Contoso.com.
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
