Skip to content

Commit cb3517c

Browse files
committed
Update versions for new releases
1 parent 823b7d1 commit cb3517c

File tree

9 files changed

+67
-67
lines changed

9 files changed

+67
-67
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
@@ -55,7 +55,7 @@ winget search Microsoft.PowerShell
5555
```Output
5656
Name Id Version Source
5757
-----------------------------------------------------------------
58-
PowerShell Microsoft.PowerShell 7.4.5.0 winget
58+
PowerShell Microsoft.PowerShell 7.4.6.0 winget
5959
PowerShell Preview Microsoft.PowerShell.Preview 7.5.0.3 winget
6060
```
6161

@@ -76,9 +76,9 @@ winget install --id Microsoft.PowerShell.Preview --source winget
7676
To install PowerShell on Windows, use the following links to download the install package from
7777
GitHub.
7878

79-
- [PowerShell-7.4.5-win-x64.msi][28]
80-
- [PowerShell-7.4.5-win-x86.msi][30]
81-
- [PowerShell-7.4.5-win-arm64.msi][36]
79+
- [PowerShell-7.4.6-win-x64.msi][28]
80+
- [PowerShell-7.4.6-win-x86.msi][30]
81+
- [PowerShell-7.4.6-win-arm64.msi][36]
8282

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

@@ -148,7 +148,7 @@ installation options:
148148
The following example shows how to silently install PowerShell with all the install options enabled.
149149

150150
```powershell
151-
msiexec.exe /package PowerShell-7.4.5-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
151+
msiexec.exe /package PowerShell-7.4.6-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
152152
```
153153

154154
For a full list of command-line options for `Msiexec.exe`, see
@@ -159,9 +159,9 @@ For a full list of command-line options for `Msiexec.exe`, see
159159
PowerShell binary ZIP archives are provided to enable advanced deployment scenarios. Download one of
160160
the following ZIP archives from the [current release][23] page.
161161

162-
- [PowerShell-7.4.5-win-x64.zip][29]
163-
- [PowerShell-7.4.5-win-x86.zip][31]
164-
- [PowerShell-7.4.5-win-arm64.zip][27]
162+
- [PowerShell-7.4.6-win-x64.zip][29]
163+
- [PowerShell-7.4.6-win-x86.zip][31]
164+
- [PowerShell-7.4.6-win-arm64.zip][27]
165165

166166
Depending on how you download the file you may need to unblock the file using the `Unblock-File`
167167
cmdlet. Unzip the contents to the location of your choice and run `pwsh.exe` from there. Unlike
@@ -260,7 +260,7 @@ If there is an available upgrade, the output indicates the latest available vers
260260

261261
> [!NOTE]
262262
> When upgrading, PowerShell won't upgrade from an LTS version to a non-LTS version. It only
263-
> upgrades to the latest version of LTS, for example, from 7.2.3 to 7.2.23. To upgrade from an
263+
> upgrades to the latest version of LTS, for example, from 7.2.3 to 7.2.24. To upgrade from an
264264
> LTS release to a newer stable version or the next LTS, you need to install the new version with
265265
> the MSI for that release.
266266
>
@@ -274,7 +274,7 @@ Windows 10 IoT Enterprise comes with Windows PowerShell, which we can use to dep
274274
```powershell
275275
# Replace the placeholder information for the following variables:
276276
$deviceip = '<device ip address'
277-
$zipfile = 'PowerShell-7.4.5-win-arm64.zip'
277+
$zipfile = 'PowerShell-7.4.6-win-arm64.zip'
278278
$downloadfolder = 'u:\users\administrator\Downloads' # The download location is local to the device.
279279
# There should be enough space for the zip file and the unzipped contents.
280280
@@ -287,10 +287,10 @@ Copy-Item $zipfile -Destination $downloadfolder -ToSession $S
287287
#Connect to the device and expand the archive
288288
Enter-PSSession $S
289289
Set-Location u:\users\administrator\Downloads
290-
Expand-Archive .\PowerShell-7.4.5-win-arm64.zip
290+
Expand-Archive .\PowerShell-7.4.6-win-arm64.zip
291291
292292
# Set up remoting to PowerShell 7
293-
Set-Location .\PowerShell-7.4.5-win-arm64
293+
Set-Location .\PowerShell-7.4.6-win-arm64
294294
# Be sure to use the -PowerShellHome parameter otherwise it tries to create a new
295295
# endpoint with Windows PowerShell 5.1
296296
.\Install-PowerShellRemoting.ps1 -PowerShellHome .
@@ -302,7 +302,7 @@ PowerShell has to restart WinRM. Now you can connect to PowerShell 7 endpoint on
302302
```powershell
303303
304304
# Be sure to use the -Configuration parameter. If you omit it, you connect to Windows PowerShell 5.1
305-
Enter-PSSession -ComputerName $deviceIp -Credential Administrator -Configuration PowerShell.7.4.5
305+
Enter-PSSession -ComputerName $deviceIp -Credential Administrator -Configuration PowerShell.7.4.6
306306
```
307307

308308
## Deploying on Windows 10 IoT Core
@@ -351,15 +351,15 @@ Deploy PowerShell to Nano Server using the following steps.
351351
# Replace the placeholder information for the following variables:
352352
$ipaddr = '<Nano Server IP address>'
353353
$credential = Get-Credential # <An Administrator account on the system>
354-
$zipfile = 'PowerShell-7.4.5-win-x64.zip'
354+
$zipfile = 'PowerShell-7.4.6-win-x64.zip'
355355
# Connect to the built-in instance of Windows PowerShell
356356
$session = New-PSSession -ComputerName $ipaddr -Credential $credential
357357
# Copy the file to the Nano Server instance
358358
Copy-Item $zipfile c:\ -ToSession $session
359359
# Enter the interactive remote session
360360
Enter-PSSession $session
361361
# Extract the ZIP file
362-
Expand-Archive -Path C:\PowerShell-7.4.5-win-x64.zip -DestinationPath 'C:\Program Files\PowerShell 7'
362+
Expand-Archive -Path C:\PowerShell-7.4.6-win-x64.zip -DestinationPath 'C:\Program Files\PowerShell 7'
363363
```
364364

365365
If you want WSMan-based remoting, follow the instructions to create a remoting endpoint using the
@@ -414,13 +414,13 @@ can't support those methods.
414414
[22]: https://aka.ms/powershell-release?tag=preview
415415
[23]: https://aka.ms/powershell-release?tag=stable
416416
[24]: https://github.com/ms-iot/iot-adk-addonkit/blob/master/Tools/IoTCoreImaging/Docs/Import-PSCoreRelease.md#Import-PSCoreRelease
417-
[27]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/PowerShell-7.4.5-win-arm64.zip
418-
[28]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/PowerShell-7.4.5-win-x64.msi
419-
[29]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/PowerShell-7.4.5-win-x64.zip
420-
[30]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/PowerShell-7.4.5-win-x86.msi
421-
[31]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/PowerShell-7.4.5-win-x86.zip
417+
[27]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.6/PowerShell-7.4.6-win-arm64.zip
418+
[28]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.6/PowerShell-7.4.6-win-x64.msi
419+
[29]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.6/PowerShell-7.4.6-win-x64.zip
420+
[30]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.6/PowerShell-7.4.6-win-x86.msi
421+
[31]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.6/PowerShell-7.4.6-win-x86.zip
422422
[32]: https://www.microsoft.com/download/details.aspx?id=50410
423423
[33]: https://www.microsoft.com/store/apps/9MZ1SNWT0N5D
424424
[34]: microsoft-update-faq.yml
425425
[35]: https://techcommunity.microsoft.com/t5/windows-server-insiders/announcing-windows-server-preview-build-26085/m-p/4098829
426-
[36]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/PowerShell-7.4.5-win-arm64.msi
426+
[36]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.6/PowerShell-7.4.6-win-arm64.msi

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

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -117,11 +117,11 @@ install package from the [releases][09] page onto your computer. The links to th
117117
are:
118118

119119
- PowerShell 7.4
120-
- x64 processors - [powershell-7.4.5-osx-x64.pkg][20]
121-
- Arm64 processors - [powershell-7.4.5-osx-arm64.pkg][18]
120+
- x64 processors - [powershell-7.4.6-osx-x64.pkg][20]
121+
- Arm64 processors - [powershell-7.4.6-osx-arm64.pkg][18]
122122
- PowerShell 7.2 (LTS)
123-
- x64 processors - [powershell-7.2.23-osx-x64.pkg][16]
124-
- Arm64 processors - [powershell-7.2.23-osx-arm64.pkg][14]
123+
- x64 processors - [powershell-7.2.24-osx-x64.pkg][16]
124+
- Arm64 processors - [powershell-7.2.24-osx-arm64.pkg][14]
125125
- PowerShell 7.5-preview
126126
- x64 processors - [powershell-7.5.0-preview.3-osx-x64.pkg][24]
127127
- Arm64 processors - [powershell-7.5.0-preview.3-arm64.pkg][22]
@@ -130,13 +130,13 @@ You can double-click the file and follow the prompts, or install it from the ter
130130
following commands. Change the name of the file to match the file you downloaded.
131131

132132
```sh
133-
sudo installer -pkg ./Downloads/powershell-7.4.5-osx-x64.pkg -target /
133+
sudo installer -pkg ./Downloads/powershell-7.4.6-osx-x64.pkg -target /
134134
```
135135

136136
If you are running on macOS Big Sur 11.5 or higher you may receive the following error message
137137
when installing the package:
138138

139-
> "powershell-7.4.5-osx-x64.pkg" cannot be opened because Apple cannot check it for malicious
139+
> "powershell-7.4.6-osx-x64.pkg" cannot be opened because Apple cannot check it for malicious
140140
> software.
141141
142142
There are two ways to work around this issue:
@@ -149,7 +149,7 @@ Using the Finder
149149

150150
From the command line
151151

152-
1. Run `sudo xattr -rd com.apple.quarantine ./Downloads/powershell-7.4.5-osx-x64.pkg`. If you are using
152+
1. Run `sudo xattr -rd com.apple.quarantine ./Downloads/powershell-7.4.6-osx-x64.pkg`. If you are using
153153
PowerShell 7 or higher, you can use the `Unblock-File` cmdlet. Include the full path to the
154154
`.pkg` file.
155155
1. Install the package as you normally would.
@@ -189,11 +189,11 @@ Download the install package from the [releases][09] page onto your computer. Th
189189
current versions are:
190190

191191
- PowerShell 7.4 (LTS)
192-
- x64 processors - [powershell-7.4.5-osx-x64.tar.gz][21]
193-
- Arm64 processors - [powershell-7.4.5-osx-arm64.tar.gz][19]
192+
- x64 processors - [powershell-7.4.6-osx-x64.tar.gz][21]
193+
- Arm64 processors - [powershell-7.4.6-osx-arm64.tar.gz][19]
194194
- PowerShell 7.2 (LTS)
195-
- x64 processors - [powershell-7.2.23-osx-x64.tar.gz][17]
196-
- Arm64 processors - [powershell-7.2.23-osx-arm64.tar.gz][15]
195+
- x64 processors - [powershell-7.2.24-osx-x64.tar.gz][17]
196+
- Arm64 processors - [powershell-7.2.24-osx-arm64.tar.gz][15]
197197
- PowerShell 7.5-preview
198198
- x64 processors - [powershell-7.5.0-preview.3-osx-x64.tar.gz][25]
199199
- Arm64 processors - [powershell-7.5.0-preview.3-osx-arm64.tar.gz][23]
@@ -203,7 +203,7 @@ match the version you want to install.
203203

204204
```sh
205205
# Download the powershell '.tar.gz' archive
206-
curl -L -o /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/powershell-7.4.5-osx-x64.tar.gz
206+
curl -L -o /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.4.6/powershell-7.4.6-osx-x64.tar.gz
207207

208208
# Create the target folder where powershell is placed
209209
sudo mkdir -p /usr/local/microsoft/powershell/7
@@ -282,14 +282,14 @@ support those methods.
282282
[11]: https://docs.brew.sh/Manpage#link-ln-options-formula
283283
[12]: https://github.com/Homebrew
284284
[13]: https://github.com/Homebrew/homebrew-cask
285-
[14]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.23/powershell-7.2.23-osx-arm64.pkg
286-
[15]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.23/powershell-7.2.23-osx-arm64.tar.gz
287-
[16]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.23/powershell-7.2.23-osx-x64.pkg
288-
[17]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.23/powershell-7.2.23-osx-x64.tar.gz
289-
[18]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/powershell-7.4.5-osx-arm64.pkg
290-
[19]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/powershell-7.4.5-osx-arm64.tar.gz
291-
[20]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/powershell-7.4.5-osx-x64.pkg
292-
[21]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/powershell-7.4.5-osx-x64.tar.gz
285+
[14]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.24/powershell-7.2.24-osx-arm64.pkg
286+
[15]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.24/powershell-7.2.24-osx-arm64.tar.gz
287+
[16]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.24/powershell-7.2.24-osx-x64.pkg
288+
[17]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.24/powershell-7.2.24-osx-x64.tar.gz
289+
[18]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.6/powershell-7.4.6-osx-arm64.pkg
290+
[19]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.6/powershell-7.4.6-osx-arm64.tar.gz
291+
[20]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.6/powershell-7.4.6-osx-x64.pkg
292+
[21]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.6/powershell-7.4.6-osx-x64.tar.gz
293293
[22]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.0-preview.3/powershell-7.5.0-preview.3-osx-arm64.pkg
294294
[23]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.0-preview.3/powershell-7.5.0-preview.3-osx-arm64.tar.gz
295295
[24]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.0-preview.3/powershell-7.5.0-preview.3-osx-x64.pkg

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ the following article provides information on how to install PowerShell on openS
7777
Download the tar.gz package from the [releases][09] page onto your Raspberry Pi computer. The links
7878
to the current versions are:
7979

80-
- PowerShell 7.4.5 - latest LTS release
81-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/powershell-7.4.5-linux-arm32.tar.gz`
82-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/powershell-7.4.5-linux-arm64.tar.gz`
80+
- PowerShell 7.4.6 - latest LTS release
81+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.6/powershell-7.4.6-linux-arm32.tar.gz`
82+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.6/powershell-7.4.6-linux-arm64.tar.gz`
8383

8484
Use the following shell commands to download and install the package. This script detects whether
8585
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ check the list of [Supported versions][02] below.
2020
Installation on Alpine is based on downloading tar.gz package from the [releases][03] page. The URL
2121
to the package depends on the version of PowerShell you want to install.
2222

23-
- PowerShell 7.4.5 - `https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/powershell-7.4.5-linux-musl-x64.tar.gz`
24-
- PowerShell 7.2.23 - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.23/powershell-7.2.23-linux-alpine-x64.tar.gz`
23+
- PowerShell 7.4.6 - `https://github.com/PowerShell/PowerShell/releases/download/v7.4.6/powershell-7.4.6-linux-musl-x64.tar.gz`
24+
- PowerShell 7.2.24 - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.24/powershell-7.2.24-linux-alpine-x64.tar.gz`
2525
- PowerShell 7.5-preview.4 - `https://github.com/PowerShell/PowerShell/releases/download/v7.5.0-preview.3/powershell-7.5.0-preview.3-linux-musl-x64.tar.gz`
2626

2727
Then, in the terminal, execute the following shell commands to install PowerShell 7.4:
@@ -47,7 +47,7 @@ sudo apk -X https://dl-cdn.alpinelinux.org/alpine/edge/main add --no-cache \
4747
lttng-ust
4848

