![]() |
The following steps describe how to read the Storage Redirection session log.
|
Beginning in version 11.0, Storage Redirection uses the USB-R protocol rather than the IDE-R protocol. The method has not been changed so as to preserve backwards compatibility. |
1. Retrieve the instance of AMT_RedirectionService, where the “Name key equals “Intel(r) AMT Redirection Service”.
2. Examine AMT_RedirectionService.AccessLog to see the Storage Redirection Access log.
Click here for a snippet demonstrating this step
You can execute this snippet by inserting it into the execution template found here.
$redirectionServiceRef =$wsmanConnectionObject.NewReference("SELECT * FROM AMT_RedirectionService WHERE Name='Intel(r) AMT Redirection Service'")
$redirectionServiceInstance =$redirectionServiceRef.Get()
$accessLog =$redirectionServiceInstance.GetProperty("AccessLog")
Additional Information
The access log is an array of strings, each a record of a Storage Redirection event. The format of each string is “Date (MM/DD/YYYY), Time (hh:mm:ss), IP:Port”.
Instance Diagram
Classes Used in This Flow
SDK Sample
Not applicable
Copyright © 2006-2022, Intel Corporation. All rights reserved. |