How to open folder in Powershell
There are many ways to open folder in Powershell.
1) Invoke-Item cmdlet: ii
>>> ii .
>>> ii C:\windows
2) start
>>> start .
>>> start C:\windows
3) explorer.exe
>>> explorer.exe .
>>> explorer.exe C:\windows
4) explorer
>>> explorer .
>>> explorer C:\windows
5) hh
>>> hh .
>>> hh C:\windows
>>> hh http://xxx.xxx.xxx/xxx
1) Invoke-Item cmdlet: ii
>>> ii .
>>> ii C:\windows
2) start
>>> start .
>>> start C:\windows
3) explorer.exe
>>> explorer.exe .
>>> explorer.exe C:\windows
4) explorer
>>> explorer .
>>> explorer C:\windows
5) hh
>>> hh .
>>> hh C:\windows
>>> hh http://xxx.xxx.xxx/xxx
댓글
댓글 쓰기