Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
description: Information about installing PowerShell on Windows
ms.date: 09/23/2021
ms.date: 10/14/2021
title: Installing PowerShell on Windows
---
# Installing PowerShell on Windows
Expand Down Expand Up @@ -31,8 +31,8 @@ click to expand it.

The MSI file looks like `PowerShell-<version>-win-<os-arch>.msi`. For example:

- [PowerShell-7.1.4-win-x64.msi][x64msi]
- [PowerShell-7.1.4-win-x86.msi][x86msi]
- [PowerShell-7.1.5-win-x64.msi][x64msi]
- [PowerShell-7.1.5-win-x86.msi][x86msi]

Once downloaded, double-click the installer and follow the prompts.

Expand Down Expand Up @@ -96,7 +96,7 @@ installation options:
The following example shows how to silently install PowerShell with all the install options enabled.

```powershell
msiexec.exe /package PowerShell-7.1.4-win-x64.msi /quiet ADD_EXPLORER_CONTEXT_MENU_OPENPOWERSHELL=1 ENABLE_PSREMOTING=1 REGISTER_MANIFEST=1
msiexec.exe /package PowerShell-7.1.5-win-x64.msi /quiet ADD_EXPLORER_CONTEXT_MENU_OPENPOWERSHELL=1 ENABLE_PSREMOTING=1 REGISTER_MANIFEST=1
```

For a full list of command-line options for `Msiexec.exe`, see
Expand All @@ -107,10 +107,10 @@ For a full list of command-line options for `Msiexec.exe`, see
PowerShell binary ZIP archives are provided to enable advanced deployment scenarios. Download one of
the following ZIP archives from the [current release][current] page.

- [PowerShell-7.1.4-win-x64.zip][x64zip]
- [PowerShell-7.1.4-win-x86.zip][x86zip]
- [PowerShell-7.1.4-win-arm64.zip][arm64zip]
- [PowerShell-7.1.4-win-arm32.zip][arm32zip]
- [PowerShell-7.1.5-win-x64.zip][x64zip]
- [PowerShell-7.1.5-win-x86.zip][x86zip]
- [PowerShell-7.1.5-win-arm64.zip][arm64zip]
- [PowerShell-7.1.5-win-arm32.zip][arm32zip]

Depending on how you download the file you may need to unblock the file using the `Unblock-File`
cmdlet. Unzip the contents to the location of your choice and run `pwsh.exe` from there. Unlike
Expand All @@ -129,7 +129,7 @@ Windows 10 IoT Enterprise comes with Windows PowerShell, which we can use to dep
```powershell
# Replace the placeholder information for the following variables:
$deviceip = '<device ip address'
$zipfile = 'PowerShell-7.1.4-win-Arm64.zip'
$zipfile = 'PowerShell-7.1.5-win-Arm64.zip'
$downloadfolder = 'u:\users\administrator\Downloads' # The download location is local to the device.
# There should be enough space for the zip file and the unzipped contents.

Expand All @@ -142,10 +142,10 @@ Copy-Item $zipfile -Destination $downloadfolder -ToSession $S
#Connect to the device and expand the archive
Enter-PSSession $S
Set-Location u:\users\administrator\Downloads
Expand-Archive .\PowerShell-7.1.4-win-Arm64.zip
Expand-Archive .\PowerShell-7.1.5-win-Arm64.zip

# Set up remoting to PowerShell 7
Set-Location .\PowerShell-7.1.4-win-Arm64
Set-Location .\PowerShell-7.1.5-win-Arm64
# Be sure to use the -PowerShellHome parameter otherwise it tries to create a new
# endpoint with Windows PowerShell 5.1
.\Install-PowerShellRemoting.ps1 -PowerShellHome .
Expand All @@ -157,7 +157,7 @@ PowerShell has to restart WinRM. Now you can connect to PowerShell 7 endpoint on
```powershell

