簡體   English   中英

PowerShell - 展開組對象

[英]PowerShell - Expand Group-Object

我想擴展一個 PowerShell 組對象。 但只有第一個對象。

Get-EventLog -Logname system -EntryType "Error" | Group-Object 'InstanceID' | Select-Object Count, Name, @{Name="Message";Expression={$_.Group.Message[0]}} | Format-Table -Wrap

結果是:

Count Name Message                                                                                                                                                       
----- ---- -------                                                                                                                                                       
  161 17   ESIF(8.7.10200.12510) TYPE: ERROR MODULE: DPTF TIME 81546445 ms                                                                           

這可以。 但如果只有 1 個事件計數:

Count Name Message  
----- ---- ------- 
    1 8193 V    

他們只得到了第一個字符。

我怎樣才能獲得完整的第一個字符串? 有什么建議?

謝謝。

您可以使用Select-Object來選擇第一條消息。

Get-EventLog -Logname system -EntryType "Error" |
    Group-Object 'InstanceID' | Select-Object Count, Name,
        @{Name="Message";Expression={$_.Group.Message | select -first 1}} |
            Format-Table -Wrap

對我來說,我的示例輸出與您的示例輸出的唯一區別是,針對單個計數條目與僅第一個字符收集了整個消息。

Count Name       Message                                                                                                                                                                      
----- ----       -------                                                                                                                                                                      
    8 15         The device driver for the Trusted Platform Module (TPM) encountered a non-recoverable error in the TPM hardware, which prevents TPM services (such as data encryption) from  
                 being used. For further help, please contact the computer manufacturer.                                                                                                      
                                                                                                                                                                 
    6 3221232481 A timeout was reached (30000 milliseconds) while waiting for the GameDVR and Broadcast User Service_15bc71 service to connect.                                               
                                                         
    3 20         Installation Failure: Windows failed to install the following update with error 0x80073d02: 9WZDNCRFJ364-MICROSOFT.SKYPEAPP.                                                 
    1 36871      A fatal error occurred while creating a TLS client credential. The internal error state is 10013.                                                                            
    2 10001      The description for Event ID '10001' in Source 'DCOM' cannot be found.  The local computer may not have the necessary registry information or message DLL files to display   
                                                                                                                                               
    1 3221232495 The Network List Service service terminated with the following error:                                                                                                        
                 %%21   

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM