Skip to content

Instantly share code, notes, and snippets.

@ishu3101
Created September 17, 2016 10:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ishu3101/d2afbd8bbf4045b68167b7e25cfa6a5c to your computer and use it in GitHub Desktop.
Save ishu3101/d2afbd8bbf4045b68167b7e25cfa6a5c to your computer and use it in GitHub Desktop.
List the most popular Modules in the Powershell Gallery
Find-Module |
Sort-Object @{ Expression = { [int]$_.AdditionalMetadata.downloadCount }; Descending = $true } |
Select-Object @{Label = 'DownloadCount'; Expression = {[int]$_.AdditionalMetadata.downloadCount}}, Name, Version, Author, ProjectUri, CompanyName, PublishedDate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment