Skip to content

Commit b2f7283

Browse files
authored
Update version info for new releases (#11295)
1 parent 0b6b83c commit b2f7283

File tree

9 files changed

+74
-77
lines changed

9 files changed

+74
-77
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
@@ -1,6 +1,6 @@
11
---
22
description: Information about installing PowerShell on Windows
3-
ms.date: 06/19/2024
3+
ms.date: 07/24/2024
44
title: Installing PowerShell on Windows
55
---
66
# Installing PowerShell on Windows
@@ -55,7 +55,7 @@ winget search Microsoft.PowerShell
5555
```Output
5656
Name Id Version Source
5757
-----------------------------------------------------------------
58-
PowerShell Microsoft.PowerShell 7.4.3.0 winget
58+
PowerShell Microsoft.PowerShell 7.4.4.0 winget
5959
PowerShell Preview Microsoft.PowerShell.Preview 7.5.0.3 winget
6060
```
6161

@@ -76,8 +76,8 @@ 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.3-win-x64.msi][28]
80-
- [PowerShell-7.4.3-win-x86.msi][30]
79+
- [PowerShell-7.4.4-win-x64.msi][28]
80+
- [PowerShell-7.4.4-win-x86.msi][30]
8181

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

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

149149
```powershell
150-
msiexec.exe /package PowerShell-7.4.3-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
150+
msiexec.exe /package PowerShell-7.4.4-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
151151
```
152152

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

161-
- [PowerShell-7.4.3-win-x64.zip][29]
162-
- [PowerShell-7.4.3-win-x86.zip][31]
163-
- [PowerShell-7.4.3-win-arm64.zip][27]
161+
- [PowerShell-7.4.4-win-x64.zip][29]
162+
- [PowerShell-7.4.4-win-x86.zip][31]
163+
- [PowerShell-7.4.4-win-arm64.zip][27]
164164

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

