![]() |
The following steps describe how to stop the user consent sequence.
1. Retrieve the instance of IPS_OptInService, where the “Name” key equals “Intel(r) AMT OptIn Service”.
2. Invoke IPS_OptInService.CancelOptIn to reset the “OptInState” to the “NOT STARTED” state.
Property | Description | Values |
Read Only. Indicates the state of user consent (OptIn).
| Possible values: NOT STARTED: User consent is required. REQUESTED: a console has requested a user consent code. The code was created, but it was not displayed to the user yet. DISPLAYED: the user consent code was displayed to the user. RECEIVED: user consent code was successfully entered by the IT operator. IN SESSION: There is a Storage Redirection or KVM session open. |
|
The command can either be used by an IT operator remotely or by the end-user locally (via IMSS), to end the “Consent Received” period. |
Click here for a snippet demonstrating this step
You can execute this snippet by inserting it into the execution template found here.
$optInServiceRef =$wsmanConnectionObject.NewReference("SELECT * FROM IPS_OptInService WHERE Name='Intel(r) AMT OptIn Service'")
$inputObject =$optInServiceRef.CreateMethodInput("CancelOptIn")
$outputObject =$optInServiceRef.InvokeMethod($inputObject)
$returnValue =$outputObject.GetProperty("ReturnValue")
Instance Diagram
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: |
Copyright © 2006-2022, Intel Corporation. All rights reserved. |