All Registry-Installation Places and download via powershell

This page summarizes the projects mentioned and recommended in the original post on /r/PowerShell

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
  • powershell

    When I tested this script years ago, it generated more accurate licensed software install data, than even the SCCM database via cmdlets: https://github.com/mbarr564/powershell/blob/master/Export-MatchingSoftware.ps1

  • PowerShell

    PowerShell for every system!

    $baseUri = 'https://github.com/PowerShell/PowerShell/releases/download' $files = @( @{ Uri = "$baseUri/v7.3.0-preview.5/PowerShell-7.3.0-preview.5-win-x64.msi" OutFile = 'PowerShell-7.3.0-preview.5-win-x64.msi' }, @{ Uri = "$baseUri/v7.3.0-preview.5/PowerShell-7.3.0-preview.5-win-x64.zip" OutFile = 'PowerShell-7.3.0-preview.5-win-x64.zip' }, @{ Uri = "$baseUri/v7.2.5/PowerShell-7.2.5-win-x64.msi" OutFile = 'PowerShell-7.2.5-win-x64.msi' }, @{ Uri = "$baseUri/v7.2.5/PowerShell-7.2.5-win-x64.zip" OutFile = 'PowerShell-7.2.5-win-x64.zip' } ) $jobs = @() foreach ($file in $files) { $jobs += Start-ThreadJob -Name $file.OutFile -ScriptBlock { $params = $using:file Invoke-WebRequest @params } } Write-Host "Downloads started..." Wait-Job -Job $jobs foreach ($job in $jobs) { Receive-Job -Job $job }

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts