Skip to content

Commit 7d34367

Browse files
(AB#243898) Update for latest patch versions (MicrosoftDocs#11022)
This change updates the patch versions for PowerShell in the install documentation to match the new releases made on 2024-04-11. PowerShell released the following versions: - [`v7.4.2`][v7.4.2] - [`v7.3.12`][v7.3.12] - [`v7.2.19`][v7.2.19] This change fixes AB#243898. [v7.4.2]: https://github.com/PowerShell/PowerShell/releases/tag/v7.4.2 [v7.3.12]: https://github.com/PowerShell/PowerShell/releases/tag/v7.3.12 [v7.2.19]: https://github.com/PowerShell/PowerShell/releases/tag/v7.2.19
1 parent 3ece61f commit 7d34367

10 files changed

+88
-88
lines changed

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

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ winget search Microsoft.PowerShell
5151
```Output
5252
Name Id Version Source
5353
-----------------------------------------------------------------
54-
PowerShell Microsoft.PowerShell 7.4.1.0 winget
55-
PowerShell Preview Microsoft.PowerShell.Preview 7.4.0.101 winget
54+
PowerShell Microsoft.PowerShell 7.4.2.0 winget
55+
PowerShell Preview Microsoft.PowerShell.Preview 7.5.0.2 winget
5656
```
5757

5858
Install PowerShell or PowerShell Preview using the `id` parameter
@@ -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.4.1-win-x64.msi][28]
76-
- [PowerShell-7.4.1-win-x86.msi][30]
75+
- [PowerShell-7.4.2-win-x64.msi][28]
76+
- [PowerShell-7.4.2-win-x86.msi][30]
7777

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

@@ -143,7 +143,7 @@ installation options:
143143
The following example shows how to silently install PowerShell with all the install options enabled.
144144

145145
```powershell
146-
msiexec.exe /package PowerShell-7.4.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
146+
msiexec.exe /package PowerShell-7.4.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
147147
```
148148

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

157-
- [PowerShell-7.4.1-win-x64.zip][29]
158-
- [PowerShell-7.4.1-win-x86.zip][31]
159-
- [PowerShell-7.4.1-win-arm64.zip][27]
157+
- [PowerShell-7.4.2-win-x64.zip][29]
158+
- [PowerShell-7.4.2-win-x86.zip][31]
159+
- [PowerShell-7.4.2-win-arm64.zip][27]
160160

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

256256
> [!NOTE]
257257
> When upgrading, PowerShell won't upgrade from an LTS version to a non-LTS version. It only
258-
> upgrades to the latest version of LTS, for example, from 7.2.3 to 7.2.18. To upgrade from an
258+
> upgrades to the latest version of LTS, for example, from 7.2.3 to 7.2.19. To upgrade from an
259259
> LTS release to a newer stable version or the next LTS, you need to install the new version with
260260
> the MSI for that release.
261261
>
@@ -269,7 +269,7 @@ Windows 10 IoT Enterprise comes with Windows PowerShell, which we can use to dep
269269
```powershell
270270
# Replace the placeholder information for the following variables:
271271
$deviceip = '<device ip address'
272-
$zipfile = 'PowerShell-7.4.1-win-arm64.zip'
272+
$zipfile = 'PowerShell-7.4.2-win-arm64.zip'
273273
$downloadfolder = 'u:\users\administrator\Downloads' # The download location is local to the device.
274274
# There should be enough space for the zip file and the unzipped contents.
275275
@@ -282,10 +282,10 @@ Copy-Item $zipfile -Destination $downloadfolder -ToSession $S
282282
#Connect to the device and expand the archive
283283
Enter-PSSession $S
284284
Set-Location u:\users\administrator\Downloads
285-
Expand-Archive .\PowerShell-7.4.1-win-arm64.zip
285+
Expand-Archive .\PowerShell-7.4.2-win-arm64.zip
286286
287287
# Set up remoting to PowerShell 7
288-
Set-Location .\PowerShell-7.4.1-win-arm64
288+
Set-Location .\PowerShell-7.4.2-win-arm64
289289
# Be sure to use the -PowerShellHome parameter otherwise it tries to create a new
290290
# endpoint with Windows PowerShell 5.1
291291
.\Install-PowerShellRemoting.ps1 -PowerShellHome .
@@ -297,7 +297,7 @@ PowerShell has to restart WinRM. Now you can connect to PowerShell 7 endpoint on
297297
```powershell
298298
299299
# Be sure to use the -Configuration parameter. If you omit it, you connect to Windows PowerShell 5.1
300-
Enter-PSSession -ComputerName $deviceIp -Credential Administrator -Configuration PowerShell.7.4.1
300+
Enter-PSSession -ComputerName $deviceIp -Credential Administrator -Configuration PowerShell.7.4.2
301301
```
302302

303303
## Deploying on Windows 10 IoT Core
@@ -346,15 +346,15 @@ Deploy PowerShell to Nano Server using the following steps.
346346
# Replace the placeholder information for the following variables:
347347
$ipaddr = '<Nano Server IP address>'
348348
$credential = Get-Credential # <An Administrator account on the system>
349-
$zipfile = 'PowerShell-7.4.1-win-x64.zip'
349+
$zipfile = 'PowerShell-7.4.2-win-x64.zip'
350350
# Connect to the built-in instance of Windows PowerShell
351351
$session = New-PSSession -ComputerName $ipaddr -Credential $credential
352352
# Copy the file to the Nano Server instance
353353
Copy-Item $zipfile c:\ -ToSession $session
354354
# Enter the interactive remote session
355355
Enter-PSSession $session
356356
# Extract the ZIP file
357-
Expand-Archive -Path C:\PowerShell-7.4.1-win-x64.zip -DestinationPath 'C:\Program Files\PowerShell 7'
357+
Expand-Archive -Path C:\PowerShell-7.4.2-win-x64.zip -DestinationPath 'C:\Program Files\PowerShell 7'
358358
```
359359

360360
If you want WSMan-based remoting, follow the instructions to create a remoting endpoint using the
@@ -409,11 +409,11 @@ can't support those methods.
409409
[22]: https://aka.ms/powershell-release?tag=preview
410410
[23]: https://aka.ms/powershell-release?tag=stable
411411
[24]: https://github.com/ms-iot/iot-adk-addonkit/blob/master/Tools/IoTCoreImaging/Docs/Import-PSCoreRelease.md#Import-PSCoreRelease
412-
[27]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.1/PowerShell-7.4.1-win-arm64.zip
413-
[28]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.1/PowerShell-7.4.1-win-x64.msi
414-
[29]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.1/PowerShell-7.4.1-win-x64.zip
415-
[30]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.1/PowerShell-7.4.1-win-x86.msi
416-
[31]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.1/PowerShell-7.4.1-win-x86.zip
412+
[27]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.2/PowerShell-7.4.2-win-arm64.zip
413+
[28]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.2/PowerShell-7.4.2-win-x64.msi
414+
[29]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.2/PowerShell-7.4.2-win-x64.zip
415+
[30]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.2/PowerShell-7.4.2-win-x86.msi
416+
[31]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.2/PowerShell-7.4.2-win-x86.zip
417417
[32]: https://www.microsoft.com/download/details.aspx?id=50410
418418
[33]: https://www.microsoft.com/store/apps/9MZ1SNWT0N5D
419419
[34]: microsoft-update-faq.yml

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

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -115,27 +115,27 @@ brew upgrade powershell-lts
115115
Starting with version 7.2, PowerShell supports the Apple M1 processor. Download the install package
116116
from the [releases][09] page onto your computer. The links to the current versions are:
117117

118-
- PowerShell 7.4.1
119-
- x64 processors - [powershell-7.4.1-osx-x64.pkg][24]
120-
- M1 processors - [powershell-7.4.1-osx-arm64.pkg][22]
121-
- PowerShell 7.3.11
122-
- x64 processors - [powershell-7.3.11-osx-x64.pkg][20]
123-
- M1 processors - [powershell-7.3.11-osx-arm64.pkg][18]
124-
- PowerShell 7.2.18 (LTS)
125-
- x64 processors - [powershell-7.2.18-osx-x64.pkg][16]
126-
- M1 processors - [powershell-7.2.18-osx-arm64.pkg][14]
118+
- PowerShell 7.4.2
119+
- x64 processors - [powershell-7.4.2-osx-x64.pkg][24]
120+
- M1 processors - [powershell-7.4.2-osx-arm64.pkg][22]
121+
- PowerShell 7.3.12
122+
- x64 processors - [powershell-7.3.12-osx-x64.pkg][20]
123+
- M1 processors - [powershell-7.3.12-osx-arm64.pkg][18]
124+
- PowerShell 7.2.19 (LTS)
125+
- x64 processors - [powershell-7.2.19-osx-x64.pkg][16]
126+
- M1 processors - [powershell-7.2.19-osx-arm64.pkg][14]
127127

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

