防止 PowerGUI 截断输出
我正在尝试从 powershell 命令获取输出。但是输出被截断。
[PS] >Get-QADGroup "admins"
Name Type DN
---- ---- --
Admins group CN=Admins,OU=Profiles,OU=Groups,OU=Sw...
我如何告诉这个 shell 想要者不要截断其数据?
I'm trying to get an output from a powershell command. However The output is truncated.
[PS] >Get-QADGroup "admins"
Name Type DN
---- ---- --
Admins group CN=Admins,OU=Profiles,OU=Groups,OU=Sw...
How do I tell this shell wannabe not to truncate its data?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果控制台空间太小,请尝试:
编辑:
If space console is too small, try:
edit:
这将防止所有输出结果被截断 -
运行此命令并首先查看默认枚举限制。
$FormatEnumerationLimit
将以上设置为-1以避免截断
$FormatEnumerationLimit=-1
This will prevent all output result truncating -
Run this and first to view the default enumeration limit.
$FormatEnumerationLimit
Set the above to -1 to avoid truncating
$FormatEnumerationLimit=-1
我遇到了同样的问题 - 我增加了运行命令的 powershell 窗口的缓冲区大小和窗口大小。它没有在 powershell 窗口或输出文件中截断。
I had the same issue - I increased the buffer size and window size of the powershell window I was running the commands in. It did not truncate in the powershell window nor the output file.