您好,登錄后才能下訂單哦!
這篇文章給大家介紹使用Format-Table去顯示輸出信息時出錯怎么解決,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
我們在使用Format-Table去顯示輸出信息的時候,通常會發現如果某個屬性字段比較長,則無法正常全部顯示,如下。
PS> Get-Process -Name powershell | Format-Table -Property Company,Name,Id,Path -AutoSize Company Name Id Path ------- ---- -- ---- Microsoft Corporation powershell 2836 C:\Program Files\Windows PowerShell\v1...
這里面涉及到一個很重要的細節是,Format-Table 命令假定屬性距離屬性列表的開頭越近,則該屬性越重要。 因此,它會嘗試完整顯示離列表開頭最近的那些屬性。 如果 Format-Table 命令無法顯示所有屬性,它將從顯示中刪除某些列,并發出警告。如果你使名稱變成列表中的最后一個屬性,便可以看到這一行為:
PS> Get-Process -Name powershell | Format-Table -Property Company,Path,Id,Name -AutoSize WARNING: column "Name" does not fit into the display and was removed. Company Path I d ------- ---- - Microsoft Corporation C:\Program Files\Windows PowerShell\v1.0\powershell.exe 6
你還可以通過使用 Wrap 參數讓較長的 Format-Table 數據在其顯示列中自動換行。 僅使用 Wrap 參數不一定會實現所需的操作,因為如果你不同時指定 AutoSize,它會使用默認設置:
PS> Get-Process -Name powershell | Format-Table -Wrap -Property Name,Id,Company,Path Name Id Company Path ---- -- ------- ---- powershell 2836 Microsoft Corporati C:\Program Files\Wi on ndows PowerShell\v1.0\powershell.exe
使用 Wrap 參數的一個優點是基本不會減慢進程速度。 如果你對大型目錄系統執行遞歸文件列表,那么如果你使用 AutoSize,可能得耗用大量時間和內存,才能顯示第一批輸出項。
如果你并不關心系統負載,那么結合使用 AutoSize 和 Wrap 參數則會獲得良好的效果。
PS> Get-Process -Name powershell | Format-Table -Wrap -AutoSize -Property Name,Id,Company,Path Name Id Company Path ---- -- ------- ---- powershell 2836 Microsoft Corporation C:\Program Files\Windows PowerShell\v1.0\ powershell.exe
如果你先指定最寬的列,則某些列可能無法顯示,因此最安全的做法是先指定最小的數據元素。在下面的示例中,我們首先指定特別寬的路徑元素,甚至使用自動換行,但仍丟失了最后的名稱列:
PS> Get-Process -Name powershell | Format-Table -Wrap -AutoSize -Property Path,Id,Company,Name WARNING: column "Name" does not fit into the display and was removed. Path Id Company ---- -- ------- C:\Program Files\Windows PowerShell\v1.0\powershell.exe 2836 Microsoft Corporation
關于使用Format-Table去顯示輸出信息時出錯怎么解決就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。