131131
```sh
132-
sudo installer -pkg ./Downloads/powershell-7.4.1-osx-x64.pkg -target /
132+
sudo installer -pkg ./Downloads/powershell-7.4.2-osx-x64.pkg -target /
133133
```
134134

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

138-
> "powershell-7.4.1-osx-x64.pkg" cannot be opened because Apple cannot check it for malicious
138+
> "powershell-7.4.2-osx-x64.pkg" cannot be opened because Apple cannot check it for malicious
139139
> software.
140140
141141
There are two ways to work around this issue:
@@ -148,7 +148,7 @@ Using the Finder
148148

149149
From the command line
150150

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

190190
- PowerShell 7.4 (LTS)
191-
- x64 processors - [powershell-7.4.1-osx-x64.tar.gz][25]
192-
- M1 processors - [powershell-7.4.1-osx-arm64.tar.gz][23]
191+
- x64 processors - [powershell-7.4.2-osx-x64.tar.gz][25]
192+
- M1 processors - [powershell-7.4.2-osx-arm64.tar.gz][23]
193193
- PowerShell 7.3 (stable)
194-
- x64 processors - [powershell-7.3.11-osx-x64.tar.gz][21]
195-
- M1 processors - [powershell-7.3.11-osx-arm64.tar.gz][19]
194+
- x64 processors - [powershell-7.3.12-osx-x64.tar.gz][21]
195+
- M1 processors - [powershell-7.3.12-osx-arm64.tar.gz][19]
196196
- PowerShell 7.2 (LTS)
197-
- x64 processors - [powershell-7.2.18-osx-x64.tar.gz][17]
198-
- M1 processors - [powershell-7.2.18-osx-arm64.tar.gz][15]
197+
- x64 processors - [powershell-7.2.19-osx-x64.tar.gz][17]
198+
- M1 processors - [powershell-7.2.19-osx-arm64.tar.gz][15]
199199

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

