Skip to content

Commit 78cfafe

Browse files
Merge pull request #13027 from MicrosoftDocs/main
Auto Publish – main to live - 2026-05-21 22:00 UTC
2 parents 130f615 + 258b1ca commit 78cfafe

13 files changed

Lines changed: 144 additions & 104 deletions

reference/docs-conceptual/install/PowerShell-Support-Lifecycle.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: Details the policies governing support for PowerShell.
3-
ms.date: 04/29/2026
3+
ms.date: 05/20/2026
44
ms.topic: lifecycle
55
title: PowerShell Support Lifecycle
66
---
@@ -12,13 +12,13 @@ There are multiple versions of PowerShell 7 that can be installed.
1212
releases can contain critical fixes, innovations, and new features. Microsoft supports a Stable
1313
release for about six months after the next LTS release.
1414

15-
The current Stable release is PowerShell 7.5.6.
15+
The current Stable release is PowerShell 7.5.7.
1616

1717
- **Long Term Servicing (LTS) release** - An LTS release of PowerShell is an LTS release of .NET.
1818
Updates to an LTS release only contain critical security updates and servicing fixes that are
1919
designed to minimize impact on existing workloads.
2020

21-
The current LTS release is PowerShell 7.6.1. The previous LTS release, PowerShell 7.4.15, is
21+
The current LTS release is PowerShell 7.6.2. The previous LTS release, PowerShell 7.4.16, is
2222
still supported until 10-Nov-2026.
2323

2424
- **Preview release** - A preview release is a version of PowerShell that's currently in

reference/docs-conceptual/install/alternate-install-methods.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: Alternate ways to install PowerShell on non-Windows platforms.
3-
ms.date: 04/21/2026
3+
ms.date: 05/20/2026
44
title: Alternate ways to install PowerShell
55
---
66
# Alternate ways to install PowerShell
@@ -177,16 +177,16 @@ install the necessary dependencies for the target OS in separate steps.
177177
The following example shows the steps for installing the x64 binary archive. You must choose the
178178
correct binary archive that matches the processor type for your platform.
179179

180-
- `powershell-7.6.1-linux-arm32.tar.gz`
181-
- `powershell-7.6.1-linux-arm64.tar.gz`
182-
- `powershell-7.6.1-linux-x64.tar.gz`
180+
- `powershell-7.6.2-linux-arm32.tar.gz`
181+
- `powershell-7.6.2-linux-arm64.tar.gz`
182+
- `powershell-7.6.2-linux-x64.tar.gz`
183183

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