# Be sure to use the -Configuration parameter. If you omit it, you connect to Windows PowerShell 5.1
Enter-PSSession -ComputerName $deviceIp -Credential Administrator -Configuration PowerShell.7.1.4
Enter-PSSession -ComputerName $deviceIp -Credential Administrator -Configuration PowerShell.7.1.5
```

## Deploying on Windows 10 IoT Core
Expand Down Expand Up @@ -206,15 +206,15 @@ Deploy PowerShell to Nano Server using the following steps.
# Replace the placeholder information for the following variables:
$ipaddr = '<Nano Server IP address>'
$credential = Get-Credential # <An Administrator account on the system>
$zipfile = 'PowerShell-7.1.4-win-x64.zip'
$zipfile = 'PowerShell-7.1.5-win-x64.zip'
# Connect to the built-in instance of Windows PowerShell
$session = New-PSSession -ComputerName $ipaddr -Credential $credential
# Copy the file to the Nano Server instance
Copy-Item $zipfile c:\ -ToSession $session
# Enter the interactive remote session
Enter-PSSession $session
# Extract the ZIP file
Expand-Archive -Path C:\PowerShell-7.1.4-win-x64.zip -DestinationPath 'C:\Program Files\PowerShell 7'
Expand-Archive -Path C:\PowerShell-7.1.5-win-x64.zip -DestinationPath 'C:\Program Files\PowerShell 7'
```

If you want WSMan-based remoting, follow the instructions to create a remoting endpoint using the
Expand Down Expand Up @@ -253,7 +253,7 @@ winget search Microsoft.PowerShell
```Output
Name Id Version Source
----------------------------------------------------------------
PowerShell Microsoft.PowerShell 7.1.4.0 winget
PowerShell Microsoft.PowerShell 7.1.5.0 winget
Powershell Preview Microsoft.PowerShell.Preview 7.2.0.10 winget
```

Expand Down Expand Up @@ -335,9 +335,9 @@ cannot support those methods.
[store-app]: https://www.microsoft.com/store/apps/9MZ1SNWT0N5D
[winget]: /windows/package-manager/winget
[wsman-remoting]: ../learn/remoting/WSMan-Remoting-in-PowerShell-Core.md
[arm32zip]: https://github.com/PowerShell/PowerShell/releases/download/v7.1.4/PowerShell-7.1.4-win-arm32.zip
[arm64zip]: https://github.com/PowerShell/PowerShell/releases/download/v7.1.4/PowerShell-7.1.4-win-arm64.zip
[x64msi]: https://github.com/PowerShell/PowerShell/releases/download/v7.1.4/PowerShell-7.1.4-win-x64.msi
[x64zip]: https://github.com/PowerShell/PowerShell/releases/download/v7.1.4/PowerShell-7.1.4-win-x64.zip
[x86msi]: https://github.com/PowerShell/PowerShell/releases/download/v7.1.4/PowerShell-7.1.4-win-x86.msi
[x86zip]: https://github.com/PowerShell/PowerShell/releases/download/v7.1.4/PowerShell-7.1.4-win-x86.zip
[arm32zip]: https://github.com/PowerShell/PowerShell/releases/download/v7.1.5/PowerShell-7.1.5-win-arm32.zip
[arm64zip]: https://github.com/PowerShell/PowerShell/releases/download/v7.1.5/PowerShell-7.1.5-win-arm64.zip
[x64msi]: https://github.com/PowerShell/PowerShell/releases/download/v7.1.5/PowerShell-7.1.5-win-x64.msi
[x64zip]: https://github.com/PowerShell/PowerShell/releases/download/v7.1.5/PowerShell-7.1.5-win-x64.zip
[x86msi]: https://github.com/PowerShell/PowerShell/releases/download/v7.1.5/PowerShell-7.1.5-win-x86.msi
[x86zip]: https://github.com/PowerShell/PowerShell/releases/download/v7.1.5/PowerShell-7.1.5-win-x86.zip
26 changes: 13 additions & 13 deletions reference/docs-conceptual/install/Installing-PowerShell-on-macOS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
description: Information about installing PowerShell on macOS
ms.date: 09/22/2021
ms.date: 10/14/2021
title: Installing PowerShell on macOS
---

