6 lines
528 B
PowerShell
6 lines
528 B
PowerShell
$storageAdministrationServiceRef = $wsmanConnectionObject.NewReference("SELECT * FROM AMT_ThirdPartyDataStorageAdministrationService WHERE Name='Intel(r) AMT Third Party Data Storage Administration Service'")
|
|
$inputObject = $storageAdministrationServiceRef.CreateMethodInput("UpdateStorageFpaclEntry")
|
|
$inputObject.SetProperty("Handle", "1")
|
|
$inputObject.SetProperty("NewAllocationSize", "49152")
|
|
$outputObject = $storageAdministrationServiceRef.InvokeMethod($inputObject)
|
|
$returnValue = $outputObject.GetProperty("ReturnValue") |