260260
> [!NOTE]
261261
> When upgrading, PowerShell won't upgrade from an LTS version to a non-LTS version. It only
262-
> upgrades to the latest version of LTS, for example, from 7.2.3 to 7.2.21. To upgrade from an
262+
> upgrades to the latest version of LTS, for example, from 7.2.3 to 7.2.22. To upgrade from an
263263
> LTS release to a newer stable version or the next LTS, you need to install the new version with
264264
> the MSI for that release.
265265
>
@@ -273,7 +273,7 @@ Windows 10 IoT Enterprise comes with Windows PowerShell, which we can use to dep
273273
```powershell
274274
# Replace the placeholder information for the following variables:
275275
$deviceip = '<device ip address'
276-
$zipfile = 'PowerShell-7.4.3-win-arm64.zip'
276+
$zipfile = 'PowerShell-7.4.4-win-arm64.zip'
277277
$downloadfolder = 'u:\users\administrator\Downloads' # The download location is local to the device.
278278
# There should be enough space for the zip file and the unzipped contents.
279279
@@ -286,10 +286,10 @@ Copy-Item $zipfile -Destination $downloadfolder -ToSession $S
286286
#Connect to the device and expand the archive
287287
Enter-PSSession $S
288288
Set-Location u:\users\administrator\Downloads
289-
Expand-Archive .\PowerShell-7.4.3-win-arm64.zip
289+
Expand-Archive .\PowerShell-7.4.4-win-arm64.zip
290290
291291
# Set up remoting to PowerShell 7
292-
Set-Location .\PowerShell-7.4.3-win-arm64
292+
Set-Location .\PowerShell-7.4.4-win-arm64
293293
# Be sure to use the -PowerShellHome parameter otherwise it tries to create a new
294294
# endpoint with Windows PowerShell 5.1
295295
.\Install-PowerShellRemoting.ps1 -PowerShellHome .
@@ -301,7 +301,7 @@ PowerShell has to restart WinRM. Now you can connect to PowerShell 7 endpoint on
301301
```powershell
302302
303303
# Be sure to use the -Configuration parameter. If you omit it, you connect to Windows PowerShell 5.1
304-
Enter-PSSession -ComputerName $deviceIp -Credential Administrator -Configuration PowerShell.7.4.3
304+
Enter-PSSession -ComputerName $deviceIp -Credential Administrator -Configuration PowerShell.7.4.4
305305
```
306306

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

364364
If you want WSMan-based remoting, follow the instructions to create a remoting endpoint using the
@@ -413,11 +413,11 @@ can't support those methods.
413413
[22]: https://aka.ms/powershell-release?tag=preview
414414
[23]: https://aka.ms/powershell-release?tag=stable
415415
[24]: https://github.com/ms-iot/iot-adk-addonkit/blob/master/Tools/IoTCoreImaging/Docs/Import-PSCoreRelease.md#Import-PSCoreRelease
416-
[27]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.3/PowerShell-7.4.3-win-arm64.zip
417-
[28]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.3/PowerShell-7.4.3-win-x64.msi
418-
[29]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.3/PowerShell-7.4.3-win-x64.zip
419-
[30]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.3/PowerShell-7.4.3-win-x86.msi
420-
[31]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.3/PowerShell-7.4.3-win-x86.zip
416+
[27]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/PowerShell-7.4.4-win-arm64.zip
417+
[28]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/PowerShell-7.4.4-win-x64.msi
418+
[29]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/PowerShell-7.4.4-win-x64.zip
419+
[30]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/PowerShell-7.4.4-win-x86.msi
420+
[31]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/PowerShell-7.4.4-win-x86.zip
421421
[32]: https://www.microsoft.com/download/details.aspx?id=50410
422422
[33]: https://www.microsoft.com/store/apps/9MZ1SNWT0N5D
423423
[34]: microsoft-update-faq.yml

reference/docs-conceptual/install/Installing-PowerShell-on-macOS.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 macOS
3-
ms.date: 06/19/2024
3+
ms.date: 07/24/2024
44
title: Installing PowerShell on macOS
55
---
66

@@ -116,11 +116,11 @@ Starting with version 7.2, PowerShell supports the Apple M1 processor. Download
116116
from the [releases][09] page onto your computer. The links to the current versions are:
117117

118118
- PowerShell 7.4
119-
- x64 processors - [powershell-7.4.3-osx-x64.pkg][20]
120-
- M1 processors - [powershell-7.4.3-osx-arm64.pkg][18]
119+
- x64 processors - [powershell-7.4.4-osx-x64.pkg][20]
120+
- M1 processors - [powershell-7.4.4-osx-arm64.pkg][18]
121121
- PowerShell 7.2 (LTS)
122-
- x64 processors - [powershell-7.2.21-osx-x64.pkg][16]
123-
- M1 processors - [powershell-7.2.21-osx-arm64.pkg][14]
122+
- x64 processors - [powershell-7.2.22-osx-x64.pkg][16]
123+
- M1 processors - [powershell-7.2.22-osx-arm64.pkg][14]
124124
- PowerShell 7.5-preview
125125
- x64 processors - [powershell-7.5.0-preview.3-osx-x64.pkg][24]
126126
- M1 processors - [powershell-7.5.0-preview.3-arm64.pkg][22]
@@ -129,13 +129,13 @@ You can double-click the file and follow the prompts, or install it from the ter
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.3-osx-x64.pkg -target /
132+
sudo installer -pkg ./Downloads/powershell-7.4.4-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.3-osx-x64.pkg" cannot be opened because Apple cannot check it for malicious
138+
> "powershell-7.4.4-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.3-osx-x64.pkg`. If you are using
151+
1. Run `sudo xattr -rd com.apple.quarantine ./Downloads/powershell-7.4.4-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,11 +188,11 @@ 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.3-osx-x64.tar.gz][21]
192-
- M1 processors - [powershell-7.4.3-osx-arm64.tar.gz][19]
191+
- x64 processors - [powershell-7.4.4-osx-x64.tar.gz][21]
192+
- M1 processors - [powershell-7.4.4-osx-arm64.tar.gz][19]
193193
- PowerShell 7.2 (LTS)
194-
- x64 processors - [powershell-7.2.21-osx-x64.tar.gz][17]
195-
- M1 processors - [powershell-7.2.21-osx-arm64.tar.gz][15]
194+
- x64 processors - [powershell-7.2.22-osx-x64.tar.gz][17]
195+
- M1 processors - [powershell-7.2.22-osx-arm64.tar.gz][15]
196196
- PowerShell 7.5-preview
197197
- x64 processors - [powershell-7.5.0-preview.3-osx-x64.tar.gz][25]
198198
- M1 processors - [powershell-7.5.0-preview.3-osx-arm64.tar.gz][23]
@@ -202,7 +202,7 @@ 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.3/powershell-7.4.3-osx-x64.tar.gz
205+
curl -L -o /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/powershell-7.4.4-osx-x64.tar.gz
206206

207207
# Create the target folder where powershell is placed
208208
sudo mkdir -p /usr/local/microsoft/powershell/7
@@ -281,14 +281,14 @@ 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.21/powershell-7.2.21-osx-arm64.pkg
285-
[15]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.21/powershell-7.2.21-osx-arm64.tar.gz
286-
[16]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.21/powershell-7.2.21-osx-x64.pkg
287-
[17]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.21/powershell-7.2.21-osx-x64.tar.gz
288-
[18]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.3/powershell-7.4.3-osx-arm64.pkg
289-
[19]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.3/powershell-7.4.3-osx-arm64.tar.gz
290-
[20]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.3/powershell-7.4.3-osx-x64.pkg
291-
[21]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.3/powershell-7.4.3-osx-x64.tar.gz
284+
[14]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.22/powershell-7.2.22-osx-arm64.pkg
285+
[15]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.22/powershell-7.2.22-osx-arm64.tar.gz
286+
[16]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.22/powershell-7.2.22-osx-x64.pkg
287+
[17]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.22/powershell-7.2.22-osx-x64.tar.gz
288+
[18]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/powershell-7.4.4-osx-arm64.pkg
289+
[19]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/powershell-7.4.4-osx-arm64.tar.gz
290+
[20]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/powershell-7.4.4-osx-x64.pkg
291+
[21]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/powershell-7.4.4-osx-x64.tar.gz
292292
[22]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.0-preview.3/powershell-7.5.0-preview.3-osx-arm64.pkg
293293
[23]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.0-preview.3/powershell-7.5.0-preview.3-osx-arm64.tar.gz
294294
[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: 4 additions & 7 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: 06/19/2024
3+
ms.date: 07/24/2024
44
title: Community support for PowerShell on Linux
55
---
66
# Community support for PowerShell on Linux
@@ -70,12 +70,9 @@ information about installing these packages, see the [PowerShell][05] page in th
7070
Download the tar.gz package from the [releases][08] page onto your Raspberry Pi computer. The links
7171
to the current versions are:
7272

73-
- PowerShell 7.4.3 - latest LTS release
74-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.3/powershell-7.4.3-linux-arm32.tar.gz`
75-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.3/powershell-7.4.3-linux-arm64.tar.gz`
76-
- PowerShell 7.3.12 - latest stable release
77-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.3.12/powershell-7.3.12-linux-arm32.tar.gz`
78-
- `https://github.com/PowerShell/PowerShell/releases/download/v7.3.12/powershell-7.3.12-linux-arm64.tar.gz`
73+
- PowerShell 7.4.4 - latest LTS release
74+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/powershell-7.4.4-linux-arm32.tar.gz`
75+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/powershell-7.4.4-linux-arm64.tar.gz`
7976

