1 2 3 4 | function Show -InExplorer ( $file ) { $explorerArgs = "/select, $file" ; [System.Diagnostics.Process]::Start( "explorer.exe" , $explorerArgs ) | Out-Null ; } |
/select
.
1 2 3 4 | function Show -InExplorer ( $file ) { $explorerArgs = "/select, $file" ; [System.Diagnostics.Process]::Start( "explorer.exe" , $explorerArgs ) | Out-Null ; } |
/select
.
No comments:
Post a Comment