Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

powershell

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

Any clues?

like image 348
Lachmania Avatar asked Nov 26 '08 12:11

Lachmania


People also ask

How do I open Windows Explorer from command prompt?

If you like working with Windows Terminal, Command Prompt, or PowerShell, type the command explorer in any of them and press Enter. This immediately opens File Explorer from CMD in Windows 11 and Windows 10 or Windows Explorer in Windows 7.

How do I open a Windows Explorer window?

To open File Explorer, click on the File Explorer icon located in the taskbar. Alternatively, you can open File Explorer by clicking on the Start button and then clicking on File Explorer.


1 Answers

Use:

ii . 

which is short for

Invoke-Item . 

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

like image 171
EBGreen Avatar answered Sep 29 '22 06:09

EBGreen