![]() |
Applications must register with Intel AMT using an existing enterprise name. Therefore, enterprises must first be added to Intel AMT. Enterprise names are strings.
1. Retrieve the instance of AMT_ThirdPartyDataStorageAdministrationService, where the “Name” key equals “Intel(r) AMT Third Party Data Storage Administration Service”.
2. Invoke AMT_ThirdPartyDataStorageAdministrationService.AddStorageEaclEntry to add an enterprise:
• Pass in a string with the enterprise name. 64 characters maximum.
• The method returns a handle for the enterprise as an output parameter.
|
The total number of enterprises is limited to four. |
Click here for a snippet demonstrating this step
You can execute this snippet by inserting it into the execution template found here.
$thirdPartyDataStorageAdministrationServiceRef =$wsmanConnectionObject.NewReference("SELECT * FROM AMT_ThirdPartyDataStorageAdministrationService WHERE Name='Intel(r) AMT Third Party Data Storage Administration Service'")
$inputObject =$thirdPartyDataStorageAdministrationServiceRef.CreateMethodInput("AddStorageEaclEntry")
$inputObject.SetProperty("EnterpriseName","Intel")
$outputObject =$thirdPartyDataStorageAdministrationServiceRef.InvokeMethod($inputObject)
$returnValue =$outputObject.GetProperty("ReturnValue")
if($returnValue -like "0")
{
$handle =$outputObject.GetProperty("Handle")
}
Instance Diagram
Not applicable
Classes Used in This Flow
SDK Sample
If there is a sample demonstrating this flow, it is included in the SDK installation file. See SDK Installation Layout for details.
See Also: |
• Storage Concepts and Objects |
Copyright © 2006-2022, Intel Corporation. All rights reserved. |