Hi all,
I am trying to access the attribute Request.Disposition of a pending request. Funnily enough I can see the attribute if I do the following:
But if I want to access it, it always fails.
Thanks
I am trying to access the attribute Request.Disposition of a pending request. Funnily enough I can see the attribute if I do the following:
$pending = get-pendingrequests -CA $ca -property *
$pending | flRequest.Disposition 9But if I want to access it, it always fails.
$pending.Request.Disposition
It works for other attributes e.g.$pending.PublicKeyAlgorithm
I can use it via Select-Object -Expand-Property Request.Disposition, but I am curious why I cannot access it directly :)Thanks