Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Sorting of PowerShell objects (combined with hash tables)

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/03 Report--

You can sort different attributes in a different order by using a hash table array.

Get-ChildItem | Sort-Object-Property @ {Expression = 'LastWriteTime'; Descending = $true}, @ {Expression =' Name'; Ascending = $true} | Format-Table-Property LastWriteTime, Name

To improve readability, you can put the hash table into a separate variable:

$order = @ (@ {Expression = 'LastWriteTime'; Descending = $true} @ {Expression =' Name'; Ascending = $true}) Get-ChildItem | Sort-Object $order | Format-Table LastWriteTime, Name

The keys for sorting in the hash table can be abbreviated as follows:

Sort-Object @ {e = 'LastWriteTime'; d = $true}, @ {e =' Name'; a = $true}

You can also follow the official Wechat account below for more information.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report