防止 PowerGUI 截断输出

发布于 2024-11-30 16:44:17 字数 310 浏览 0 评论 0原文

我正在尝试从 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 技术交流群。

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

发布评论

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

评论(3

氛圍 2024-12-07 16:44:17
Get-QADGroup "admins" | Ft -autosize -wrap

如果控制台空间太小,请尝试:

Get-QADGroup "admins" | Fl name,type,dn

编辑:

Get-QADGroup "admins" | Ft -autosize | out-string -width 4096 
Get-QADGroup "admins" | Ft -autosize -wrap

If space console is too small, try:

Get-QADGroup "admins" | Fl name,type,dn

edit:

Get-QADGroup "admins" | Ft -autosize | out-string -width 4096 
对风讲故事 2024-12-07 16:44:17

这将防止所有输出结果被截断 -

  • 运行此命令并首先查看默认枚举限制。
    $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

墨洒年华 2024-12-07 16:44:17

我遇到了同样的问题 - 我增加了运行命令的 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.

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