@@ -51,7 +51,7 @@ winget search Microsoft.PowerShell
51
51
``` Output
52
52
Name Id Version Source
53
53
--------------------------------------------------------------
54
- PowerShell Microsoft.PowerShell 7.3.5 .0 winget
54
+ PowerShell Microsoft.PowerShell 7.3.6 .0 winget
55
55
PowerShell Preview Microsoft.PowerShell.Preview 7.4.0.3 winget
56
56
```
57
57
@@ -72,8 +72,8 @@ winget install --id Microsoft.Powershell.Preview --source winget
72
72
To install PowerShell on Windows, use the following links to download the install package from
73
73
GitHub.
74
74
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 ]
77
77
78
78
Once downloaded, double-click the installer file and follow the prompts.
79
79
@@ -138,7 +138,7 @@ installation options:
138
138
The following example shows how to silently install PowerShell with all the install options enabled.
139
139
140
140
``` 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
142
142
```
143
143
144
144
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
149
149
PowerShell binary ZIP archives are provided to enable advanced deployment scenarios. Download one of
150
150
the following ZIP archives from the [ current release] [ 23 ] page.
151
151
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 ]
155
155
156
156
Depending on how you download the file you may need to unblock the file using the ` Unblock-File `
157
157
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
233
233
234
234
> [ !NOTE]
235
235
> 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
237
237
> LTS release to a newer stable version or the next LTS, you need to install the new version with
238
238
> the MSI for that release.
239
239
>
@@ -247,7 +247,7 @@ Windows 10 IoT Enterprise comes with Windows PowerShell, which we can use to dep
247
247
``` powershell
248
248
# Replace the placeholder information for the following variables:
249
249
$deviceip = '<device ip address'
250
- $zipfile = 'PowerShell-7.3.5 -win-arm64.zip'
250
+ $zipfile = 'PowerShell-7.3.6 -win-arm64.zip'
251
251
$downloadfolder = 'u:\users\administrator\Downloads' # The download location is local to the device.
252
252
# There should be enough space for the zip file and the unzipped contents.
253
253
@@ -260,10 +260,10 @@ Copy-Item $zipfile -Destination $downloadfolder -ToSession $S
260
260
#Connect to the device and expand the archive
261
261
Enter-PSSession $S
262
262
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
264
264
265
265
# Set up remoting to PowerShell 7
266
- Set-Location .\PowerShell-7.3.5 -win-arm64
266
+ Set-Location .\PowerShell-7.3.6 -win-arm64
267
267
# Be sure to use the -PowerShellHome parameter otherwise it tries to create a new
268
268
# endpoint with Windows PowerShell 5.1
269
269
.\Install-PowerShellRemoting.ps1 -PowerShellHome .
@@ -275,7 +275,7 @@ PowerShell has to restart WinRM. Now you can connect to PowerShell 7 endpoint on
275
275
``` powershell
276
276
277
277
# 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
279
279
```
280
280
281
281
## Deploying on Windows 10 IoT Core
@@ -324,15 +324,15 @@ Deploy PowerShell to Nano Server using the following steps.
324
324
# Replace the placeholder information for the following variables:
325
325
$ipaddr = '<Nano Server IP address>'
326
326
$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'
328
328
# Connect to the built-in instance of Windows PowerShell
329
329
$session = New-PSSession -ComputerName $ipaddr -Credential $credential
330
330
# Copy the file to the Nano Server instance
331
331
Copy-Item $zipfile c:\ -ToSession $session
332
332
# Enter the interactive remote session
333
333
Enter-PSSession $session
334
334
# 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'
336
336
```
337
337
338
338
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.
387
387
[ 22 ] : https://aka.ms/powershell-release?tag=preview
388
388
[ 23 ] : https://aka.ms/powershell-release?tag=stable
389
389
[ 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
395
395
[ 32 ] : https://www.microsoft.com/download/details.aspx?id=50410
396
396
[ 33 ] : https://www.microsoft.com/store/apps/9MZ1SNWT0N5D
397
397
[ 34 ] : microsoft-update-faq.yml
0 commit comments