trackd
trackd.x64.se
trackd
@trackd.x64.se
cloud stuff, PowerShell and sometimes c#
https://github.com/trackd
yea that was definitely the keyword to get selected 😂
September 23, 2025 at 10:31 PM
> I guess that means you can't use ValueFromPipeline without using Process explicitly.

you can, but it will only run for the last item.

1..10 | & {
param([Parameter(ValueFromPipeline)]$i)
begin { "begin: $i" }
process { "process: $i" }
end { "end: $i" }
}
February 12, 2025 at 7:48 AM
End is the default block if you dont specify in a function.

Process is default in filter.

No perf gain from it, just to control the pipeline and when things run.
February 12, 2025 at 2:25 AM
you could offer a correction, since 7.4 Humanizer has been shipped with ps. (gi $pshome\humanizer.dll)

[Humanizer.InflectorExtensions]::Pascalize('no_more_snake_case')
February 10, 2025 at 2:30 PM
Could look at what maester.dev does.
Pretty nice report for their pester tests.
Maester | Maester
Your Microsoft Security test automation framework!
maester.dev
January 29, 2025 at 8:38 PM