Created
May 1, 2020 04:25
-
-
Save clemmesserli/d4d22dfaf808b688151270f907f05a85 to your computer and use it in GitHub Desktop.
Ways to get latest version of PowerShell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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