PowerShell notes

From Reboil

Baltakatei`s notes for Microsoft Windows 10 PowerShell.

Stats

Useful commands

List top 10 largest files in a directory reursively.

PS C:\> Get-ChildItem -Path C:\Users\ -Recurse -Force| sort -descending -property length | select -first 50 FullName, Length

History

See also


External links

References


Footnotes


Comments