Skip to content

Commit 2613bac

Browse files
authored
Update version numbers for 7.5.1 release (#12034)
1 parent 98381ee commit 2613bac

File tree

8 files changed

+60
-60
lines changed

8 files changed

+60
-60
lines changed

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

Lines changed: 22 additions & 22 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: 03/13/2025
3+
ms.date: 04/28/2025
44
title: Installing PowerShell on Windows
55
---
66
# Installing PowerShell on Windows
@@ -41,8 +41,8 @@ winget search Microsoft.PowerShell
4141
```Output
4242
Name Id Version Source
4343
---------------------------------------------------------------
44-
PowerShell Microsoft.PowerShell 7.5.0.0 winget
45-
PowerShell Preview Microsoft.PowerShell.Preview 7.6.0.2 winget
44+
PowerShell Microsoft.PowerShell 7.5.1.0 winget
45+
PowerShell Preview Microsoft.PowerShell.Preview 7.6.0.4 winget
4646
```
4747

4848
Install PowerShell or PowerShell Preview using the `id` parameter
@@ -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.0-win-x64.msi][22]
69-
- [PowerShell-7.5.0-win-x86.msi][24]
70-
- [PowerShell-7.5.0-win-arm64.msi][20]
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]
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.0-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.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
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.0-win-x64.zip][23]
152-
- [PowerShell-7.5.0-win-x86.zip][25]
153-
- [PowerShell-7.5.0-win-arm64.zip][21]
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]
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.0-win-arm64.zip'
260+
$zipfile = 'PowerShell-7.5.1-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.0-win-arm64.zip
273+
Expand-Archive .\PowerShell-7.5.1-win-arm64.zip
274274
275275
# Set up remoting to PowerShell 7
276-
Set-Location .\PowerShell-7.5.0-win-arm64
276+
Set-Location .\PowerShell-7.5.1-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.0
288+
Enter-PSSession -ComputerName $deviceIp -Credential Administrator -Configuration PowerShell.7.5.1
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.0-win-x64.zip'
335+
$zipfile = 'PowerShell-7.5.1-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.0-win-x64.zip -DestinationPath 'C:\Program Files\PowerShell 7'
343+
Expand-Archive -Path C:\PowerShell-7.5.1-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.0/PowerShell-7.5.0-win-arm64.msi
384-
[21]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.0/PowerShell-7.5.0-win-arm64.zip
385-
[22]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.0/PowerShell-7.5.0-win-x64.msi
386-
[23]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.0/PowerShell-7.5.0-win-x64.zip
387-
[24]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.0/PowerShell-7.5.0-win-x86.msi
388-
[25]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.0/PowerShell-7.5.0-win-x86.zip
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
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: 13 additions & 13 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: 01/29/2025
3+
ms.date: 04/28/2025
44
title: Installing PowerShell on macOS
55
---
66

@@ -122,20 +122,20 @@ are:
122122
- x64 processors - [powershell-7.4.7-osx-x64.pkg][20]
123123
- Arm64 processors - [powershell-7.4.7-osx-arm64.pkg][18]
124124
- PowerShell 7.5
125-
- x64 processors - [powershell-7.5.0-osx-x64.pkg][24]
126-
- Arm64 processors - [powershell-7.5.0-arm64.pkg][22]
125+
- x64 processors - [powershell-7.5.1-osx-x64.pkg][24]
126+
- Arm64 processors - [powershell-7.5.1-arm64.pkg][22]
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.5.0-osx-x64.pkg -target /
132+
sudo installer -pkg ./Downloads/powershell-7.5.1-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.5.0-osx-x64.pkg" cannot be opened because Apple cannot check it for malicious
138+
> "powershell-7.5.1-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.5.0-osx-x64.pkg`. If you are using
151+
1. Run `sudo xattr -rd com.apple.quarantine ./Downloads/powershell-7.5.1-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.
@@ -191,15 +191,15 @@ current versions are:
191191
- x64 processors - [powershell-7.4.7-osx-x64.tar.gz][21]
192192
- Arm64 processors - [powershell-7.4.7-osx-arm64.tar.gz][19]
193193
- PowerShell 7.5-preview
194-
- x64 processors - [powershell-7.5.0-osx-x64.tar.gz][25]
195-
- Arm64 processors - [powershell-7.5.0-osx-arm64.tar.gz][23]
194+
- x64 processors - [powershell-7.5.1-osx-x64.tar.gz][25]
195+
- Arm64 processors - [powershell-7.5.1-osx-arm64.tar.gz][23]
196196

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

200200
```sh
201201
# Download the powershell '.tar.gz' archive
202-
curl -L -o /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.5.0/powershell-7.5.0-osx-x64.tar.gz
202+
curl -L -o /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.5.1/powershell-7.5.1-osx-x64.tar.gz
203203

204204
# Create the target folder where powershell is placed
205205
sudo mkdir -p /usr/local/microsoft/powershell/7
@@ -282,8 +282,8 @@ support those methods.
282282
[19]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.7/powershell-7.4.7-osx-arm64.tar.gz
283283
[20]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.7/powershell-7.4.7-osx-x64.pkg
284284
[21]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.7/powershell-7.4.7-osx-x64.tar.gz
285-
[22]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.0/powershell-7.5.0-osx-arm64.pkg
286-
[23]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.0/powershell-7.5.0-osx-arm64.tar.gz
287-
[24]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.0/powershell-7.5.0-osx-x64.pkg
288-
[25]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.0/powershell-7.5.0-osx-x64.tar.gz
285+
[22]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.1/powershell-7.5.1-osx-arm64.pkg
286+
[23]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.1/powershell-7.5.1-osx-arm64.tar.gz
287+
[24]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.1/powershell-7.5.1-osx-x64.pkg
288+
[25]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.1/powershell-7.5.1-osx-x64.tar.gz
289289
[26]: https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html

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

