Search code examples
powershellexplorer

Is it possible to open a Windows Explorer window from PowerShell?


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

Any clues?


Solution

  • Use:

    ii .
    

    which is short for

    Invoke-Item .
    

    The dot can be substituted with any path.