An object returned from a get-log command can look like
Date: <date> Properties: statusCode : OK serviceRequestId: 97168d7a-4c92-4d65-b509-65785b14ef42 Name: <name> Details: <details>
I want to do something that returns that the one object by doing something like
get-log | where-object { $_.Properties.serviceRequestId -eq '97168d7a-4c92-4d65-b509-65785b14ef42' }
Of course, this does not work, but I want something that works like this.
My goal is to see the "Details" property.