4949
# Download the powershell '.tar.gz' archive
50-
curl -L https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/powershell-7.4.5-linux-musl-x64.tar.gz -o /tmp/powershell.tar.gz
50+
curl -L https://github.com/PowerShell/PowerShell/releases/download/v7.4.6/powershell-7.4.6-linux-musl-x64.tar.gz -o /tmp/powershell.tar.gz
5151

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

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ package from the [releases][02] page onto your Debian machine.
7070
The link to the current version is:
7171

7272
- PowerShell 7.4 (LTS) universal package for supported versions of Debian
73-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/powershell_7.4.5-1.deb_amd64.deb`
73+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.6/powershell_7.4.6-1.deb_amd64.deb`
7474
- PowerShell 7.2 (LTS) universal package for supported versions of Debian
75-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.2.23/powershell_7.2.23-1.deb_amd64.deb`
75+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.2.24/powershell_7.2.24-1.deb_amd64.deb`
7676
- PowerShell 7.5-preview universal package for supported versions of Debian
7777
- `https://github.com/PowerShell/PowerShell/releases/download/v7.5.0-preview.3/powershell-preview_7.5.0-preview.3-1.deb_amd64.deb`
7878

@@ -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.4.5/powershell_7.4.5-1.deb_amd64.deb
93+
wget https://github.com/PowerShell/PowerShell/releases/download/v7.4.6/powershell_7.4.6-1.deb_amd64.deb
9494

9595
###################################
9696
# Install the PowerShell package
97-
sudo dpkg -i powershell_7.4.5-1.deb_amd64.deb
97+
sudo dpkg -i powershell_7.4.6-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.4.5-1.deb_amd64.deb
103+
rm powershell_7.4.6-1.deb_amd64.deb
104104

105105
# Start PowerShell
106106
pwsh

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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.4.5-linux-arm32.tar.gz`
136-
- `powershell-7.4.5-linux-arm64.tar.gz`
137-
- `powershell-7.4.5-linux-x64.tar.gz`
135+
- `powershell-7.4.6-linux-arm32.tar.gz`
136+
- `powershell-7.4.6-linux-arm64.tar.gz`
137+
- `powershell-7.4.6-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.4.5/powershell-7.4.5-linux-x64.tar.gz
144+
curl -L -o /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.4.6/powershell-7.4.6-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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ package from the [releases][02] page onto your RHEL machine.
7373

7474
The link to the current version is:
7575

76-
- PowerShell 7.4.5 universal package for supported versions of RHEL
77-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/powershell-7.4.5-1.rh.x86_64.rpm`
78-
- PowerShell 7.2.23 universal package for supported versions of RHEL
79-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.2.23/powershell-7.2.23-1.rh.x86_64.rpm`
76+
- PowerShell 7.4.6 universal package for supported versions of RHEL
77+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.6/powershell-7.4.6-1.rh.x86_64.rpm`
78+
- PowerShell 7.2.24 universal package for supported versions of RHEL
79+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.2.24/powershell-7.2.24-1.rh.x86_64.rpm`
8080
- PowerShell 7.5-preview.4 universal package for supported versions of RHEL
8181
- `https://github.com/PowerShell/PowerShell/releases/download/v7.5.0-preview.3/powershell-preview-7.5.0_preview.2-1.rh.x86_64.rpm`
8282

@@ -86,7 +86,7 @@ change the URL to download the version of PowerShell that you want to install.
8686
On RHEL 8 or 9:
8787

8888
```sh
89-
sudo dnf install https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/powershell-7.4.5-1.rh.x86_64.rpm
89+
sudo dnf install https://github.com/PowerShell/PowerShell/releases/download/v7.4.6/powershell-7.4.6-1.rh.x86_64.rpm
9090
```
9191

9292
## Uninstall PowerShell

0 commit comments

Comments
 (0)