Get-ChildItem 进入 Powershell ListBox GUI
我试图找出如何将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
Out-GridView< /code>
在弹出对话框中显示文件,您可以选择一个文件并返回选择。
使用
选择对象
更改Out-GridView
显示的列:You can use
Out-GridView
to show the files in a popup dialog which lets you select a file and return the selection.Use
Select-Object
to change which columns are shown byOut-GridView
: