development, powershell,

PowerShell access private fields and properties

agowa338 agowa338 Aug 19, 2016 · 1 min read
Share this

Using the poke module it is possible to access private and internal fields of objects you would otherwise not be able to.

Example

# peek at a Job instance using pipeline syntax
$job = start-job { 42 } | peek
$job | get-member

Poke GitHub

agowa338
Written by agowa338