Powershell – Is it possible to open a Windows Explorer window from PowerShell

powershell

I'm sure this must be possible, but I can't find out how to do it.

Any clues?

Best Answer

Use:

ii .

which is short for

Invoke-Item .

It is one of the most common things I type at the PowerShell command line.