Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ## query Github to get download URL of latest LTS version of PowerShell 7.x
- ## if downloading from this link with WindowsPowerShell set $ProgressPreference to 'SilentlyContinue' otherwise if script output visible, download will be slow
- ((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