Get-ChildItem 进入 Powershell ListBox GUI

发布于 2025-01-09 06:05:27 字数 218 浏览 0 评论 0原文

我试图找出如何将 Get-ChildItem 的输出放入 ListBox 中。

我的想法是,我想在一个小的 Powershell 窗口中将一个文件夹的内容作为下拉菜单列出。然后,该函数应使用预定义的参数运行选定的文件。

您知道如何实现这一目标吗?

我尝试将 Get-ChildItem 的值设置为变量,但随后我得到的只是一行中的所有内容并且作为一个选项。

提前致谢!

I am trying to find out how I can put the output of an Get-ChildItem into a ListBox.

My idea is, that I want to list the contents of one folder as an Drop-Down Menu within a small Powershell Window. The function then should run the selected file with predefined parameters.

Do you have any idea how to accomplish that?

I tried setting the values of Get-ChildItem as a variable, but then all I get is everything in one line and as one single option.

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

娇俏 2025-01-16 06:05:27

您可以使用 Out-GridView< /code>在弹出对话框中显示文件,您可以选择一个文件并返回选择。

$selectedFile = Get-ChildItem | Out-GridView -Title 'Select a file' -OutputMode Single

Write-Host "Selected file: $($selectedFile.Name)"

使用选择对象 更改 Out-GridView 显示的列:

$selectedFile = Get-ChildItem | Select-Object Name, LastWriteTime | Out-GridView -Title 'Select a file' -OutputMode Single

Write-Host "Selected file: $($selectedFile.Name)"

You can use Out-GridView to show the files in a popup dialog which lets you select a file and return the selection.

$selectedFile = Get-ChildItem | Out-GridView -Title 'Select a file' -OutputMode Single

Write-Host "Selected file: $($selectedFile.Name)"

Use Select-Object to change which columns are shown by Out-GridView:

$selectedFile = Get-ChildItem | Select-Object Name, LastWriteTime | Out-GridView -Title 'Select a file' -OutputMode Single

Write-Host "Selected file: $($selectedFile.Name)"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文