Lines changed: 3 additions & 3 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: 01/27/2025
3+
ms.date: 04/28/2025
44
title: Community support for PowerShell on Linux
55
---
66
# Community support for PowerShell on Linux
@@ -81,8 +81,8 @@ to the current versions are:
8181
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.7/powershell-7.4.7-linux-arm32.tar.gz`
8282
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.7/powershell-7.4.7-linux-arm64.tar.gz`
8383
- PowerShell 7.5 - latest stable release
84-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.5.0/powershell-7.5.0-linux-arm32.tar.gz`
85-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.5.0/powershell-7.5.0-linux-arm64.tar.gz`
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`
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: 3 additions & 3 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: 01/27/2025
3+
ms.date: 04/28/2025
44
title: Installing PowerShell on Alpine Linux
55
---
66
# Installing PowerShell on Alpine Linux
@@ -23,7 +23,7 @@ Installation on Alpine is based on downloading tar.gz package from the [releases
2323
to the package depends on the version of PowerShell you want to install.
2424

2525
- PowerShell 7.4 - `https://github.com/PowerShell/PowerShell/releases/download/v7.4.7/powershell-7.4.7-linux-musl-x64.tar.gz`
26-
- PowerShell 7.5 - `https://github.com/PowerShell/PowerShell/releases/download/v7.5.0/powershell-7.5.0-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`
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.0/powershell-7.5.0-linux-musl-x64.tar.gz -o /tmp/powershell.tar.gz
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
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: 5 additions & 5 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: 01/29/2025
3+
ms.date: 04/28/2025
44
title: Installing PowerShell on Debian
55
---
66
# Installing PowerShell on Debian
@@ -74,7 +74,7 @@ The link to the current version is:
7474
- PowerShell 7.4 (LTS) universal package for supported versions of Debian
7575
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.7/powershell_7.4.7-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.0/powershell_7.5.0-1.deb_amd64.deb`
77+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.5.1/powershell_7.5.1-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.0/powershell_7.5.0-1.deb_amd64.deb
93+
wget https://github.com/PowerShell/PowerShell/releases/download/v7.5.1/powershell_7.5.1-1.deb_amd64.deb
9494

9595
###################################
9696
# Install the PowerShell package
97-
sudo dpkg -i powershell_7.5.0-1.deb_amd64.deb
97+
sudo dpkg -i powershell_7.5.1-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.0-1.deb_amd64.deb
103+
rm powershell_7.5.1-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: 01/27/2025
3+
ms.date: 04/28/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.0-linux-arm32.tar.gz`
136-
- `powershell-7.5.0-linux-arm64.tar.gz`
137-
- `powershell-7.5.0-linux-x64.tar.gz`
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`
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.0/powershell-7.5.0-linux-x64.tar.gz
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
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: 4 additions & 4 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: 01/29/2025
3+
ms.date: 04/28/2025
44
title: Installing PowerShell on Red Hat Enterprise Linux (RHEL)
55
---
66
# Installing PowerShell on Red Hat Enterprise Linux (RHEL)
@@ -68,16 +68,16 @@ The link to the current version is:
6868

6969
- PowerShell 7.4.7 universal package for supported versions of RHEL
7070
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.7/powershell-7.4.7-1.rh.x86_64.rpm`
71-
- PowerShell 7.5.0 universal package for supported versions of RHEL
72-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.5.0/powershell-7.5.0-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`
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.0/powershell-7.5.0-1.rh.x86_64.rpm
80+
sudo dnf install https://github.com/PowerShell/PowerShell/releases/download/v7.5.1/powershell-7.5.1-1.rh.x86_64.rpm
8181
```
8282

8383
## Uninstall PowerShell

reference/docs-conceptual/install/install-ubuntu.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 Ubuntu
3-
ms.date: 01/29/2025
3+
ms.date: 04/28/2025
44
title: Installing PowerShell on Ubuntu
55
---
66
# Installing PowerShell on Ubuntu
@@ -86,7 +86,7 @@ The link to the current version is:
8686
- PowerShell 7.4 (LTS) universal package for supported versions of Ubuntu
8787
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.7/powershell_7.4.7-1.deb_amd64.deb`
8888
- PowerShell 7.5 universal package for supported versions of Ubuntu
89-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.5.0/powershell-preview_7.5.0-1.deb_amd64.deb`
89+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.5.1/powershell-preview_7.5.1-1.deb_amd64.deb`
9090

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

104104
# Download the PowerShell package file
105-
wget https://github.com/PowerShell/PowerShell/releases/download/v7.5.0/powershell_7.5.0-1.deb_amd64.deb
105+
wget https://github.com/PowerShell/PowerShell/releases/download/v7.5.1/powershell_7.5.1-1.deb_amd64.deb
106106

107107
###################################
108108
# Install the PowerShell package
109-
sudo dpkg -i powershell_7.5.0-1.deb_amd64.deb
109+
sudo dpkg -i powershell_7.5.1-1.deb_amd64.deb
110110

111111
# Resolve missing dependencies and finish the install (if necessary)
112112
sudo apt-get install -f
113113

114114
# Delete the downloaded package file
115-
rm powershell_7.5.0-1.deb_amd64.deb
115+
rm powershell_7.5.1-1.deb_amd64.deb
116116

117117
# Start PowerShell Preview
118118
pwsh

0 commit comments

Comments
 (0)