/\/\o\/\/ on MSH (Monad): MSH start. FunctionAnother fun msh script by "/\/\o\/\/".
Here is a bit modified version that I have put on my "profile.msh".
This one basically takes a directory to open Windows Explorer for.
Default is the current directory so...
# original code author: /\/\o\/\/
function startHere {
param([string] $dir = (pwd).path)
$sh = new-object -com shell.application
$sh.explore($dir)
}