如何在PowerShell中打开文件夹?
我是 而不是 谈论如何在特定文件夹中启动 PowerShell。
我的意思是在powershell的命令行中我想要
打开文件夹,例如:“打开文档”
最佳答案
使用 Invoke-Item
cmdlet,或其别名:ii。
PS> ii c:\windows # open the windows directory in windows explorer
PS> ii c:\book.xls # open book.xls in Excel
PS> ii . # open the current directory in windows explorer
关于powershell - 如何在Powershell中打开文件夹,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8471106/