2016年8月,微软的Powershell开源。
但是,还没有“out-gridview”选项。
PS /mnt> dir | Out
Out-Default Out-File Out-Host Out-Null Out-String outocp
字符串
请注意,目前没有Out-Gridview
。我是否忽略了一个功能,commandlet可以做类似的事情?有时我想让我的表格数据显示在一个可排序的GUI窗口中(用于向不习惯命令行窗口的Windows用户显示某些内容)。
我的Powershell
PS /mnt> $PSVersiontable
Name Value
---- -----
PSVersion 6.0.0-alpha
PSEdition Core
PSCompatibleVersions {1.0, 2.0, 3.0, 4.0...}
BuildVersion 3.0.0.0
GitCommitId v6.0.0-alpha.9
CLRVersion
WSManStackVersion 3.0
PSRemotingProtocolVersion 2.3
SerializationVersion 1.1.0.
型
3条答案
按热度按时间zsbz8rwp1#
现在有了。https://devblogs.microsoft.com/powershell/out-gridview-returns/
字符串
7rtdyuoh2#
这个家伙已经用python构建了自己的partial replacement solution,尽管它目前有一些问题(安装了,但在Ubuntu 16.04的干净安装中给我抛出了一个错误)
从一个干净的操作系统映像:
字符串
它目前也不支持选择/输出
mfuanj7w3#
Microsoft.PowerShell.GraphicalTools
是currently not an option。但是same repository现在有Out-ConsoleGridview和Show-ObjectTree。使用Install-Module Microsoft.PowerShell.ConsoleGuiTools
安装。