guyrleech

Get URL for Latest PowerShell 7.4 LTS MSI installer

Jun 30th, 2025
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PowerShell 0.62 KB | Software | 0 0
  1. ## query Github to get download URL of latest LTS version of PowerShell 7.x
  2. ## if downloading from this link with WindowsPowerShell set $ProgressPreference to 'SilentlyContinue' otherwise if script output visible, download will be slow
  3.  
  4. ((Invoke-RestMethod -Uri "https://api.github.com/repos/PowerShell/PowerShell/releases" -UseBasicParsing|Where-Object { $_.tag_name -match "v7\.4\.\d+" -and $_.prerelease -eq $false } | Sort-Object -Property published_at -Descending|select -first 1).assets | Where-Object name -match "PowerShell-7\.4\.\d+-win-x64.msi"|Sort-Object -property created_at -desc|select -first 1).browser_download_url
Add Comment
Please, Sign In to add comment