Functions/Open-InExplorer.ps1
function Open-InExplorer { [CmdletBinding()] param ( [Parameter()] [string] $Path = "." ) explorer.exe $Path } |
function Open-InExplorer { [CmdletBinding()] param ( [Parameter()] [string] $Path = "." ) explorer.exe $Path } |