![]() |
The following steps describe how to remove a system user.
1. Retrieve the instance of AMT_ AuthorizationService, where the “Name” key equals “Intel(r) AMT Authorization Service”.
2. Invoke AMT_AuthorizationService.RemoveUserAclEntry with the following parameter:
Parameter | Value |
Handle | Handle for the user to be deleted, returned when the entry was created or when retrieving a list of users. |
Click here for a snippet demonstrating this step
You can execute this snippet by inserting it into the execution template found here.
$handle ="4" # The handle of the user to be deleted. returned when the entry was created.
$authorizationServiceRef =$wsmanConnectionObject.NewReference("SELECT * FROM AMT_AuthorizationService WHERE Name='Intel(r) AMT Authorization Service'")
$inputObject =$authorizationServiceRef.CreateMethodInput("RemoveUserAclEntry")
$inputObject.SetProperty("Handle",$handle)
$outputObject =$authorizationServiceRef.InvokeMethod($inputObject)
$returnValue =$outputObject.GetProperty("ReturnValue")
Additional Information
Predefined ($$) users and the default admin user cannot be deleted.
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.
Copyright © 2006-2022, Intel Corporation. All rights reserved. |