搜索Powershell文件夹中的文件

时间:2019-07-13 16:41:05

标签: powershell

我要搜索文件夹中的文件,然后通过单击Out-Gridview上的“确定”按钮将其打开

gci | Out-GridView -PassThru | Select Name

我尝试使用StartProcess,但是我需要提供文件名。我不知道如何从out-gridview获取文件名并将其粘贴到Start-Process -FilePath

1 个答案:

答案 0 :(得分:2)

您可以使用Invoke-Item。它将使用默认处理程序打开文件。

Get-ChildItem -File | Out-GridView -PassThru |
  Select-Object -ExpandProperty FullName | Invoke-Item