9 lines
758 B
PowerShell
9 lines
758 B
PowerShell
$thirdPartyDataStorageServiceRef = $wsmanConnectionObject.NewReference("SELECT * FROM AMT_ThirdPartyDataStorageService WHERE Name='Intel(r) AMT Third Party Data Storage Service'")
|
|
$inputObject = $thirdPartyDataStorageServiceRef.CreateMethodInput("SetBlockName")
|
|
# $sessionHandle is the session handle returned by 'RegisterApplication' method.
|
|
$inputObject.SetProperty("SessionHandle", $sessionHandle.ToString())
|
|
# $blockHandles contains one or more block handles returned by 'GetAllocatedBlocks' method.
|
|
$inputObject.SetProperty("BlockHandle", $blockHandles.Item(0).ToString())
|
|
$inputObject.SetProperty("BlockName", "MyBlock")
|
|
$outputObject = $thirdPartyDataStorageServiceRef.InvokeMethod($inputObject)
|
|
$returnValue = $outputObject.GetProperty("ReturnValue") |