当使用 powershell 检索有关事件的信息时,消息列被修剪并且太短:
索引时间类型源 EventID 消息
----- ---- ---- ------ -------- -------
2 Sep 18 12:50 信息 yadddayadda 0 类: Controllers.BasketController...
1 Sep 18 12:50 信息 yadddayadda 0 类:Controllers.BasketController...
是否可以看到完整的消息?
当使用 powershell 检索有关事件的信息时,消息列被修剪并且太短:
索引时间类型源 EventID 消息
----- ---- ---- ------ -------- -------
2 Sep 18 12:50 信息 yadddayadda 0 类: Controllers.BasketController...
1 Sep 18 12:50 信息 yadddayadda 0 类:Controllers.BasketController...
是否可以看到完整的消息?
您将看到该类型的默认表格格式(这将在安装(x.format.ps1.xml
文件)之一中定义。
你可以:
format-table -wrap
到管道的末尾,PSH 将包装最后一列的文本。format-table -auto
到管道的末尾,PSH 将调整所有列以适应(但需要先查看所有数据,因此您不会得到增量结果)。-auto
和-wrap
。help format-table -full
。除了上面提出的方法之外,-ExpandProperty
如果您只想提取错误消息,还可以使用以下方法:
Get-EventLog -LogName Application -Newest 10 -EntryType Warning | select -ExpandProperty message
这将提取整个错误消息。
管道到格式列表。
Just Open the Command Prompt window and click on the leftmost top corner.
>Select Properties
>Go to Layouts tab
>Increase the width and height of the Screen Buffer size and Window size.
这行得通。