Skip to content

Commit 587d5da

Browse files
authored
Update version number for July releases (#10273)
1 parent efaa20d commit 587d5da

9 files changed

+73
-73
lines changed

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

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ winget search Microsoft.PowerShell
5151
```Output
5252
Name Id Version Source
5353
--------------------------------------------------------------
54-
PowerShell Microsoft.PowerShell 7.3.5.0 winget
54+
PowerShell Microsoft.PowerShell 7.3.6.0 winget
5555
PowerShell Preview Microsoft.PowerShell.Preview 7.4.0.3 winget
5656
```
5757

@@ -72,8 +72,8 @@ winget install --id Microsoft.Powershell.Preview --source winget
7272
To install PowerShell on Windows, use the following links to download the install package from
7373
GitHub.
7474

75-
- [PowerShell-7.3.5-win-x64.msi][28]
76-
- [PowerShell-7.3.5-win-x86.msi][30]
75+
- [PowerShell-7.3.6-win-x64.msi][28]
76+
- [PowerShell-7.3.6-win-x86.msi][30]
7777

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

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

140140
```powershell
141-
msiexec.exe /package PowerShell-7.3.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
141+
msiexec.exe /package PowerShell-7.3.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
142142
```
143143

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

152-
- [PowerShell-7.3.5-win-x64.zip][29]
153-
- [PowerShell-7.3.5-win-x86.zip][31]
154-
- [PowerShell-7.3.5-win-arm64.zip][27]
152+
- [PowerShell-7.3.6-win-x64.zip][29]
153+
- [PowerShell-7.3.6-win-x86.zip][31]
154+
- [PowerShell-7.3.6-win-arm64.zip][27]
155155

156156
Depending on how you download the file you may need to unblock the file using the `Unblock-File`
157157
cmdlet. Unzip the contents to the location of your choice and run `pwsh.exe` from there. Unlike
@@ -233,7 +233,7 @@ information in this article. If you installed via the MSI package, that informat
233233

234234
> [!NOTE]
235235
> When upgrading, PowerShell won't upgrade from an LTS version to a non-LTS version. It only
236-
> upgrades to the latest version of LTS, for example, from 7.2.3 to 7.2.12. To upgrade from an
236+
> upgrades to the latest version of LTS, for example, from 7.2.3 to 7.2.13. To upgrade from an
237237
> LTS release to a newer stable version or the next LTS, you need to install the new version with
238238
> the MSI for that release.
239239
>
@@ -247,7 +247,7 @@ Windows 10 IoT Enterprise comes with Windows PowerShell, which we can use to dep
247247
```powershell
248248
# Replace the placeholder information for the following variables:
249249
$deviceip = '<device ip address'
250-
$zipfile = 'PowerShell-7.3.5-win-arm64.zip'
250+
$zipfile = 'PowerShell-7.3.6-win-arm64.zip'
251251
$downloadfolder = 'u:\users\administrator\Downloads' # The download location is local to the device.
252252
# There should be enough space for the zip file and the unzipped contents.
253253
@@ -260,10 +260,10 @@ Copy-Item $zipfile -Destination $downloadfolder -ToSession $S
260260
#Connect to the device and expand the archive
261261
Enter-PSSession $S
262262
Set-Location u:\users\administrator\Downloads
263-
Expand-Archive .\PowerShell-7.3.5-win-arm64.zip
263+
Expand-Archive .\PowerShell-7.3.6-win-arm64.zip
264264
265265
# Set up remoting to PowerShell 7
266-
Set-Location .\PowerShell-7.3.5-win-arm64
266+
Set-Location .\PowerShell-7.3.6-win-arm64
267267
# Be sure to use the -PowerShellHome parameter otherwise it tries to create a new
268268
# endpoint with Windows PowerShell 5.1
269269
.\Install-PowerShellRemoting.ps1 -PowerShellHome .
@@ -275,7 +275,7 @@ PowerShell has to restart WinRM. Now you can connect to PowerShell 7 endpoint on
275275
```powershell
276276
277277
# Be sure to use the -Configuration parameter. If you omit it, you connect to Windows PowerShell 5.1
278-
Enter-PSSession -ComputerName $deviceIp -Credential Administrator -Configuration PowerShell.7.3.5
278+
Enter-PSSession -ComputerName $deviceIp -Credential Administrator -Configuration PowerShell.7.3.6
279279
```
280280

281281
## Deploying on Windows 10 IoT Core
@@ -324,15 +324,15 @@ Deploy PowerShell to Nano Server using the following steps.
324324
# Replace the placeholder information for the following variables:
325325
$ipaddr = '<Nano Server IP address>'
326326
$credential = Get-Credential # <An Administrator account on the system>
327-
$zipfile = 'PowerShell-7.3.5-win-x64.zip'
327+
$zipfile = 'PowerShell-7.3.6-win-x64.zip'
328328
# Connect to the built-in instance of Windows PowerShell
329329
$session = New-PSSession -ComputerName $ipaddr -Credential $credential
330330
# Copy the file to the Nano Server instance
331331
Copy-Item $zipfile c:\ -ToSession $session
332332
# Enter the interactive remote session
333333
Enter-PSSession $session
334334
# Extract the ZIP file
335-
Expand-Archive -Path C:\PowerShell-7.3.5-win-x64.zip -DestinationPath 'C:\Program Files\PowerShell 7'
335+
Expand-Archive -Path C:\PowerShell-7.3.6-win-x64.zip -DestinationPath 'C:\Program Files\PowerShell 7'
336336
```
337337

338338
If you want WSMan-based remoting, follow the instructions to create a remoting endpoint using the
@@ -387,11 +387,11 @@ can't support those methods.
387387
[22]: https://aka.ms/powershell-release?tag=preview
388388
[23]: https://aka.ms/powershell-release?tag=stable
389389
[24]: https://github.com/ms-iot/iot-adk-addonkit/blob/master/Tools/IoTCoreImaging/Docs/Import-PSCoreRelease.md#Import-PSCoreRelease
390-
[27]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.5/PowerShell-7.3.5-win-arm64.zip
391-
[28]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.5/PowerShell-7.3.5-win-x64.msi
392-
[29]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.5/PowerShell-7.3.5-win-x64.zip
393-
[30]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.5/PowerShell-7.3.5-win-x86.msi
394-
[31]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.5/PowerShell-7.3.5-win-x86.zip
390+
[27]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.6/PowerShell-7.3.6-win-arm64.zip
391+
[28]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.6/PowerShell-7.3.6-win-x64.msi
392+
[29]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.6/PowerShell-7.3.6-win-x64.zip
393+
[30]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.6/PowerShell-7.3.6-win-x86.msi
394+
[31]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.6/PowerShell-7.3.6-win-x86.zip
395395
[32]: https://www.microsoft.com/download/details.aspx?id=50410
396396
[33]: https://www.microsoft.com/store/apps/9MZ1SNWT0N5D
397397
[34]: microsoft-update-faq.yml

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

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -121,24 +121,24 @@ brew upgrade powershell
121121
Starting with version 7.2, PowerShell supports the Apple M1 processor. Download the install package
122122
from the [releases][10] page onto your computer. The links to the current versions are:
123123

124-
- PowerShell 7.3.5
125-
- x64 processors - [powershell-7.3.5-osx-x64.pkg][22]
126-
- M1 processors - [powershell-7.3.5-osx-arm64.pkg][20]
127-
- PowerShell 7.2.12
128-
- x64 processors - [powershell-7.2.12-osx-x64.pkg][18]
129-
- M1 processors - [powershell-7.2.12-osx-arm64.pkg][16]
124+
- PowerShell 7.3.6
125+
- x64 processors - [powershell-7.3.6-osx-x64.pkg][22]
126+
- M1 processors - [powershell-7.3.6-osx-arm64.pkg][20]
127+
- PowerShell 7.2.13
128+
- x64 processors - [powershell-7.2.13-osx-x64.pkg][18]
129+
- M1 processors - [powershell-7.2.13-osx-arm64.pkg][16]
130130

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

134134
```sh
135-
sudo installer -pkg powershell-7.3.5-osx-x64.pkg -target /
135+
sudo installer -pkg powershell-7.3.6-osx-x64.pkg -target /
136136
```
137137

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

141-
> "powershell-7.3.5-osx-x64.pkg" cannot be opened because Apple cannot check it for malicious
141+
> "powershell-7.3.6-osx-x64.pkg" cannot be opened because Apple cannot check it for malicious
142142
> software.
143143
144144
There are two ways to work around this issue:
@@ -151,7 +151,7 @@ Using the Finder
151151

152152
From the command line
153153

154-
1. Run `sudo xattr -rd com.apple.quarantine powershell-7.3.5-osx-x64.pkg`. Include the full path to
154+
1. Run `sudo xattr -rd com.apple.quarantine powershell-7.3.6-osx-x64.pkg`. Include the full path to
155155
the `.pkg` file.
156156
1. Install the package as you normally would.
157157

@@ -189,31 +189,31 @@ dependencies.
189189
Download the install package from the [releases][10] page onto your computer. The links to the
190190
current versions are:
191191

192-
- PowerShell 7.3.5
193-
- x64 processors - [powershell-7.3.5-osx-x64.tar.gz][23]
194-
- M1 processors - [powershell-7.3.5-osx-arm64.tar.gz][21]
195-
- PowerShell 7.2.12
196-
- x64 processors - [powershell-7.2.12-osx-x64.tar.gz][19]
197-
- M1 processors - [powershell-7.2.12-osx-arm64.tar.gz][17]
192+
- PowerShell 7.3.6
193+
- x64 processors - [powershell-7.3.6-osx-x64.tar.gz][23]
194+
- M1 processors - [powershell-7.3.6-osx-arm64.tar.gz][21]
195+
- PowerShell 7.2.13
196+
- x64 processors - [powershell-7.2.13-osx-x64.tar.gz][19]
197+
- M1 processors - [powershell-7.2.13-osx-arm64.tar.gz][17]
198198

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

202202
```sh
203203
# Download the powershell '.tar.gz' archive
204-
curl -L -o /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.3.5/powershell-7.3.5-osx-x64.tar.gz
204+
curl -L -o /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.3.6/powershell-7.3.6-osx-x64.tar.gz
205205

206206
# Create the target folder where powershell is placed
207-
sudo mkdir -p /usr/local/microsoft/powershell/7.3.5
207+
sudo mkdir -p /usr/local/microsoft/powershell/7.3.6
208208

209209
# Expand powershell to the target folder
210-
sudo tar zxf /tmp/powershell.tar.gz -C /usr/local/microsoft/powershell/7.3.5
210+
sudo tar zxf /tmp/powershell.tar.gz -C /usr/local/microsoft/powershell/7.3.6
211211

212212
# Set execute permissions
213-
sudo chmod +x /usr/local/microsoft/powershell/7.3.5/pwsh
213+
sudo chmod +x /usr/local/microsoft/powershell/7.3.6/pwsh
214214

215215
# Create the symbolic link that points to pwsh
216-
sudo ln -s /usr/local/microsoft/powershell/7.3.5/pwsh /usr/local/bin/pwsh
216+
sudo ln -s /usr/local/microsoft/powershell/7.3.6/pwsh /usr/local/bin/pwsh
217217
```
218218

219219
## Uninstalling PowerShell
@@ -238,7 +238,7 @@ remove the paths using `sudo rm`.
238238
239239
## Paths
240240

241-
- `$PSHOME` is `/usr/local/microsoft/powershell/7.3.5/`
241+
- `$PSHOME` is `/usr/local/microsoft/powershell/7.3.6/`
242242
- User profiles are read from `~/.config/powershell/profile.ps1`
243243
- Default profiles are read from `$PSHOME/profile.ps1`
244244
- User modules are read from `~/.local/share/powershell/Modules`
@@ -252,7 +252,7 @@ exists at `Microsoft.PowerShell_profile.ps1` in the same locations.
252252
PowerShell respects the [XDG Base Directory Specification][24] on macOS.
253253

254254
Because macOS is a derivation of BSD, the prefix `/usr/local` is used instead of `/opt`. So,
255-
`$PSHOME` is `/usr/local/microsoft/powershell/7.3.5/`, and the symbolic link is placed at
255+
`$PSHOME` is `/usr/local/microsoft/powershell/7.3.6/`, and the symbolic link is placed at
256256
`/usr/local/bin/pwsh`.
257257

258258
## Supported versions
@@ -286,12 +286,12 @@ support those methods.
286286
[13]: https://github.com/Homebrew
287287
[14]: https://github.com/Homebrew/homebrew-cask
288288
[15]: https://github.com/Homebrew/homebrew-cask-versions
289-
[16]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.12/powershell-7.2.12-osx-arm64.pkg
290-
[17]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.12/powershell-7.2.12-osx-arm64.tar.gz
291-
[18]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.12/powershell-7.2.12-osx-x64.pkg
292-
[19]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.12/powershell-7.2.12-osx-x64.tar.gz
293-
[20]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.5/powershell-7.3.5-osx-arm64.pkg
294-
[21]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.5/powershell-7.3.5-osx-arm64.tar.gz
295-
[22]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.5/powershell-7.3.5-osx-x64.pkg
296-
[23]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.5/powershell-7.3.5-osx-x64.tar.gz
289+
[16]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.13/powershell-7.2.13-osx-arm64.pkg
290+
[17]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.13/powershell-7.2.13-osx-arm64.tar.gz
291+
[18]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.13/powershell-7.2.13-osx-x64.pkg
292+
[19]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.13/powershell-7.2.13-osx-x64.tar.gz
293+
[20]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.6/powershell-7.3.6-osx-arm64.pkg
294+
[21]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.6/powershell-7.3.6-osx-arm64.tar.gz
295+
[22]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.6/powershell-7.3.6-osx-x64.pkg
296+
[23]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.6/powershell-7.3.6-osx-x64.tar.gz
297297
[24]: https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html

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.
2121
The URL to the package depends on the version of PowerShell you want to install.
2222

23-
- PowerShell 7.3.5 - `https://github.com/PowerShell/PowerShell/releases/download/v7.3.5/powershell-7.3.5-linux-alpine-x64.tar.gz`
24-
- PowerShell 7.2.12 - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.12/powershell-7.2.12-linux-alpine-x64.tar.gz`
23+
- PowerShell 7.3.6 - `https://github.com/PowerShell/PowerShell/releases/download/v7.3.6/powershell-7.3.6-linux-alpine-x64.tar.gz`
24+
- PowerShell 7.2.13 - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.13/powershell-7.2.13-linux-alpine-x64.tar.gz`
2525

2626
Then, in the terminal, execute the following shell commands to install PowerShell 7.3:
2727

@@ -46,7 +46,7 @@ sudo apk -X https://dl-cdn.alpinelinux.org/alpine/edge/main add --no-cache \
4646
lttng-ust
4747

4848
# Download the powershell '.tar.gz' archive
49-
curl -L https://github.com/PowerShell/PowerShell/releases/download/v7.3.5/powershell-7.3.5-linux-alpine-x64.tar.gz -o /tmp/powershell.tar.gz
49+
curl -L https://github.com/PowerShell/PowerShell/releases/download/v7.3.6/powershell-7.3.6-linux-alpine-x64.tar.gz -o /tmp/powershell.tar.gz
5050

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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ Debian uses APT (Advanced Package Tool) as a package manager.
2222
PowerShell 7.2 introduced a universal package that makes installation easier. Download the universal
2323
package from the [releases][04] page onto the Debian 10 machine. The link to the current version is:
2424

25-
- PowerShell 7.3.5 - `https://github.com/PowerShell/PowerShell/releases/download/v7.3.5/powershell_7.3.5-1.deb_amd64.deb`
26-
- PowerShell 7.2.12 - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.12/powershell-lts_7.2.12-1.deb_amd64.deb`
25+
- PowerShell 7.3.6 - `https://github.com/PowerShell/PowerShell/releases/download/v7.3.6/powershell_7.3.6-1.deb_amd64.deb`
26+
- PowerShell 7.2.13 - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.13/powershell-lts_7.2.13-1.deb_amd64.deb`
2727

2828
## Installation on Debian 11 via Package Repository
2929

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -122,16 +122,16 @@ archive.
122122
The following example shows the steps for installing the x64 binary archive. You must choose the
123123
correct binary archive that matches the processor type for your platform.
124124

125-
- `powershell-7.3.5-linux-arm32.tar.gz`
126-
- `powershell-7.3.5-linux-arm64.tar.gz`
127-
- `powershell-7.3.5-linux-x64.tar.gz`
125+
- `powershell-7.3.6-linux-arm32.tar.gz`
126+
- `powershell-7.3.6-linux-arm64.tar.gz`
127+
- `powershell-7.3.6-linux-x64.tar.gz`
128128

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

132132
```sh
133133
# Download the powershell '.tar.gz' archive
134-
curl -L -o /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.3.5/powershell-7.3.5-linux-x64.tar.gz
134+
curl -L -o /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.3.6/powershell-7.3.6-linux-x64.tar.gz
135135

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

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ All packages are available on our GitHub [releases][01] page. After the package
2727
Download the tar.gz package from the [releases][01] page onto your Raspberry Pi computer. The links
2828
to the current versions are:
2929

30-
- PowerShell 7.3.5 - `https://github.com/PowerShell/PowerShell/releases/download/v7.3.5/powershell-7.3.5-linux-arm32.tar.gz`
31-
- PowerShell 7.2.12 - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.12/powershell-7.2.12-linux-arm32.tar.gz`
30+
- PowerShell 7.3.6 - `https://github.com/PowerShell/PowerShell/releases/download/v7.3.6/powershell-7.3.6-linux-arm32.tar.gz`
31+
- PowerShell 7.2.13 - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.13/powershell-7.2.13-linux-arm32.tar.gz`
3232

3333
Use the following shell commands to download and install the package. Change the URL to match the
3434
PowerShell version that you want to install.
@@ -47,13 +47,13 @@ sudo apt-get install libssl1.1 libunwind8 -y
4747
# Download and extract PowerShell
4848

4949
# Grab the latest tar.gz
50-
wget https://github.com/PowerShell/PowerShell/releases/download/v7.3.5/powershell-7.3.5-linux-arm32.tar.gz
50+
wget https://github.com/PowerShell/PowerShell/releases/download/v7.3.6/powershell-7.3.6-linux-arm32.tar.gz
5151

5252
# Make folder to put powershell
5353
mkdir ~/powershell
5454

5555
# Unpack the tar.gz file
56-
tar -xvf ./powershell-7.3.5-linux-arm32.tar.gz -C ~/powershell
56+
tar -xvf ./powershell-7.3.6-linux-arm32.tar.gz -C ~/powershell
5757

5858
# Start PowerShell
5959
~/powershell/pwsh

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,28 +65,28 @@ Starting with version 7.2, PowerShell is distributed as a universal RPM package.
6565
of PowerShell had separate package for each OS. Download the RPM package you need onto your CentOS
6666
machine.
6767

68-
- PowerShell 7.3.5 - `https://github.com/PowerShell/PowerShell/releases/download/v7.3.5/powershell-7.3.5-1.rh.x86_64.rpm`
69-
- PowerShell 7.2.12- `https://github.com/PowerShell/PowerShell/releases/download/v7.2.12/powershell-lts-7.2.12-1.rh.x86_64.rpm`
68+
- PowerShell 7.3.6 - `https://github.com/PowerShell/PowerShell/releases/download/v7.3.6/powershell-7.3.6-1.rh.x86_64.rpm`
69+
- PowerShell 7.2.13- `https://github.com/PowerShell/PowerShell/releases/download/v7.2.13/powershell-lts-7.2.13-1.rh.x86_64.rpm`
7070

7171
Use the following shell command to install the latest RPM package on the target version of RHEL.
7272
Change the URL in the following shell commands to match the version you need.
7373

7474
On RHEL 9:
7575

7676
```sh
77-
sudo dnf install https://github.com/PowerShell/PowerShell/releases/download/v7.3.5/powershell-7.3.5-1.rh.x86_64.rpm
77+
sudo dnf install https://github.com/PowerShell/PowerShell/releases/download/v7.3.6/powershell-7.3.6-1.rh.x86_64.rpm
7878
```
7979

8080
On RHEL 8:
8181

8282
```sh
83-
sudo dnf install https://github.com/PowerShell/PowerShell/releases/download/v7.3.5/powershell-7.3.5-1.rh.x86_64.rpm
83+
sudo dnf install https://github.com/PowerShell/PowerShell/releases/download/v7.3.6/powershell-7.3.6-1.rh.x86_64.rpm
8484
```
8585

8686
On RHEL 7:
8787

8888
```sh
89-
sudo yum install https://github.com/PowerShell/PowerShell/releases/download/v7.3.5/powershell-7.3.5-1.rh.x86_64.rpm
89+
sudo yum install https://github.com/PowerShell/PowerShell/releases/download/v7.3.6/powershell-7.3.6-1.rh.x86_64.rpm
9090
```
9191

9292
## Uninstallation - Red Hat Enterprise Linux (RHEL) 7

0 commit comments

Comments
 (0)