I'm sure this must be possible, but I can't find out how to do it.
Any clues?
|
|
|
You have a few options:
Examples:
PS C:\> explorer
PS C:\> explorer .
PS C:\> explorer /n
PS C:\> Invoke-Item c:\windows\explorer.exe
PS C:\> ii c:\windows\explorer.exe
PS C:\> [diagnostics.process]::start("explorer.exe")
|
|||
|
|
Is one of the most common things I type at the PS command line. |
|||||||||||||
|
|
Just use the invoke-item cmdlet. For example, if you want to open a explorer window on the current directory you can do:
|
|||
|
|
Hope this helps |
|||||||
|
|
Start explorer.exe Simple single line command |
|||
|
|
|
I came across this question looking for a way to open an Explorer window from PowerShell and also select a file. I'm adding this answer in case others come across it for the same reason. To launch Explorer and select a file, use
There are probably other ways to do this, but this worked for me. |
|||
|
|