This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
Post
James Brundage | MVP
mrpowershell.com
did:plc:hlchta7bwmobyum375ltycg5
Quick #PowerShell filter to decorate objects as it's own name!
~~~PowerShell
filter text/html {
if ($_.pstypenames -and
$_.pstypenames -notcontains $myInvocation.InvocationName) {
$_.pstypenames.add($myInvocation.InvocationName)
}
$_
}
~~~
God I love #PowerShell !
😉😎😱🤯
2026-03-24T21:37:14.354Z