Last active
December 8, 2019 03:08
-
-
Save juliostanley/d4f12c102907eb98c9a51b444ef004cf to your computer and use it in GitHub Desktop.
Install 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
# This is for pwsh-preview. Remove -preview for pwsh | |
# https://www.thomasmaurer.ch/2019/07/how-to-install-and-update-powershell-7/ | |
iex "& { $(irm https://aka.ms/install-powershell.ps1) } -UseMSI -Preview" | |
# https://www.thomasmaurer.ch/2019/02/update-powershellget-and-packagemanagement/ |
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
# This is for pwsh-preview. Remove -preview for pwsh | |
# https://www.thomasmaurer.ch/2019/07/how-to-install-and-update-powershell-7/ | |
wget https://aka.ms/install-powershell.sh; sudo bash install-powershell.sh -preview; rm install-powershell.sh | |
# https://www.thomasmaurer.ch/2019/02/update-powershellget-and-packagemanagement/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment