Skip to content

Instantly share code, notes, and snippets.

@clemmesserli
Created May 1, 2020 04:25
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 clemmesserli/d4d22dfaf808b688151270f907f05a85 to your computer and use it in GitHub Desktop.
Save clemmesserli/d4d22dfaf808b688151270f907f05a85 to your computer and use it in GitHub Desktop.
Ways to get latest version of PowerShell
#Ref: https://www.thomasmaurer.ch/2019/07/how-to-install-and-update-powershell-7/
Windows:
iex "& { $(irm https://aka.ms/install-powershell.ps1) } -UseMSI -Preview"
Linux:
wget https://aka.ms/install-powershell.sh; sudo bash install-powershell.sh -preview; rm install-powershell.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment