Skip to content

Commit 320e1a3

Browse files
Gijsreynsdwheeler
andauthored
Update version numbers for 7.5.2 release (#12196)
* Update version numbers for 7.5.2 release * Added updates for 7.4.11 and support lifecycle --------- Co-authored-by: Sean Wheeler <sean.wheeler@microsoft.com>
1 parent d8860a2 commit 320e1a3

13 files changed

+118
-126
lines changed

reference/docs-conceptual/install/Installing-PowerShell-on-Windows.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: Information about installing PowerShell on Windows
3-
ms.date: 04/28/2025
3+
ms.date: 07/03/2025
44
title: Installing PowerShell on Windows
55
---
66
# Installing PowerShell on Windows
@@ -41,7 +41,7 @@ winget search Microsoft.PowerShell
4141
```Output
4242
Name Id Version Source
4343
---------------------------------------------------------------
44-
PowerShell Microsoft.PowerShell 7.5.1.0 winget
44+
PowerShell Microsoft.PowerShell 7.5.2.0 winget
4545
PowerShell Preview Microsoft.PowerShell.Preview 7.6.0.4 winget
4646
```
4747

@@ -65,9 +65,9 @@ winget install --id Microsoft.PowerShell.Preview --source winget
6565
To install PowerShell on Windows, use the following links to download the install package from
6666
GitHub.
6767

68-
- [PowerShell-7.5.1-win-x64.msi][22]
69-
- [PowerShell-7.5.1-win-x86.msi][24]
70-
- [PowerShell-7.5.1-win-arm64.msi][20]
68+
- [PowerShell-7.5.2-win-x64.msi][22]
69+
- [PowerShell-7.5.2-win-x86.msi][24]
70+
- [PowerShell-7.5.2-win-arm64.msi][20]
7171

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

@@ -137,7 +137,7 @@ installation options:
137137
The following example shows how to silently install PowerShell with all the install options enabled.
138138

139139
```powershell
140-
msiexec.exe /package PowerShell-7.5.1-win-x64.msi /quiet ADD_EXPLORER_CONTEXT_MENU_OPENPOWERSHELL=1 ADD_FILE_CONTEXT_MENU_RUNPOWERSHELL=1 ENABLE_PSREMOTING=1 REGISTER_MANIFEST=1 USE_MU=1 ENABLE_MU=1 ADD_PATH=1
140+
msiexec.exe /package PowerShell-7.5.2-win-x64.msi /quiet ADD_EXPLORER_CONTEXT_MENU_OPENPOWERSHELL=1 ADD_FILE_CONTEXT_MENU_RUNPOWERSHELL=1 ENABLE_PSREMOTING=1 REGISTER_MANIFEST=1 USE_MU=1 ENABLE_MU=1 ADD_PATH=1
141141
```
142142

143143
For a full list of command-line options for `Msiexec.exe`, see
@@ -148,9 +148,9 @@ For a full list of command-line options for `Msiexec.exe`, see
148148
PowerShell binary ZIP archives are provided to enable advanced deployment scenarios. Download one of
149149
the following ZIP archives from the [current release][18] page.
150150

151-
- [PowerShell-7.5.1-win-x64.zip][23]
152-
- [PowerShell-7.5.1-win-x86.zip][25]
153-
- [PowerShell-7.5.1-win-arm64.zip][21]
151+
- [PowerShell-7.5.2-win-x64.zip][23]
152+
- [PowerShell-7.5.2-win-x86.zip][25]
153+
- [PowerShell-7.5.2-win-arm64.zip][21]
154154

155155
Depending on how you download the file you may need to unblock the file using the `Unblock-File`
156156
cmdlet. Unzip the contents to the location of your choice and run `pwsh.exe` from there. Unlike
@@ -257,7 +257,7 @@ Windows 10 IoT Enterprise comes with Windows PowerShell, which we can use to dep
257257
```powershell
258258
# Replace the placeholder information for the following variables:
259259
$deviceip = '<device ip address'
260-
$zipfile = 'PowerShell-7.5.1-win-arm64.zip'
260+
$zipfile = 'PowerShell-7.5.2-win-arm64.zip'
261261
$downloadfolder = 'U:\Users\Administrator\Downloads' # The download location is local to the device.
262262
# There should be enough space for the zip file and the unzipped contents.
263263
@@ -270,10 +270,10 @@ Copy-Item $zipfile -Destination $downloadfolder -ToSession $S
270270
#Connect to the device and expand the archive
271271
Enter-PSSession $S
272272
Set-Location U:\Users\Administrator\Downloads
273-
Expand-Archive .\PowerShell-7.5.1-win-arm64.zip
273+
Expand-Archive .\PowerShell-7.5.2-win-arm64.zip
274274
275275
# Set up remoting to PowerShell 7
276-
Set-Location .\PowerShell-7.5.1-win-arm64
276+
Set-Location .\PowerShell-7.5.2-win-arm64
277277
# Be sure to use the -PowerShellHome parameter otherwise it tries to create a new
278278
# endpoint with Windows PowerShell 5.1
279279
.\Install-PowerShellRemoting.ps1 -PowerShellHome .
@@ -285,7 +285,7 @@ PowerShell has to restart WinRM. Now you can connect to PowerShell 7 endpoint on
285285
```powershell
286286
287287
# Be sure to use the -Configuration parameter. If you omit it, you connect to Windows PowerShell 5.1
288-
Enter-PSSession -ComputerName $deviceIp -Credential Administrator -Configuration PowerShell.7.5.1
288+
Enter-PSSession -ComputerName $deviceIp -Credential Administrator -Configuration PowerShell.7.5.2
289289
```
290290

291291
## Deploying on Windows 10 IoT Core
@@ -332,15 +332,15 @@ Deploy PowerShell to Nano Server using the following steps.
332332
# Replace the placeholder information for the following variables:
333333
$ipaddr = '<Nano Server IP address>'
334334
$credential = Get-Credential # <An Administrator account on the system>
335-
$zipfile = 'PowerShell-7.5.1-win-x64.zip'
335+
$zipfile = 'PowerShell-7.5.2-win-x64.zip'
336336
# Connect to the built-in instance of Windows PowerShell
337337
$session = New-PSSession -ComputerName $ipaddr -Credential $credential
338338
# Copy the file to the Nano Server instance
339339
Copy-Item $zipfile C:\ -ToSession $session
340340
# Enter the interactive remote session
341341
Enter-PSSession $session
342342
# Extract the ZIP file
343-
Expand-Archive -Path C:\PowerShell-7.5.1-win-x64.zip -DestinationPath 'C:\Program Files\PowerShell 7'
343+
Expand-Archive -Path C:\PowerShell-7.5.2-win-x64.zip -DestinationPath 'C:\Program Files\PowerShell 7'
344344
```
345345

346346
## PowerShell remoting
@@ -380,11 +380,11 @@ can't support those methods.
380380
[15]: #zip
381381
[18]: https://github.com/PowerShell/PowerShell/releases/latest
382382
[19]: https://github.com/ms-iot/iot-adk-addonkit/blob/master/Tools/IoTCoreImaging/Docs/Import-PSCoreRelease.md#Import-PSCoreRelease
383-
[20]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.1/PowerShell-7.5.1-win-arm64.msi
384-
[21]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.1/PowerShell-7.5.1-win-arm64.zip
385-
[22]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.1/PowerShell-7.5.1-win-x64.msi
386-
[23]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.1/PowerShell-7.5.1-win-x64.zip
387-
[24]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.1/PowerShell-7.5.1-win-x86.msi
388-
[25]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.1/PowerShell-7.5.1-win-x86.zip
383+
[20]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.2/PowerShell-7.5.2-win-arm64.msi
384+
[21]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.2/PowerShell-7.5.2-win-arm64.zip
385+
[22]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.2/PowerShell-7.5.2-win-x64.msi
386+
[23]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.2/PowerShell-7.5.2-win-x64.zip
387+
[24]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.2/PowerShell-7.5.2-win-x86.msi
388+
[25]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.2/PowerShell-7.5.2-win-x86.zip
389389
[27]: https://www.microsoft.com/store/apps/9MZ1SNWT0N5D
390390
[28]: microsoft-update-faq.yml

reference/docs-conceptual/install/Installing-PowerShell-on-macOS.md

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: Information about installing PowerShell on macOS
3-
ms.date: 06/19/2025
3+
ms.date: 07/03/2025
44
title: Installing PowerShell on macOS
55
---
66

@@ -126,12 +126,12 @@ Starting with version 7.2, PowerShell supports the Apple M-series Arm-based proc
126126
install package from the [releases][09] page onto your Mac. The links to the current versions are:
127127

128128
- PowerShell 7.5
129-
- Arm64 processors - [powershell-7.5.1-arm64.pkg][22]
130-
- x64 processors - [powershell-7.5.1-osx-x64.pkg][24]
129+
- Arm64 processors - [powershell-7.5.2-arm64.pkg][22]
130+
- x64 processors - [powershell-7.5.2-osx-x64.pkg][24]
131131

132132
- PowerShell 7.4
133-
- Arm64 processors - [powershell-7.4.10-osx-arm64.pkg][18]
134-
- x64 processors - [powershell-7.4.10-osx-x64.pkg][20]
133+
- Arm64 processors - [powershell-7.4.11-osx-arm64.pkg][18]
134+
- x64 processors - [powershell-7.4.11-osx-x64.pkg][20]
135135

136136
There are two ways to install PowerShell using the Direct Download method.
137137

@@ -146,7 +146,7 @@ Install PowerShell using Finder:
146146

147147
You might receive the following error message when installing the package:
148148

149-
> "powershell-7.5.1-osx-arm64.pkg" cannot be opened because Apple cannot check it for malicious
149+
> "powershell-7.5.2-osx-arm64.pkg" cannot be opened because Apple cannot check it for malicious
150150
> software.
151151
152152
To work around this issue using Finder:
@@ -160,25 +160,25 @@ To work around this issue using Finder:
160160
Install PowerShell from the terminal. Change the filename to match the package you downloaded.
161161

162162
```sh
163-
sudo installer -pkg ./Downloads/powershell-7.5.1-osx-arm64.pkg -target /
163+
sudo installer -pkg ./Downloads/powershell-7.5.2-osx-arm64.pkg -target /
164164
```
165165

166166
You might receive the following error message when installing the package:
167167

168-
> "powershell-7.5.1-osx-arm64.pkg" cannot be opened because Apple cannot check it for malicious
168+
> "powershell-7.5.2-osx-arm64.pkg" cannot be opened because Apple cannot check it for malicious
169169
> software.
170170
171171
There are a few different ways to work around this issue from the command line:
172172

173173
- Run the `installer` command with the **allowUntrusted** flag:
174174

175175
```sh
176-
`sudo installer -allowUntrusted -pkg ./Downloads/powershell-7.5.1-osx-arm64.pkg -target /`
176+
`sudo installer -allowUntrusted -pkg ./Downloads/powershell-7.5.2-osx-arm64.pkg -target /`
177177
```
178178

179179
- Or install the package as you normally would after running one of the following commands:
180180

181-
- Run `sudo xattr -rd com.apple.quarantine ./Downloads/powershell-7.5.1-osx-arm64.pkg`.
181+
- Run `sudo xattr -rd com.apple.quarantine ./Downloads/powershell-7.5.2-osx-arm64.pkg`.
182182
- Use the `Unblock-File` cmdlet if you're using PowerShell. Include the full path to the `.pkg`
183183
file.
184184

@@ -214,19 +214,19 @@ Download the install package from the [releases][09] page onto your Mac. The lin
214214
versions are:
215215

216216
- PowerShell 7.5-preview
217-
- Arm64 processors - [powershell-7.5.1-osx-arm64.tar.gz][23]
218-
- x64 processors - [powershell-7.5.1-osx-x64.tar.gz][25]
217+
- Arm64 processors - [powershell-7.5.2-osx-arm64.tar.gz][23]
218+
- x64 processors - [powershell-7.5.2-osx-x64.tar.gz][25]
219219

220220
- PowerShell 7.4 (LTS)
221-
- Arm64 processors - [powershell-7.4.10-osx-arm64.tar.gz][19]
222-
- x64 processors - [powershell-7.4.10-osx-x64.tar.gz][21]
221+
- Arm64 processors - [powershell-7.4.11-osx-arm64.tar.gz][19]
222+
- x64 processors - [powershell-7.4.11-osx-x64.tar.gz][21]
223223

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

227227
```sh
228228
# Download the powershell '.tar.gz' archive
229-
curl -L -o /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.5.1/powershell-7.5.1-osx-arm64.tar.gz
229+
curl -L -o /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.5.2/powershell-7.5.2-osx-arm64.tar.gz
230230

231231
# Create the target folder where powershell is placed
232232
sudo mkdir -p /usr/local/microsoft/powershell/7
@@ -305,14 +305,14 @@ support those methods.
305305
[11]: https://docs.brew.sh/Manpage#link-ln-options-formula
306306
[12]: https://github.com/Homebrew
307307
[13]: https://github.com/Homebrew/homebrew-cask
308-
[18]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.10/powershell-7.4.10-osx-arm64.pkg
309-
[19]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.10/powershell-7.4.10-osx-arm64.tar.gz
310-
[20]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.10/powershell-7.4.10-osx-x64.pkg
311-
[21]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.10/powershell-7.4.10-osx-x64.tar.gz
312-
[22]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.1/powershell-7.5.1-osx-arm64.pkg
313-
[23]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.1/powershell-7.5.1-osx-arm64.tar.gz
314-
[24]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.1/powershell-7.5.1-osx-x64.pkg
315-
[25]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.1/powershell-7.5.1-osx-x64.tar.gz
308+
[18]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.11/powershell-7.4.11-osx-arm64.pkg
309+
[19]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.11/powershell-7.4.11-osx-arm64.tar.gz
310+
[20]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.11/powershell-7.4.11-osx-x64.pkg
311+
[21]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.11/powershell-7.4.11-osx-x64.tar.gz
312+
[22]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.2/powershell-7.5.2-osx-arm64.pkg
313+
[23]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.2/powershell-7.5.2-osx-arm64.tar.gz
314+
[24]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.2/powershell-7.5.2-osx-x64.pkg
315+
[25]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.2/powershell-7.5.2-osx-x64.tar.gz
316316
[26]: https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html
317317
[27]: #install-using-homebrew
318318
[28]: #install-as-a-net-global-tool

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

Lines changed: 5 additions & 5 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/28/2025
3+
ms.date: 07/03/2025
44
title: Community support for PowerShell on Linux
55
---
66
# Community support for PowerShell on Linux
@@ -78,11 +78,11 @@ Download the tar.gz package from the [releases][09] page onto your Raspberry Pi
7878
to the current versions are:
7979

8080
- PowerShell 7.4 - latest LTS release
81-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.10/powershell-7.4.10-linux-arm32.tar.gz`
82-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.10/powershell-7.4.10-linux-arm64.tar.gz`
81+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.11/powershell-7.4.11-linux-arm32.tar.gz`
82+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.11/powershell-7.4.11-linux-arm64.tar.gz`
8383
- PowerShell 7.5 - latest stable release
84-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.5.1/powershell-7.5.1-linux-arm32.tar.gz`
85-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.5.1/powershell-7.5.1-linux-arm64.tar.gz`
84+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.5.2/powershell-7.5.2-linux-arm32.tar.gz`
85+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.5.2/powershell-7.5.2-linux-arm64.tar.gz`
8686

8787
Use the following shell commands to download and install the package. This script detects whether
8888
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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: Information about installing PowerShell on Alpine Linux
3-
ms.date: 04/28/2025
3+
ms.date: 07/03/2025
44
title: Installing PowerShell on Alpine Linux
55
---
66
# Installing PowerShell on Alpine Linux
@@ -22,8 +22,8 @@ check the list of [Supported versions][02] below.
2222
Installation on Alpine is based on downloading tar.gz package from the [releases][03] page. The URL
2323
to the package depends on the version of PowerShell you want to install.
2424

25-
- PowerShell 7.4 - `https://github.com/PowerShell/PowerShell/releases/download/v7.4.10/powershell-7.4.10-linux-musl-x64.tar.gz`
26-
- PowerShell 7.5 - `https://github.com/PowerShell/PowerShell/releases/download/v7.5.1/powershell-7.5.1-linux-musl-x64.tar.gz`
25+
- PowerShell 7.4 - `https://github.com/PowerShell/PowerShell/releases/download/v7.4.11/powershell-7.4.11-linux-musl-x64.tar.gz`
26+
- PowerShell 7.5 - `https://github.com/PowerShell/PowerShell/releases/download/v7.5.2/powershell-7.5.2-linux-musl-x64.tar.gz`
2727

2828
Then, in the terminal, execute the following shell commands to install PowerShell 7.4:
2929

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

5151
# Download the powershell '.tar.gz' archive
52-
curl -L https://github.com/PowerShell/PowerShell/releases/download/v7.5.1/powershell-7.5.1-linux-musl-x64.tar.gz -o /tmp/powershell.tar.gz
52+
curl -L https://github.com/PowerShell/PowerShell/releases/download/v7.5.2/powershell-7.5.2-linux-musl-x64.tar.gz -o /tmp/powershell.tar.gz
5353

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

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: Information about installing PowerShell on Debian Linux
3-
ms.date: 04/28/2025
3+
ms.date: 07/03/2025
44
title: Installing PowerShell on Debian
55
---
66
# Installing PowerShell on Debian
@@ -72,9 +72,9 @@ package from the [releases][02] page onto your Debian machine.
7272
The link to the current version is:
7373

7474
- PowerShell 7.4 (LTS) universal package for supported versions of Debian
75-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.10/powershell_7.4.10-1.deb_amd64.deb`
75+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.11/powershell_7.4.11-1.deb_amd64.deb`
7676
- PowerShell 7.5 universal package for supported versions of Debian
77-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.5.1/powershell_7.5.1-1.deb_amd64.deb`
77+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.5.2/powershell_7.5.2-1.deb_amd64.deb`
7878

7979
The following shell script downloads and installs the current release of PowerShell. You can
8080
change the URL to download the version of PowerShell that you want to install.
@@ -90,17 +90,17 @@ sudo apt-get update
9090
sudo apt-get install -y wget
9191

9292
# Download the PowerShell package file
93-
wget https://github.com/PowerShell/PowerShell/releases/download/v7.5.1/powershell_7.5.1-1.deb_amd64.deb
93+
wget https://github.com/PowerShell/PowerShell/releases/download/v7.5.2/powershell_7.5.2-1.deb_amd64.deb
9494

9595
###################################
9696
# Install the PowerShell package
97-
sudo dpkg -i powershell_7.5.1-1.deb_amd64.deb
97+
sudo dpkg -i powershell_7.5.2-1.deb_amd64.deb
9898

9999
# Resolve missing dependencies and finish the install (if necessary)
100100
sudo apt-get install -f
101101

102102
# Delete the downloaded package file
103-
rm powershell_7.5.1-1.deb_amd64.deb
103+
rm powershell_7.5.2-1.deb_amd64.deb
104104

105105
# Start PowerShell
106106
pwsh

reference/docs-conceptual/install/install-other-linux.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: Information about installing PowerShell on various Linux distributions
3-
ms.date: 04/28/2025
3+
ms.date: 07/03/2025
44
title: Alternate ways to install PowerShell on Linux
55
---
66
# Alternate ways to install PowerShell on Linux
@@ -132,16 +132,16 @@ archive.
132132
The following example shows the steps for installing the x64 binary archive. You must choose the
133133
correct binary archive that matches the processor type for your platform.
134134

135-
- `powershell-7.5.1-linux-arm32.tar.gz`
136-
- `powershell-7.5.1-linux-arm64.tar.gz`
137-
- `powershell-7.5.1-linux-x64.tar.gz`
135+
- `powershell-7.5.2-linux-arm32.tar.gz`
136+
- `powershell-7.5.2-linux-arm64.tar.gz`
137+
- `powershell-7.5.2-linux-x64.tar.gz`
138138

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

142142
```sh
143143
# Download the powershell '.tar.gz' archive
144-
curl -L -o /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.5.1/powershell-7.5.1-linux-x64.tar.gz
144+
curl -L -o /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.5.2/powershell-7.5.2-linux-x64.tar.gz
145145

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

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: Information about installing PowerShell on Red Hat Enterprise Linux (RHEL)
3-
ms.date: 04/28/2025
3+
ms.date: 07/03/2025
44
title: Installing PowerShell on Red Hat Enterprise Linux (RHEL)
55
---
66
# Installing PowerShell on Red Hat Enterprise Linux (RHEL)
@@ -66,18 +66,18 @@ package from the [releases][02] page onto your RHEL machine.
6666

6767
The link to the current version is:
6868

69-
- PowerShell 7.4.10 universal package for supported versions of RHEL
70-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.10/powershell-7.4.10-1.rh.x86_64.rpm`
71-
- PowerShell 7.5.1 universal package for supported versions of RHEL
72-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.5.1/powershell-7.5.1-1.rh.x86_64.rpm`
69+
- PowerShell 7.4.11 universal package for supported versions of RHEL
70+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.11/powershell-7.4.11-1.rh.x86_64.rpm`
71+
- PowerShell 7.5.2 universal package for supported versions of RHEL
72+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.5.2/powershell-7.5.2-1.rh.x86_64.rpm`
7373

7474
The following shell script downloads and installs the current preview release of PowerShell. You can
7575
change the URL to download the version of PowerShell that you want to install.
7676

7777
On RHEL 8 or 9:
7878

7979
```sh
80-
sudo dnf install https://github.com/PowerShell/PowerShell/releases/download/v7.5.1/powershell-7.5.1-1.rh.x86_64.rpm
80+
sudo dnf install https://github.com/PowerShell/PowerShell/releases/download/v7.5.2/powershell-7.5.2-1.rh.x86_64.rpm
8181
```
8282

8383
## Uninstall PowerShell

0 commit comments

Comments
 (0)