Custom Protocol Handlers
New-CommanderCustomProtocol -Protocol myApp -Action {
if ($args[0] -eq 'notepad') { Start-Process notepad }
if ($args[0] -eq 'calc') { Start-Process calc }
if ($args[0] -eq 'wordpad') { Start-Process wordpad }
}<html>
<body>
<a href="myApp://notepad">Start Notepad</a>
</body>
</html>
Last updated