Protocol Handlers
Launch PowerShell scripts based on custom protocol handlers.
Last updated
Was this helpful?
Launch PowerShell scripts based on custom protocol handlers.
Last updated
Was this helpful?
Was this helpful?
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