8077
Use the following shell commands to download and install the package. This script detects whether
8178
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: 06/19/2024
3+
ms.date: 07/24/2024
44
title: Installing PowerShell on Alpine Linux
55
---
66
# Installing PowerShell on Alpine Linux
@@ -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.3 - `https://github.com/PowerShell/PowerShell/releases/download/v7.4.3/powershell-7.4.3-linux-musl-x64.tar.gz`
24-
- PowerShell 7.2.21 - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.21/powershell-7.2.21-linux-alpine-x64.tar.gz`
23+
- PowerShell 7.4.4 - `https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/powershell-7.4.4-linux-musl-x64.tar.gz`
24+
- PowerShell 7.2.22 - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.22/powershell-7.2.22-linux-alpine-x64.tar.gz`
2525
- PowerShell 7.5-preview.3 - `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.3/powershell-7.4.3-linux-musl-x64.tar.gz -o /tmp/powershell.tar.gz
50+
curl -L https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/powershell-7.4.4-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
@@ -1,6 +1,6 @@
11
---
22
description: Information about installing PowerShell on Debian Linux
3-
ms.date: 06/19/2024
3+
ms.date: 07/24/2024
44
title: Installing PowerShell on Debian
55
---
66
# Installing PowerShell on Debian
@@ -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.3/powershell_7.4.3-1.deb_amd64.deb`
73+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/powershell_7.4.4-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.21/powershell_7.2.21-1.deb_amd64.deb`
75+
- `https://github.com/PowerShell/PowerShell/releases/download/v7.2.22/powershell_7.2.22-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.3/powershell_7.4.3-1.deb_amd64.deb
93+
wget https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/powershell_7.4.4-1.deb_amd64.deb
9494

9595
###################################
9696
# Install the PowerShell package
97-
sudo dpkg -i powershell_7.4.3-1.deb_amd64.deb
97+
sudo dpkg -i powershell_7.4.4-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.3-1.deb_amd64.deb
103+
rm powershell_7.4.4-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: 06/24/2024
3+
ms.date: 07/24/2024
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.4.3-linux-arm32.tar.gz`
136-
- `powershell-7.4.3-linux-arm64.tar.gz`
137-
- `powershell-7.4.3-linux-x64.tar.gz`
135+
- `powershell-7.4.4-linux-arm32.tar.gz`
136+
- `powershell-7.4.4-linux-arm64.tar.gz`
137+
- `powershell-7.4.4-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.3/powershell-7.4.3-linux-x64.tar.gz
144+
curl -L -o /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/powershell-7.4.4-linux-x64.tar.gz
145145

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

0 commit comments

Comments
 (0)