Expand Down Expand Up @@ -132,14 +132,14 @@ PowerShell 7.2 addes support for the Apple M1 processor. Download the install pa
- PowerShell 7.2-preview.10
- x64 processors - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.0-preview.10/powershell-7.2.0-preview.10-osx-x64.pkg`
- M1 processors - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.0-preview.10/powershell-7.2.0-preview.10-osx-arm64.pkg`
- PowerShell 7.1.4 - `https://github.com/PowerShell/PowerShell/releases/download/v7.1.4/powershell-7.1.4-osx-x64.pkg`
- PowerShell 7.0.7 - `https://github.com/PowerShell/PowerShell/releases/download/v7.0.7/powershell-7.0.7-osx-x64.pkg`
- PowerShell 7.1.5 - `https://github.com/PowerShell/PowerShell/releases/download/v7.1.5/powershell-7.1.5-osx-x64.pkg`
- PowerShell 7.0.8 - `https://github.com/PowerShell/PowerShell/releases/download/v7.0.8/powershell-7.0.8-osx-x64.pkg`

You can double-click the file and follow the prompts, or install it from the terminal using the
following commands. Change the name of the file to match the file you downloaded.

```sh
sudo installer -pkg powershell-7.1.4-osx-x64.pkg -target /
sudo installer -pkg powershell-7.1.5-osx-x64.pkg -target /
```

