Protocol Handlers
Launch PowerShell scripts based on custom protocol handlers.
Last updated
Launch PowerShell scripts based on custom protocol handlers.
Last updated
New-PSUProtocolHandler -Script test.ps1 -Protocol psu<a href="psu://test">Click Me</a>param($ProtocolUri)
$Page = $ProtocolUri.Replace("psu://", "")
$Page
Show-PSUPage -Url $Page