13 lines
906 B
PowerShell
13 lines
906 B
PowerShell
|
||
$assetTableServiceRef = $wsmanConnectionObject.NewReference("SELECT * FROM AMT_AssetTableService WHERE Name='Intel(r) AMT Asset Table Service'")
|
||
|
||
$inputObject = $assetTableServiceRef.CreateMethodInput("RequestMediaDeviceTableUpdate")
|
||
|
||
$inputObject.SetProperty("FullUpdate", "true")
|
||
|
||
$inputObject.SetProperty("Sticky", "true")
|
||
|
||
$outputObject = $assetTableServiceRef.InvokeMethod($inputObject)
|
||
|
||
$returnValue = $outputObject.GetProperty("ReturnValue")
|