Install [OpenSSL](#installing-dependencies). OpenSSL is needed for PowerShell remoting and CIM
Expand Down Expand Up @@ -184,27 +184,27 @@ current versions are:
- PowerShell 7.2-preview.10
- x64 processors - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.0-preview.10/powershell-7.2.0-preview.10-osx-x64.tar.gz`
- M1 processors - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.0-preview.10/powershell-7.2.0-preview.10-osx-arm64.tar.gz`
- PowerShell 7.1.4 - `https://github.com/PowerShell/PowerShell/releases/download/v7.1.4/powershell-7.1.4-osx-x64.tar.gz`
- PowerShell 7.0.7 - `https://github.com/PowerShell/PowerShell/releases/download/v7.0.7/powershell-7.0.7-osx-x64.tar.gz`
- PowerShell 7.1.5 - `https://github.com/PowerShell/PowerShell/releases/download/v7.1.5/powershell-7.1.5-osx-x64.tar.gz`
- PowerShell 7.0.8 - `https://github.com/PowerShell/PowerShell/releases/download/v7.0.8/powershell-7.0.8-osx-x64.tar.gz`

Use the following commands to install PowerShell from the binary archive. Change the download URL to
match the version you want to install.

```sh
# Download the powershell '.tar.gz' archive
curl -L -o /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.1.4/powershell-7.1.4-osx-x64.tar.gz
curl -L -o /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.1.5/powershell-7.1.5-osx-x64.tar.gz

# Create the target folder where powershell will be placed
sudo mkdir -p /usr/local/microsoft/powershell/7.1.4
sudo mkdir -p /usr/local/microsoft/powershell/7.1.5

# Expand powershell to the target folder
sudo tar zxf /tmp/powershell.tar.gz -C /usr/local/microsoft/powershell/7.1.4
sudo tar zxf /tmp/powershell.tar.gz -C /usr/local/microsoft/powershell/7.1.5

# Set execute permissions
sudo chmod +x /usr/local/microsoft/powershell/7.1.4/pwsh
sudo chmod +x /usr/local/microsoft/powershell/7.1.5/pwsh

# Create the symbolic link that points to pwsh
sudo ln -s /usr/local/microsoft/powershell/7.1.4/pwsh /usr/local/bin/pwsh
sudo ln -s /usr/local/microsoft/powershell/7.1.5/pwsh /usr/local/bin/pwsh
```

## Installing dependencies
Expand Down Expand Up @@ -257,7 +257,7 @@ and remove the paths using `sudo rm`.

## Paths

- `$PSHOME` is `/usr/local/microsoft/powershell/7.1.4/`
- `$PSHOME` is `/usr/local/microsoft/powershell/7.1.5/`
- User profiles will be read from `~/.config/powershell/profile.ps1`
- Default profiles will be read from `$PSHOME/profile.ps1`
- User modules will be read from `~/.local/share/powershell/Modules`
Expand All @@ -271,7 +271,7 @@ exists at `Microsoft.PowerShell_profile.ps1` in the same locations.
PowerShell respects the [XDG Base Directory Specification][xdg-bds] on macOS.

Because macOS is a derivation of BSD, the prefix `/usr/local` is used instead of `/opt`. So,
`$PSHOME` is `/usr/local/microsoft/powershell/7.1.4/`, and the symbolic link is placed at
`$PSHOME` is `/usr/local/microsoft/powershell/7.1.5/`, and the symbolic link is placed at
`/usr/local/bin/pwsh`.

## Installation support
Expand Down
6 changes: 3 additions & 3 deletions reference/docs-conceptual/install/install-alpine.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
description: Information about installing PowerShell on Alpine Linux
ms.date: 09/22/2021
ms.date: 10/14/2021
title: Installing PowerShell on Alpine Linux
---
# Installing PowerShell on Alpine Linux
Expand All @@ -22,8 +22,8 @@ Installation on Alpine is based on downloading tar.gz package from the [releases
URL to the package depends on the version of PowerShell you want to install.

- PowerShell 7.2-preview.10 - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.0-preview.10/powershell-7.2.0-preview.10-linux-alpine-x64.tar.gz`
- PowerShell 7.1 - `https://github.com/PowerShell/PowerShell/releases/download/v7.1.4/powershell-7.1.4-linux-alpine-x64.tar.gz`
- PowerShell 7.0 - `https://github.com/PowerShell/PowerShell/releases/download/v7.0.7/powershell-7.0.7-linux-alpine-x64.tar.gz`
- PowerShell 7.1 - `https://github.com/PowerShell/PowerShell/releases/download/v7.1.5/powershell-7.1.5-linux-alpine-x64.tar.gz`
- PowerShell 7.0 - `https://github.com/PowerShell/PowerShell/releases/download/v7.0.8/powershell-7.0.8-linux-alpine-x64.tar.gz`

Then, in the terminal, execute the following shell commands to install PowerShell 7.2-preview.10:

Expand Down
14 changes: 7 additions & 7 deletions reference/docs-conceptual/install/install-centos.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
description: Information about installing PowerShell on CentOS
ms.date: 09/22/2021
ms.date: 10/14/2021
title: Installing PowerShell on CentOS
---
# Installing PowerShell on CentOS
Expand Down Expand Up @@ -48,12 +48,12 @@ PowerShell 7.2 is distributed as a universal RPM package. Previous versions of P
separate package for each OS. Download the RPM package you need onto your CentOS machine.

- PowerShell 7.2-preview.10 - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.0-preview.10/powershell-preview-7.2.0_preview.10-1.rh.x86_64.rpm`
- PowerShell 7.1.4
- CentOS 7 - `https://github.com/PowerShell/PowerShell/releases/download/v7.1.4/powershell-7.1.4-1.rhel.7.x86_64.rpm`
- CentOS 8 - `https://github.com/PowerShell/PowerShell/releases/download/v7.1.4/powershell-7.1.4-1.centos.8.x86_64.rpm`
- PowerShell 7.0.7
- CentOS 7 - `https://github.com/PowerShell/PowerShell/releases/download/v7.1.4/powershell-7.0.7-1.rhel.7.x86_64.rpm`
- CentOS 8 - `https://github.com/PowerShell/PowerShell/releases/download/v7.1.4/powershell-7.0.7-1.centos.8.x86_64.rpm`
- PowerShell 7.1.5
- CentOS 7 - `https://github.com/PowerShell/PowerShell/releases/download/v7.1.5/powershell-7.1.5-1.rhel.7.x86_64.rpm`
- CentOS 8 - `https://github.com/PowerShell/PowerShell/releases/download/v7.1.5/powershell-7.1.5-1.centos.8.x86_64.rpm`
- PowerShell 7.0.8
- CentOS 7 - `https://github.com/PowerShell/PowerShell/releases/download/v7.1.5/powershell-7.0.8-1.rhel.7.x86_64.rpm`
- CentOS 8 - `https://github.com/PowerShell/PowerShell/releases/download/v7.1.5/powershell-7.0.8-1.centos.8.x86_64.rpm`

Change the URL in the following shell commands to match the version you need.

Expand Down
14 changes: 7 additions & 7 deletions reference/docs-conceptual/install/install-debian.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
description: Information about installing PowerShell on Debian Linux
ms.date: 09/22/2021
ms.date: 10/14/2021
title: Installing PowerShell on Debian Linux
---
# Installing PowerShell on Debian Linux
Expand Down Expand Up @@ -30,12 +30,12 @@ package from the [releases][releases] page onto the Debian 10 machine. The link
version is:

- PowerShell 7.2-preview.10 - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.0-preview.10/powershell-preview_7.2.0-preview.10-1.deb_amd64.deb`
- PowerShell 7.1.4
- Debian 10 - `https://github.com/PowerShell/PowerShell/releases/download/v7.1.4/powershell_7.1.4-1.debian.10_amd64.deb`
- Debian 9 - `https://github.com/PowerShell/PowerShell/releases/download/v7.1.4/powershell_7.1.4-1.debian.9_amd64.deb`
- PowerShell 7.0.7
- Debian 10 - `https://github.com/PowerShell/PowerShell/releases/download/v7.0.7/powershell-lts_7.0.7-1.debian.10_amd64.deb`
- Debian 9 - `https://github.com/PowerShell/PowerShell/releases/download/v7.0.7/powershell-lts_7.0.7-1.debian.9_amd64.deb`
- PowerShell 7.1.5
- Debian 10 - `https://github.com/PowerShell/PowerShell/releases/download/v7.1.5/powershell_7.1.5-1.debian.10_amd64.deb`
- Debian 9 - `https://github.com/PowerShell/PowerShell/releases/download/v7.1.5/powershell_7.1.5-1.debian.9_amd64.deb`
- PowerShell 7.0.8
- Debian 10 - `https://github.com/PowerShell/PowerShell/releases/download/v7.0.8/powershell-lts_7.0.8-1.debian.10_amd64.deb`
- Debian 9 - `https://github.com/PowerShell/PowerShell/releases/download/v7.0.8/powershell-lts_7.0.8-1.debian.9_amd64.deb`

## Installation on Debian 10 via Package Repository

Expand Down
8 changes: 4 additions & 4 deletions reference/docs-conceptual/install/install-fedora.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
description: Information about installing PowerShell on Fedora Linux
ms.date: 09/22/2021
ms.date: 10/14/2021
title: Installing PowerShell on Fedora Linux
---
# Installing PowerShell on Fedora Linux
Expand Down Expand Up @@ -50,8 +50,8 @@ contains the dependencies needed by the package. Download the RPM package from t
[releases][releases] page onto your openSUSE computer. The links to the current versions are:

- PowerShell 7.2-preview.10 - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.0-preview.10/powershell-preview-7.2.0_preview.10-1.rh.x86_64.rpm`
- PowerShell 7.1.4 - `https://github.com/PowerShell/PowerShell/releases/download/v7.1.4/powershell-7.1.4-1.rhel.7.x86_64.rpm`
- PowerShell 7.0.7 - `https://github.com/PowerShell/PowerShell/releases/download/v7.0.7/powershell-7.0.7-1.rhel.7.x86_64.rpm`
- PowerShell 7.1.5 - `https://github.com/PowerShell/PowerShell/releases/download/v7.1.5/powershell-7.1.5-1.rhel.7.x86_64.rpm`
- PowerShell 7.0.8 - `https://github.com/PowerShell/PowerShell/releases/download/v7.0.8/powershell-7.0.8-1.rhel.7.x86_64.rpm`

The following shell command installs PowerShell 7.2-preview.10:

Expand All @@ -64,7 +64,7 @@ PowerShell version that you want to install.

```sh
sudo dnf install compat-openssl10
sudo dnf install https://github.com/PowerShell/PowerShell/releases/download/v7.1.4/powershell-7.1.4-1.rhel.7.x86_64.rpm
sudo dnf install https://github.com/PowerShell/PowerShell/releases/download/v7.1.5/powershell-7.1.5-1.rhel.7.x86_64.rpm
```

## Uninstall PowerShell from Fedora
Expand Down
10 changes: 5 additions & 5 deletions reference/docs-conceptual/install/install-other-linux.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
description: Information about installing PowerShell on various Linux distributions
ms.date: 09/22/2021
ms.date: 10/14/2021
title: Alternate ways to install PowerShell on Linux
---
# Alternate ways to install PowerShell on Linux
Expand Down Expand Up @@ -115,16 +115,16 @@ Linux `tar.gz` archive.
The following example shows the steps for installing the x64 binary archive. You must choose the
correct binary archive that matches the processor type for your platform.

- powershell-7.1.4-linux-arm32.tar.gz
- powershell-7.1.4-linux-arm64.tar.gz
- powershell-7.1.4-linux-x64.tar.gz
- powershell-7.1.5-linux-arm32.tar.gz
- powershell-7.1.5-linux-arm64.tar.gz
- powershell-7.1.5-linux-x64.tar.gz

Use the following shell commands to download and install PowerShell from the `tar.gz` binary
archive. Change the URL to match the version of PowerShell you want to install.

```sh
# Download the powershell '.tar.gz' archive
curl -L -o /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.1.4/powershell-7.1.4-linux-x64.tar.gz
curl -L -o /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.1.5/powershell-7.1.5-linux-x64.tar.gz

# Create the target folder where powershell will be placed
sudo mkdir -p /opt/microsoft/powershell/7
Expand Down
10 changes: 5 additions & 5 deletions reference/docs-conceptual/install/install-raspbian.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
description: Information about installing PowerShell on Raspberry Pi OS
ms.date: 09/22/2021
ms.date: 10/14/2021
title: Installing PowerShell on Raspberry Pi OS
---
# Installing PowerShell on Raspberry Pi OS
Expand Down Expand Up @@ -28,8 +28,8 @@ Download the tar.gz package from the [releases][releases] page onto your Raspber
links to the current versions are:

- PowerShell 7.2-preview.10 - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.0-preview.10/powershell-7.2.0-preview.10-linux-arm32.tar.gz`
- PowerShell 7.1.4 - `https://github.com/PowerShell/PowerShell/releases/download/v7.1.4/powershell-7.1.4-linux-arm32.tar.gz`
- PowerShell 7.0.7 - `https://github.com/PowerShell/PowerShell/releases/download/v7.0.7/powershell-7.0.7-linux-arm32.tar.gz`
- PowerShell 7.1.5 - `https://github.com/PowerShell/PowerShell/releases/download/v7.1.5/powershell-7.1.5-linux-arm32.tar.gz`
- PowerShell 7.0.8 - `https://github.com/PowerShell/PowerShell/releases/download/v7.0.8/powershell-7.0.8-linux-arm32.tar.gz`

Use the following shell commands to download and install the package. Change the URL to match the
PowerShell version that you want to install.
Expand All @@ -49,13 +49,13 @@ sudo apt-get install '^libssl1.0.[0-9]$' libunwind8 -y
# Download and extract PowerShell

# Grab the latest tar.gz
wget https://github.com/PowerShell/PowerShell/releases/download/v7.1.4/powershell-7.1.4-linux-arm32.tar.gz
wget https://github.com/PowerShell/PowerShell/releases/download/v7.1.5/powershell-7.1.5-linux-arm32.tar.gz

# Make folder to put powershell
mkdir ~/powershell

# Unpack the tar.gz file
tar -xvf ./powershell-7.1.4-linux-arm32.tar.gz -C ~/powershell
tar -xvf ./powershell-7.1.5-linux-arm32.tar.gz -C ~/powershell

# Start PowerShell
~/powershell/pwsh
Expand Down
Loading