203203
```sh
204204
# Download the powershell '.tar.gz' archive
205-
curl -L -o /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.4.1/powershell-7.4.1-osx-x64.tar.gz
205+
curl -L -o /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.4.2/powershell-7.4.2-osx-x64.tar.gz
206206

207207
# Create the target folder where powershell is placed
208208
sudo mkdir -p /usr/local/microsoft/powershell/7
@@ -281,16 +281,16 @@ support those methods.
281281
[11]: https://docs.brew.sh/Manpage#link-ln-options-formula
282282
[12]: https://github.com/Homebrew
283283
[13]: https://github.com/Homebrew/homebrew-cask
284-
[14]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.18/powershell-7.2.18-osx-arm64.pkg
285-
[15]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.18/powershell-7.2.18-osx-arm64.tar.gz
286-
[16]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.18/powershell-7.2.18-osx-x64.pkg
287-
[17]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.18/powershell-7.2.18-osx-x64.tar.gz
288-
[18]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.11/powershell-7.3.11-osx-arm64.pkg
289-
[19]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.11/powershell-7.3.11-osx-arm64.tar.gz
290-
[20]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.11/powershell-7.3.11-osx-x64.pkg
291-
[21]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.11/powershell-7.3.11-osx-x64.tar.gz
292-
[22]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.1/powershell-7.4.1-osx-arm64.pkg
293-
[23]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.1/powershell-7.4.1-osx-arm64.tar.gz
294-
[24]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.1/powershell-7.4.1-osx-x64.pkg
295-
[25]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.1/powershell-7.4.1-osx-x64.tar.gz
284+
[14]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.19/powershell-7.2.19-osx-arm64.pkg
285+
[15]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.19/powershell-7.2.19-osx-arm64.tar.gz
286+
[16]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.19/powershell-7.2.19-osx-x64.pkg
287+
[17]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.19/powershell-7.2.19-osx-x64.tar.gz
288+
[18]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.12/powershell-7.3.12-osx-arm64.pkg
289+
[19]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.12/powershell-7.3.12-osx-arm64.tar.gz
290+
[20]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.12/powershell-7.3.12-osx-x64.pkg
291+
[21]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.12/powershell-7.3.12-osx-x64.tar.gz
292+
[22]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.2/powershell-7.4.2-osx-arm64.pkg
293+
[23]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.2/powershell-7.4.2-osx-arm64.tar.gz
294+
[24]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.2/powershell-7.4.2-osx-x64.pkg
295+
[25]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.2/powershell-7.4.2-osx-x64.tar.gz
296296
[26]: https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ the next release (current or LTS).
2525

2626
> [!IMPORTANT]
2727
> You must have the latest patch update installed to qualify for support. For example, if you're
28-
> running PowerShell 7.4.0 and 7.4.1 has been released, you must update to 7.4.1 to qualify for
28+
> running PowerShell 7.4.0 and 7.4.2 has been released, you must update to 7.4.2 to qualify for
2929
> support.
3030
3131
## Supported platforms

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,12 @@ apt -y remove powershell
7777
Download the tar.gz package from the [releases][12] page onto your Raspberry Pi computer. The links
7878
to the current versions are:
7979

80-
- PowerShell 7.4.1 - latest LTS release
81-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.1/powershell-7.4.1-linux-arm32.tar.gz`
82-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.1/powershell-7.4.1-linux-arm64.tar.gz`
83-
- PowerShell 7.3.11 - latest stable release
84-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.3.11/powershell-7.3.11-linux-arm32.tar.gz`
85-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.3.11/powershell-7.3.11-linux-arm64.tar.gz`
80+
- PowerShell 7.4.2 - latest LTS release
81+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.2/powershell-7.4.2-linux-arm32.tar.gz`
82+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.2/powershell-7.4.2-linux-arm64.tar.gz`
83+
- PowerShell 7.3.12 - latest stable release
84+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.3.12/powershell-7.3.12-linux-arm32.tar.gz`
85+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.3.12/powershell-7.3.12-linux-arm64.tar.gz`
8686

8787
Use the following shell commands to download and install the package. This script detects whether
8888
you are running a 32 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
@@ -20,9 +20,9 @@ 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.1 - `https://github.com/PowerShell/PowerShell/releases/download/v7.4.1/powershell-7.4.1-linux-musl-x64.tar.gz`
24-
- PowerShell 7.3.11 - `https://github.com/PowerShell/PowerShell/releases/download/v7.3.11/powershell-7.3.11-linux-alpine-x64.tar.gz`
25-
- PowerShell 7.2.18 - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.18/powershell-7.2.18-linux-alpine-x64.tar.gz`
23+
- PowerShell 7.4.2 - `https://github.com/PowerShell/PowerShell/releases/download/v7.4.2/powershell-7.4.2-linux-musl-x64.tar.gz`
24+
- PowerShell 7.3.12 - `https://github.com/PowerShell/PowerShell/releases/download/v7.3.12/powershell-7.3.12-linux-alpine-x64.tar.gz`
25+
- PowerShell 7.2.19 - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.19/powershell-7.2.19-linux-alpine-x64.tar.gz`
2626

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

@@ -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.1/powershell-7.4.1-linux-musl-x64.tar.gz -o /tmp/powershell.tar.gz
50+
curl -L https://github.com/PowerShell/PowerShell/releases/download/v7.4.2/powershell-7.4.2-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: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ 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.1/powershell_7.4.1-1.deb_amd64.deb`
73+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.2/powershell_7.4.2-1.deb_amd64.deb`
7474
- PowerShell 7.3 (stable) universal package for supported versions of Debian
75-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.3.11/powershell_7.3.11-1.deb_amd64.deb`
75+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.3.12/powershell_7.3.12-1.deb_amd64.deb`
7676
- PowerShell 7.2 (LTS) universal package for supported versions of Debian
77-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.2.18/powershell_7.2.18-1.deb_amd64.deb`
77+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.2.19/powershell_7.2.19-1.deb_amd64.deb`
7878

7979
The following shell script downloads and installs the current preview 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.4.1/powershell_7.4.1-1.deb_amd64.deb
93+
wget https://github.com/PowerShell/PowerShell/releases/download/v7.4.2/powershell_7.4.2-1.deb_amd64.deb
9494

9595
###################################
9696
# Install the PowerShell package
97-
sudo dpkg -i powershell_7.4.1-1.deb_amd64.deb
97+
sudo dpkg -i powershell_7.4.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.4.1-1.deb_amd64.deb
103+
rm powershell_7.4.2-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
@@ -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.11-linux-arm32.tar.gz`
126-
- `powershell-7.3.11-linux-arm64.tar.gz`
127-
- `powershell-7.3.11-linux-x64.tar.gz`
125+
- `powershell-7.3.12-linux-arm32.tar.gz`
126+
- `powershell-7.3.12-linux-arm64.tar.gz`
127+
- `powershell-7.3.12-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.11/powershell-7.3.11-linux-x64.tar.gz
134+
curl -L -o /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.3.12/powershell-7.3.12-linux-x64.tar.gz
135135

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

0 commit comments

Comments
 (0)