2016年8月,微软的Powershell开源。
然而,没有" out-gridview"选项呢。自动完成功能 显示这些Out *选项
PS /mnt> dir | Out
Out-Default Out-File Out-Host Out-Null Out-String outocp
请注意,目前没有Out-Gridview
。我是否忽略了一个可以做类似事情的功能,命令行开关?有时我会将表格数据显示在可排序的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.
答案 0 :(得分:1)
这家伙已经在python中构建了自己的partial replacement solution,虽然它目前有一些问题(已安装但在Ubuntu 16.04的干净安装中给我一个错误)
从干净的操作系统映像:
sudo apt-get install python-setuptools
sudo easy_install pip
sudo pip install opengridview
它目前也不支持选择/输出
答案 1 :(得分:1)
现在有。 https://devblogs.microsoft.com/powershell/out-gridview-returns/
Install-Module Microsoft.PowerShell.GraphicalTools
get-childitem | out-gridview