Jason Shirk
Jason Shirk
Many built-in commands specify OutputType. Command completion could leverage this by only returning commands that take an object of type OutputType as a pipeline parameter. For example: Get-Disk | Here...
$^ and $$ (the first and last tokens from the previous command) should be expanded to their values because: - While these tokens save typing, seeing the full command line...
Some help here: https://gallery.technet.microsoft.com/scriptcenter/cb72e4e6-4a68-4a2e-89b7-cc43a860349e
I get different errors depending on the keyword I use, but the following is valid PowerShell: ```powershell $copyParams = @{ skipBuild = $true configuration = $Configuration } ``` Yet I...
Goblin currently parses the first debug directory and ignores any subsequent entries. A PE debug directory can have multiple entries, for example, a C# program compiled with the option `/debug:embedded`...
I made a significant shortcut that works correctly, but isn't a literal translation. dbgeng.h duplicates many method definitions instead of using inheritance, presumably to enable use from C. In my...
Similar to `xed_agen`, I think it would be useful to have an api that uses the `xed_register_callback_fn_t` callback to definitely determine when a conditional operand is actually read/written.
The error message is cropped in the search window:  This is on Windows 11. To repro, you need to change the system wide Text Size under Accessibility. I have...
Performance is very slow - about 50 seconds to list a few files. The long delay appears to be in calling `lsd::meta::windows_utils::get_acl_access_mask`. Possibly relevant details - I'm testing on Win10...
It took ~30 minutes to run `procs` on my domain joined machine with about ~225 processes running. I profiled about 30 seconds and the hotspot is this stack: ``` OTHER...