187187
```sh
188188
# Download the powershell '.tar.gz' archive
189-
curl -L -o /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.6.1/powershell-7.6.1-linux-x64.tar.gz
189+
curl -L -o /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.6.2/powershell-7.6.2-linux-x64.tar.gz
190190

191191
# Create the target folder where powershell will be placed
192192
sudo mkdir -p /opt/microsoft/powershell/7

reference/docs-conceptual/install/community-support.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: PowerShell can run on Linux distributions that aren't officially supported by Microsoft.
3-
ms.date: 04/21/2026
3+
ms.date: 05/20/2026
44
title: Community support for PowerShell on Linux
55
---
66
# Community support for PowerShell on Linux
@@ -82,14 +82,14 @@ package from the [releases][09] page onto your Raspberry Pi computer. The links
8282
versions are:
8383

8484
- PowerShell 7.6 - latest LTS release
85-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.6.1/powershell-7.6.1-linux-arm32.tar.gz`
86-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.6.1/powershell-7.6.1-linux-arm64.tar.gz`
85+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.6.2/powershell-7.6.2-linux-arm32.tar.gz`
86+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.6.2/powershell-7.6.2-linux-arm64.tar.gz`
8787
- PowerShell 7.5 - latest stable release
88-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.5.6/powershell-7.5.6-linux-arm32.tar.gz`
89-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.5.6/powershell-7.5.6-linux-arm64.tar.gz`
88+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.5.7/powershell-7.5.7-linux-arm32.tar.gz`
89+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.5.7/powershell-7.5.7-linux-arm64.tar.gz`
9090
- PowerShell 7.4 - previous LTS release
91-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.15/powershell-7.4.15-linux-arm32.tar.gz`
92-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.15/powershell-7.4.15-linux-arm64.tar.gz`
91+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.16/powershell-7.4.16-linux-arm32.tar.gz`
92+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.16/powershell-7.4.16-linux-arm64.tar.gz`
9393

9494
Use the following shell commands to download and install the package. This script detects whether
9595
you're running a 32-bit or 64-bit OS and installs the latest stable version of PowerShell for that

reference/docs-conceptual/install/install-alpine.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: How to install PowerShell on Alpine Linux
3-
ms.date: 04/21/2026
3+
ms.date: 05/20/2026
44
title: Install PowerShell 7 on Alpine Linux
55
---
66
# Install PowerShell 7 on Alpine Linux
@@ -19,9 +19,9 @@ with a previous version, reinstall the previous version using the [binary archiv
1919
On Alpine Linux, PowerShell is installed from the `tar.gz` package downloaded from the
2020
[releases][01] page. Select the URL of the package version you want to install.
2121

22-
- PowerShell 7.6 (LTS) - `https://github.com/PowerShell/PowerShell/releases/download/v7.6.1/powershell-7.6.1-linux-musl-x64.tar.gz`
23-
- PowerShell 7.5 - `https://github.com/PowerShell/PowerShell/releases/download/v7.5.6/powershell-7.5.6-linux-musl-x64.tar.gz`
24-
- PowerShell 7.4 (LTS) - `https://github.com/PowerShell/PowerShell/releases/download/v7.4.15/powershell-7.4.15-linux-musl-x64.tar.gz`
22+
- PowerShell 7.6 (LTS) - `https://github.com/PowerShell/PowerShell/releases/download/v7.6.2/powershell-7.6.2-linux-musl-x64.tar.gz`
23+
- PowerShell 7.5 - `https://github.com/PowerShell/PowerShell/releases/download/v7.5.7/powershell-7.5.7-linux-musl-x64.tar.gz`
24+
- PowerShell 7.4 (LTS) - `https://github.com/PowerShell/PowerShell/releases/download/v7.4.16/powershell-7.4.16-linux-musl-x64.tar.gz`
2525

2626
Use the following shell commands to install PowerShell 7:
2727

@@ -48,7 +48,7 @@ apk -X https://dl-cdn.alpinelinux.org/alpine/edge/main add --no-cache \
4848
openssh-client \
4949

5050
# Download the powershell '.tar.gz' archive
51-
curl -L https://github.com/PowerShell/PowerShell/releases/download/v7.6.1/powershell-7.6.1-linux-musl-x64.tar.gz -o /tmp/powershell.tar.gz
51+
curl -L https://github.com/PowerShell/PowerShell/releases/download/v7.6.2/powershell-7.6.2-linux-musl-x64.tar.gz -o /tmp/powershell.tar.gz
5252

5353
# Create the target folder where powershell will be placed
5454
sudo mkdir -p /opt/microsoft/powershell/7

reference/docs-conceptual/install/install-debian.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: How to install PowerShell on Debian Linux
3-
ms.date: 04/21/2026
3+
ms.date: 05/20/2026
44
title: Install PowerShell 7 on Debian
55
---
66
# Install PowerShell 7 on Debian
@@ -73,11 +73,11 @@ Download the universal package from the GitHub releases page. Choose the link fo
7373
want to install.
7474

7575
- PowerShell 7.6 (LTS) universal package for supported versions of Debian
76-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.6.1/powershell_7.6.1-1.deb_amd64.deb`
76+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.6.2/powershell_7.6.2-1.deb_amd64.deb`
7777
- PowerShell 7.5 universal package for supported versions of Debian
78-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.5.6/powershell_7.5.6-1.deb_amd64.deb`
78+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.5.7/powershell_7.5.7-1.deb_amd64.deb`
7979
- PowerShell 7.4 (LTS) universal package for supported versions of Debian
80-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.15/powershell_7.4.15-1.deb_amd64.deb`
80+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.16/powershell_7.4.16-1.deb_amd64.deb`
8181

8282
The following shell script downloads and installs the current release of PowerShell. You can
8383
change the URL to download the version of PowerShell that you want to install.
@@ -94,17 +94,17 @@ sudo apt-get update
9494
sudo apt-get install -y wget
9595

9696
# Download the PowerShell package file
97-
wget https://github.com/PowerShell/PowerShell/releases/download/v7.6.1/powershell_7.6.1-1.deb_amd64.deb
97+
wget https://github.com/PowerShell/PowerShell/releases/download/v7.6.2/powershell_7.6.2-1.deb_amd64.deb
9898

9999
###################################
100100
# Install the PowerShell package
101-
sudo dpkg -i powershell_7.6.1-1.deb_amd64.deb
101+
sudo dpkg -i powershell_7.6.2-1.deb_amd64.deb
102102

103103
# Resolve missing dependencies and finish the install (if necessary)
104104
sudo apt-get install -f
105105

106106
# Delete the downloaded package file
107-
rm powershell_7.6.1-1.deb_amd64.deb
107+
rm powershell_7.6.2-1.deb_amd64.deb
108108

109109
# Start PowerShell
110110
pwsh

reference/docs-conceptual/install/install-powershell-on-macos.md

Lines changed: 32 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: How to install PowerShell on macOS
3-
ms.date: 04/21/2026
3+
ms.date: 05/20/2026
44
title: Install PowerShell 7 on macOS
55
---
66

@@ -26,17 +26,23 @@ Download the install package from the [releases][04] page. Select the package ve
2626
install.
2727

2828
- PowerShell 7.6 (LTS)
29-
- Arm64 processors - [powershell-7.6.1-osx-arm64.pkg][13]
30-
- x64 processors - [powershell-7.6.1-osx-x64.pkg][15]
29+
- Arm64 processors - [powershell-7.6.2-osx-arm64.pkg][13]
30+
- x64 processors - [powershell-7.6.2-osx-x64.pkg][15]
3131
- PowerShell 7.5
32-
- Arm64 processors - [powershell-7.5.6-osx-arm64.pkg][09]
33-
- x64 processors - [powershell-7.5.6-osx-x64.pkg][11]
32+
- Arm64 processors - [powershell-7.5.7-osx-arm64.pkg][09]
33+
- x64 processors - [powershell-7.5.7-osx-x64.pkg][11]
3434
- PowerShell 7.4 (LTS)
35-
- Arm64 processors - [powershell-7.4.15-osx-arm64.pkg][05]
36-
- x64 processors - [powershell-7.4.15-osx-x64.pkg][07]
35+
- Arm64 processors - [powershell-7.4.16-osx-arm64.pkg][05]
36+
- x64 processors - [powershell-7.4.16-osx-x64.pkg][07]
3737

3838
There are two ways to install PowerShell using the downloaded package.
3939

40+
Beginning with the May 2026 releases of PowerShell, the macOS PKG package is notarized and signed by
41+
Microsoft. To install the package, download the PKG file and open it.
42+
43+
For previous versions of PowerShell, use the following instructions to bypass the Gatekeeper checks
44+
and install the package.
45+
4046
#### Install the package using Finder
4147

4248
Install PowerShell using Finder:
@@ -105,21 +111,21 @@ Download the install package from the [releases][04] page onto your Mac. Select
105111
you want to install.
106112

107113
- PowerShell 7.6 (LTS)
108-
- Arm64 processors - [powershell-7.6.1-osx-arm64.tar.gz][14]
109-
- x64 processors - [powershell-7.6.1-osx-x64.tar.gz][16]
114+
- Arm64 processors - [powershell-7.6.2-osx-arm64.tar.gz][14]
115+
- x64 processors - [powershell-7.6.2-osx-x64.tar.gz][16]
110116
- PowerShell 7.5
111-
- Arm64 processors - [powershell-7.5.6-osx-arm64.tar.gz][10]
112-
- x64 processors - [powershell-7.5.6-osx-x64.tar.gz][12]
117+
- Arm64 processors - [powershell-7.5.7-osx-arm64.tar.gz][10]
118+
- x64 processors - [powershell-7.5.7-osx-x64.tar.gz][12]
113119
- PowerShell 7.4 (LTS)
114-
- Arm64 processors - [powershell-7.4.15-osx-arm64.tar.gz][06]
115-
- x64 processors - [powershell-7.4.15-osx-x64.tar.gz][08]
120+
- Arm64 processors - [powershell-7.4.16-osx-arm64.tar.gz][06]
121+
- x64 processors - [powershell-7.4.16-osx-x64.tar.gz][08]
116122

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

120126
```sh
121127
# Download the powershell '.tar.gz' archive
122-
curl -L -o /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.6.1/powershell-7.6.1-osx-arm64.tar.gz
128+
curl -L -o /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.6.2/powershell-7.6.2-osx-arm64.tar.gz
123129

124130
# Create the target folder where powershell is placed
125131
sudo mkdir -p /usr/local/microsoft/powershell/7
@@ -183,18 +189,18 @@ can't support those methods. For more information, see [Alternate ways to instal
183189
[02]: /dotnet/core/tools/global-tools
184190
[03]: alternate-install-methods.md#install-on-macos-using-homebrew
185191
[04]: https://aka.ms/powershell-release?tag=stable
186-
[05]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.15/powershell-7.4.15-osx-arm64.pkg
187-
[06]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.15/powershell-7.4.15-osx-arm64.tar.gz
188-
[07]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.15/powershell-7.4.15-osx-x64.pkg
189-
[08]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.15/powershell-7.4.15-osx-x64.tar.gz
190-
[09]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.6/powershell-7.5.6-osx-arm64.pkg
191-
[10]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.6/powershell-7.5.6-osx-arm64.tar.gz
192-
[11]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.6/powershell-7.5.6-osx-x64.pkg
193-
[12]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.6/powershell-7.5.6-osx-x64.tar.gz
194-
[13]: https://github.com/PowerShell/PowerShell/releases/download/v7.6.1/powershell-7.6.1-osx-arm64.pkg
195-
[14]: https://github.com/PowerShell/PowerShell/releases/download/v7.6.1/powershell-7.6.1-osx-arm64.tar.gz
196-
[15]: https://github.com/PowerShell/PowerShell/releases/download/v7.6.1/powershell-7.6.1-osx-x64.pkg
197-
[16]: https://github.com/PowerShell/PowerShell/releases/download/v7.6.1/powershell-7.6.1-osx-x64.tar.gz
192+
[05]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.16/powershell-7.4.16-osx-arm64.pkg
193+
[06]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.16/powershell-7.4.16-osx-arm64.tar.gz
194+
[07]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.16/powershell-7.4.16-osx-x64.pkg
195+
[08]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.16/powershell-7.4.16-osx-x64.tar.gz
196+
[09]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.7/powershell-7.5.7-osx-arm64.pkg
197+
[10]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.7/powershell-7.5.7-osx-arm64.tar.gz
198+
[11]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.7/powershell-7.5.7-osx-x64.pkg
199+
[12]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.7/powershell-7.5.7-osx-x64.tar.gz
200+
[13]: https://github.com/PowerShell/PowerShell/releases/download/v7.6.2/powershell-7.6.2-osx-arm64.pkg
201+
[14]: https://github.com/PowerShell/PowerShell/releases/download/v7.6.2/powershell-7.6.2-osx-arm64.tar.gz
202+
[15]: https://github.com/PowerShell/PowerShell/releases/download/v7.6.2/powershell-7.6.2-osx-x64.pkg
203+
[16]: https://github.com/PowerShell/PowerShell/releases/download/v7.6.2/powershell-7.6.2-osx-x64.tar.gz
198204
[17]: https://specifications.freedesktop.org/basedir/latest/
199205
[18]: https://support.apple.com/102445
200206
[19]: PowerShell-Support-Lifecycle.md

reference/docs-conceptual/install/install-powershell-on-windows-iot-nano.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: How to install PowerShell on Windows IoT and Nano Server.
3-
ms.date: 04/21/2026
3+
ms.date: 05/20/2026
44
title: Install PowerShell 7 on Windows IoT and Nano Server
55
---
66
# Install PowerShell 7 on Windows IoT and Nano Server
@@ -14,7 +14,7 @@ Windows 11 IoT Enterprise comes with Windows PowerShell, which is used to deploy
1414
```powershell
1515
# Replace the placeholder information for the following variables:
1616
$deviceip = '<device ip address>'
17-
$zipfile = 'PowerShell-7.6.1-win-arm64.zip'
17+
$zipfile = 'PowerShell-7.6.2-win-arm64.zip'
1818
$downloadfolder = 'U:\Users\Administrator\Downloads'
1919
# The download location is local to the device.
2020
# There should be enough space for the zip file and the unzipped contents.
@@ -28,10 +28,10 @@ Copy-Item $zipfile -Destination $downloadfolder -ToSession $S
2828
#Connect to the device and expand the archive
2929
Enter-PSSession $S
3030
Set-Location U:\Users\Administrator\Downloads
31-
Expand-Archive .\PowerShell-7.6.1-win-arm64.zip
31+
Expand-Archive .\PowerShell-7.6.2-win-arm64.zip
3232
3333
# Set up remoting to PowerShell 7
34-
Set-Location .\PowerShell-7.6.1-win-arm64
34+
Set-Location .\PowerShell-7.6.2-win-arm64
3535
# Be sure to use the -PowerShellHome parameter otherwise it tries to create a new
3636
# endpoint with Windows PowerShell 5.1
3737
.\Install-PowerShellRemoting.ps1 -PowerShellHome .
@@ -43,7 +43,7 @@ PowerShell has to restart WinRM. Now you can connect to PowerShell 7 endpoint on
4343
```powershell
4444
4545
# Be sure to use the -Configuration parameter. If you omit it, you connect to Windows PowerShell 5.1
46-
Enter-PSSession -ComputerName $deviceIp -Credential Administrator -Configuration PowerShell.7.6.1
46+
Enter-PSSession -ComputerName $deviceIp -Credential Administrator -Configuration PowerShell.7.6.2
4747
```
4848

4949
Windows 11 IoT Core adds Windows PowerShell when you include _IOT_POWERSHELL_ feature. Use Windows
@@ -87,15 +87,15 @@ Deploy PowerShell to Nano Server using the following steps.
8787
# Replace the placeholder information for the following variables:
8888
$ipaddr = '<Nano Server IP address>'
8989
$credential = Get-Credential # <An Administrator account on the system>
90-
$zipfile = 'PowerShell-7.6.1-win-x64.zip'
90+
$zipfile = 'PowerShell-7.6.2-win-x64.zip'
9191
# Connect to the built-in instance of Windows PowerShell
9292
$session = New-PSSession -ComputerName $ipaddr -Credential $credential
9393
# Copy the file to the Nano Server instance
9494
Copy-Item $zipfile C:\ -ToSession $session
9595
# Enter the interactive remote session
9696
Enter-PSSession $session
9797
# Extract the ZIP file
98-
Expand-Archive -Path C:\PowerShell-7.6.1-win-x64.zip -DestinationPath 'C:\Program Files\PowerShell 7'
98+
Expand-Archive -Path C:\PowerShell-7.6.2-win-x64.zip -DestinationPath 'C:\Program Files\PowerShell 7'
9999
```
100100

101101
## Supported versions of Windows
@@ -115,4 +115,4 @@ can't support those methods.
115115
<!-- link references -->
116116
[01]: /windows-server/get-started/deploy-nano-server
117117
[02]: https://github.com/ms-iot/iot-adk-addonkit/blob/master/Tools/IoTCoreImaging/Docs/Import-PSCoreRelease.md#Import-PSCoreRelease
118-
[03]: https://github.com/PowerShell/PowerShell/releases/download/v7.6.1/PowerShell-7.6.1-win-x64.zip
118+
[03]: https://github.com/PowerShell/PowerShell/releases/download/v7.6.2/PowerShell-7.6.2-win-x64.zip

0 commit comments

Comments
 (0)