@@ -55,7 +55,7 @@ winget search Microsoft.PowerShell
5555``` Output
5656Name Id Version Source
5757-----------------------------------------------------------------
58- PowerShell Microsoft.PowerShell 7.4.5 .0 winget
58+ PowerShell Microsoft.PowerShell 7.4.6 .0 winget
5959PowerShell Preview Microsoft.PowerShell.Preview 7.5.0.3 winget
6060```
6161
@@ -76,9 +76,9 @@ winget install --id Microsoft.PowerShell.Preview --source winget
7676To install PowerShell on Windows, use the following links to download the install package from
7777GitHub.
7878
79- - [ PowerShell-7.4.5 -win-x64.msi] [ 28 ]
80- - [ PowerShell-7.4.5 -win-x86.msi] [ 30 ]
81- - [ PowerShell-7.4.5 -win-arm64.msi] [ 36 ]
79+ - [ PowerShell-7.4.6 -win-x64.msi] [ 28 ]
80+ - [ PowerShell-7.4.6 -win-x86.msi] [ 30 ]
81+ - [ PowerShell-7.4.6 -win-arm64.msi] [ 36 ]
8282
8383Once downloaded, double-click the installer file and follow the prompts.
8484
@@ -148,7 +148,7 @@ installation options:
148148The following example shows how to silently install PowerShell with all the install options enabled.
149149
150150``` powershell
151- msiexec.exe /package PowerShell-7.4.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
151+ msiexec.exe /package PowerShell-7.4.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
152152```
153153
154154For a full list of command-line options for ` Msiexec.exe ` , see
@@ -159,9 +159,9 @@ For a full list of command-line options for `Msiexec.exe`, see
159159PowerShell binary ZIP archives are provided to enable advanced deployment scenarios. Download one of
160160the following ZIP archives from the [ current release] [ 23 ] page.
161161
162- - [ PowerShell-7.4.5 -win-x64.zip] [ 29 ]
163- - [ PowerShell-7.4.5 -win-x86.zip] [ 31 ]
164- - [ PowerShell-7.4.5 -win-arm64.zip] [ 27 ]
162+ - [ PowerShell-7.4.6 -win-x64.zip] [ 29 ]
163+ - [ PowerShell-7.4.6 -win-x86.zip] [ 31 ]
164+ - [ PowerShell-7.4.6 -win-arm64.zip] [ 27 ]
165165
166166Depending on how you download the file you may need to unblock the file using the ` Unblock-File `
167167cmdlet. Unzip the contents to the location of your choice and run ` pwsh.exe ` from there. Unlike
@@ -260,7 +260,7 @@ If there is an available upgrade, the output indicates the latest available vers
260260
261261> [ !NOTE]
262262> When upgrading, PowerShell won't upgrade from an LTS version to a non-LTS version. It only
263- > upgrades to the latest version of LTS, for example, from 7.2.3 to 7.2.23 . To upgrade from an
263+ > upgrades to the latest version of LTS, for example, from 7.2.3 to 7.2.24 . To upgrade from an
264264> LTS release to a newer stable version or the next LTS, you need to install the new version with
265265> the MSI for that release.
266266>
@@ -274,7 +274,7 @@ Windows 10 IoT Enterprise comes with Windows PowerShell, which we can use to dep
274274``` powershell
275275# Replace the placeholder information for the following variables:
276276$deviceip = '<device ip address'
277- $zipfile = 'PowerShell-7.4.5 -win-arm64.zip'
277+ $zipfile = 'PowerShell-7.4.6 -win-arm64.zip'
278278$downloadfolder = 'u:\users\administrator\Downloads' # The download location is local to the device.
279279 # There should be enough space for the zip file and the unzipped contents.
280280
@@ -287,10 +287,10 @@ Copy-Item $zipfile -Destination $downloadfolder -ToSession $S
287287#Connect to the device and expand the archive
288288Enter-PSSession $S
289289Set-Location u:\users\administrator\Downloads
290- Expand-Archive .\PowerShell-7.4.5 -win-arm64.zip
290+ Expand-Archive .\PowerShell-7.4.6 -win-arm64.zip
291291
292292# Set up remoting to PowerShell 7
293- Set-Location .\PowerShell-7.4.5 -win-arm64
293+ Set-Location .\PowerShell-7.4.6 -win-arm64
294294# Be sure to use the -PowerShellHome parameter otherwise it tries to create a new
295295# endpoint with Windows PowerShell 5.1
296296.\Install-PowerShellRemoting.ps1 -PowerShellHome .
@@ -302,7 +302,7 @@ PowerShell has to restart WinRM. Now you can connect to PowerShell 7 endpoint on
302302``` powershell
303303
304304# Be sure to use the -Configuration parameter. If you omit it, you connect to Windows PowerShell 5.1
305- Enter-PSSession -ComputerName $deviceIp -Credential Administrator -Configuration PowerShell.7.4.5
305+ Enter-PSSession -ComputerName $deviceIp -Credential Administrator -Configuration PowerShell.7.4.6
306306```
307307
308308## Deploying on Windows 10 IoT Core
@@ -351,15 +351,15 @@ Deploy PowerShell to Nano Server using the following steps.
351351# Replace the placeholder information for the following variables:
352352$ipaddr = '<Nano Server IP address>'
353353$credential = Get-Credential # <An Administrator account on the system>
354- $zipfile = 'PowerShell-7.4.5 -win-x64.zip'
354+ $zipfile = 'PowerShell-7.4.6 -win-x64.zip'
355355# Connect to the built-in instance of Windows PowerShell
356356$session = New-PSSession -ComputerName $ipaddr -Credential $credential
357357# Copy the file to the Nano Server instance
358358Copy-Item $zipfile c:\ -ToSession $session
359359# Enter the interactive remote session
360360Enter-PSSession $session
361361# Extract the ZIP file
362- Expand-Archive -Path C:\PowerShell-7.4.5 -win-x64.zip -DestinationPath 'C:\Program Files\PowerShell 7'
362+ Expand-Archive -Path C:\PowerShell-7.4.6 -win-x64.zip -DestinationPath 'C:\Program Files\PowerShell 7'
363363```
364364
365365If you want WSMan-based remoting, follow the instructions to create a remoting endpoint using the
@@ -414,13 +414,13 @@ can't support those methods.
414414[ 22 ] : https://aka.ms/powershell-release?tag=preview
415415[ 23 ] : https://aka.ms/powershell-release?tag=stable
416416[ 24 ] : https://github.com/ms-iot/iot-adk-addonkit/blob/master/Tools/IoTCoreImaging/Docs/Import-PSCoreRelease.md#Import-PSCoreRelease
417- [ 27 ] : https://github.com/PowerShell/PowerShell/releases/download/v7.4.5 /PowerShell-7.4.5 -win-arm64.zip
418- [ 28 ] : https://github.com/PowerShell/PowerShell/releases/download/v7.4.5 /PowerShell-7.4.5 -win-x64.msi
419- [ 29 ] : https://github.com/PowerShell/PowerShell/releases/download/v7.4.5 /PowerShell-7.4.5 -win-x64.zip
420- [ 30 ] : https://github.com/PowerShell/PowerShell/releases/download/v7.4.5 /PowerShell-7.4.5 -win-x86.msi
421- [ 31 ] : https://github.com/PowerShell/PowerShell/releases/download/v7.4.5 /PowerShell-7.4.5 -win-x86.zip
417+ [ 27 ] : https://github.com/PowerShell/PowerShell/releases/download/v7.4.6 /PowerShell-7.4.6 -win-arm64.zip
418+ [ 28 ] : https://github.com/PowerShell/PowerShell/releases/download/v7.4.6 /PowerShell-7.4.6 -win-x64.msi
419+ [ 29 ] : https://github.com/PowerShell/PowerShell/releases/download/v7.4.6 /PowerShell-7.4.6 -win-x64.zip
420+ [ 30 ] : https://github.com/PowerShell/PowerShell/releases/download/v7.4.6 /PowerShell-7.4.6 -win-x86.msi
421+ [ 31 ] : https://github.com/PowerShell/PowerShell/releases/download/v7.4.6 /PowerShell-7.4.6 -win-x86.zip
422422[ 32 ] : https://www.microsoft.com/download/details.aspx?id=50410
423423[ 33 ] : https://www.microsoft.com/store/apps/9MZ1SNWT0N5D
424424[ 34 ] : microsoft-update-faq.yml
425425[ 35 ] : https://techcommunity.microsoft.com/t5/windows-server-insiders/announcing-windows-server-preview-build-26085/m-p/4098829
426- [ 36 ] : https://github.com/PowerShell/PowerShell/releases/download/v7.4.5 /PowerShell-7.4.5 -win-arm64.msi
426+ [ 36 ] : https://github.com/PowerShell/PowerShell/releases/download/v7.4.6 /PowerShell-7.4.6 -win-arm64.msi
0 commit comments