diff --git a/reference/docs-conceptual/install/Installing-PowerShell-on-Windows.md b/reference/docs-conceptual/install/Installing-PowerShell-on-Windows.md index 2de55ce2c412..8b51290add9d 100644 --- a/reference/docs-conceptual/install/Installing-PowerShell-on-Windows.md +++ b/reference/docs-conceptual/install/Installing-PowerShell-on-Windows.md @@ -51,7 +51,7 @@ winget search Microsoft.PowerShell ```Output Name Id Version Source -------------------------------------------------------------- -PowerShell Microsoft.PowerShell 7.3.7.0 winget +PowerShell Microsoft.PowerShell 7.3.8.0 winget PowerShell Preview Microsoft.PowerShell.Preview 7.4.0.3 winget ``` @@ -72,8 +72,8 @@ winget install --id Microsoft.Powershell.Preview --source winget To install PowerShell on Windows, use the following links to download the install package from GitHub. -- [PowerShell-7.3.7-win-x64.msi][28] -- [PowerShell-7.3.7-win-x86.msi][30] +- [PowerShell-7.3.8-win-x64.msi][28] +- [PowerShell-7.3.8-win-x86.msi][30] Once downloaded, double-click the installer file and follow the prompts. @@ -139,7 +139,7 @@ installation options: The following example shows how to silently install PowerShell with all the install options enabled. ```powershell -msiexec.exe /package PowerShell-7.3.7-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 +msiexec.exe /package PowerShell-7.3.8-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 ``` For a full list of command-line options for `Msiexec.exe`, see @@ -150,9 +150,9 @@ For a full list of command-line options for `Msiexec.exe`, see PowerShell binary ZIP archives are provided to enable advanced deployment scenarios. Download one of the following ZIP archives from the [current release][23] page. -- [PowerShell-7.3.7-win-x64.zip][29] -- [PowerShell-7.3.7-win-x86.zip][31] -- [PowerShell-7.3.7-win-arm64.zip][27] +- [PowerShell-7.3.8-win-x64.zip][29] +- [PowerShell-7.3.8-win-x86.zip][31] +- [PowerShell-7.3.8-win-arm64.zip][27] Depending on how you download the file you may need to unblock the file using the `Unblock-File` cmdlet. Unzip the contents to the location of your choice and run `pwsh.exe` from there. Unlike @@ -234,7 +234,7 @@ information in this article. If you installed via the MSI package, that informat > [!NOTE] > When upgrading, PowerShell won't upgrade from an LTS version to a non-LTS version. It only -> upgrades to the latest version of LTS, for example, from 7.2.3 to 7.2.14. To upgrade from an +> upgrades to the latest version of LTS, for example, from 7.2.3 to 7.2.15. To upgrade from an > LTS release to a newer stable version or the next LTS, you need to install the new version with > the MSI for that release. > @@ -248,7 +248,7 @@ Windows 10 IoT Enterprise comes with Windows PowerShell, which we can use to dep ```powershell # Replace the placeholder information for the following variables: $deviceip = ' -$zipfile = 'PowerShell-7.3.7-win-x64.zip' +$zipfile = 'PowerShell-7.3.8-win-x64.zip' # Connect to the built-in instance of Windows PowerShell $session = New-PSSession -ComputerName $ipaddr -Credential $credential # Copy the file to the Nano Server instance @@ -333,7 +333,7 @@ Copy-Item $zipfile c:\ -ToSession $session # Enter the interactive remote session Enter-PSSession $session # Extract the ZIP file -Expand-Archive -Path C:\PowerShell-7.3.7-win-x64.zip -DestinationPath 'C:\Program Files\PowerShell 7' +Expand-Archive -Path C:\PowerShell-7.3.8-win-x64.zip -DestinationPath 'C:\Program Files\PowerShell 7' ``` If you want WSMan-based remoting, follow the instructions to create a remoting endpoint using the @@ -388,11 +388,11 @@ can't support those methods. [22]: https://aka.ms/powershell-release?tag=preview [23]: https://aka.ms/powershell-release?tag=stable [24]: https://github.com/ms-iot/iot-adk-addonkit/blob/master/Tools/IoTCoreImaging/Docs/Import-PSCoreRelease.md#Import-PSCoreRelease -[27]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.7/PowerShell-7.3.7-win-arm64.zip -[28]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.7/PowerShell-7.3.7-win-x64.msi -[29]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.7/PowerShell-7.3.7-win-x64.zip -[30]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.7/PowerShell-7.3.7-win-x86.msi -[31]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.7/PowerShell-7.3.7-win-x86.zip +[27]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.8/PowerShell-7.3.8-win-arm64.zip +[28]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.8/PowerShell-7.3.8-win-x64.msi +[29]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.8/PowerShell-7.3.8-win-x64.zip +[30]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.8/PowerShell-7.3.8-win-x86.msi +[31]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.8/PowerShell-7.3.8-win-x86.zip [32]: https://www.microsoft.com/download/details.aspx?id=50410 [33]: https://www.microsoft.com/store/apps/9MZ1SNWT0N5D [34]: microsoft-update-faq.yml diff --git a/reference/docs-conceptual/install/Installing-PowerShell-on-macOS.md b/reference/docs-conceptual/install/Installing-PowerShell-on-macOS.md index 6a41fd2bfd61..7e94d15ac4c1 100644 --- a/reference/docs-conceptual/install/Installing-PowerShell-on-macOS.md +++ b/reference/docs-conceptual/install/Installing-PowerShell-on-macOS.md @@ -121,24 +121,24 @@ brew upgrade powershell Starting with version 7.2, PowerShell supports the Apple M1 processor. Download the install package from the [releases][10] page onto your computer. The links to the current versions are: -- PowerShell 7.3.7 - - x64 processors - [powershell-7.3.7-osx-x64.pkg][22] - - M1 processors - [powershell-7.3.7-osx-arm64.pkg][20] -- PowerShell 7.2.14 - - x64 processors - [powershell-7.2.14-osx-x64.pkg][18] - - M1 processors - [powershell-7.2.14-osx-arm64.pkg][16] +- PowerShell 7.3.8 + - x64 processors - [powershell-7.3.8-osx-x64.pkg][22] + - M1 processors - [powershell-7.3.8-osx-arm64.pkg][20] +- PowerShell 7.2.15 + - x64 processors - [powershell-7.2.15-osx-x64.pkg][18] + - M1 processors - [powershell-7.2.15-osx-arm64.pkg][16] You can double-click the file and follow the prompts, or install it from the terminal using the following commands. Change the name of the file to match the file you downloaded. ```sh -sudo installer -pkg powershell-7.3.7-osx-x64.pkg -target / +sudo installer -pkg powershell-7.3.8-osx-x64.pkg -target / ``` If you are running on macOS Big Sur 11.5 or higher you may receive the following error message when installing the package: -> "powershell-7.3.7-osx-x64.pkg" cannot be opened because Apple cannot check it for malicious +> "powershell-7.3.8-osx-x64.pkg" cannot be opened because Apple cannot check it for malicious > software. There are two ways to work around this issue: @@ -151,7 +151,7 @@ Using the Finder From the command line -1. Run `sudo xattr -rd com.apple.quarantine powershell-7.3.7-osx-x64.pkg`. Include the full path to +1. Run `sudo xattr -rd com.apple.quarantine powershell-7.3.8-osx-x64.pkg`. Include the full path to the `.pkg` file. 1. Install the package as you normally would. @@ -189,31 +189,31 @@ dependencies. Download the install package from the [releases][10] page onto your computer. The links to the current versions are: -- PowerShell 7.3.7 - - x64 processors - [powershell-7.3.7-osx-x64.tar.gz][23] - - M1 processors - [powershell-7.3.7-osx-arm64.tar.gz][21] -- PowerShell 7.2.14 - - x64 processors - [powershell-7.2.14-osx-x64.tar.gz][19] - - M1 processors - [powershell-7.2.14-osx-arm64.tar.gz][17] +- PowerShell 7.3.8 + - x64 processors - [powershell-7.3.8-osx-x64.tar.gz][23] + - M1 processors - [powershell-7.3.8-osx-arm64.tar.gz][21] +- PowerShell 7.2.15 + - x64 processors - [powershell-7.2.15-osx-x64.tar.gz][19] + - M1 processors - [powershell-7.2.15-osx-arm64.tar.gz][17] Use the following commands to install PowerShell from the binary archive. Change the download URL to match the version you want to install. ```sh # Download the powershell '.tar.gz' archive -curl -L -o /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.3.7/powershell-7.3.7-osx-x64.tar.gz +curl -L -o /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.3.8/powershell-7.3.8-osx-x64.tar.gz # Create the target folder where powershell is placed -sudo mkdir -p /usr/local/microsoft/powershell/7.3.7 +sudo mkdir -p /usr/local/microsoft/powershell/7.3.8 # Expand powershell to the target folder -sudo tar zxf /tmp/powershell.tar.gz -C /usr/local/microsoft/powershell/7.3.7 +sudo tar zxf /tmp/powershell.tar.gz -C /usr/local/microsoft/powershell/7.3.8 # Set execute permissions -sudo chmod +x /usr/local/microsoft/powershell/7.3.7/pwsh +sudo chmod +x /usr/local/microsoft/powershell/7.3.8/pwsh # Create the symbolic link that points to pwsh -sudo ln -s /usr/local/microsoft/powershell/7.3.7/pwsh /usr/local/bin/pwsh +sudo ln -s /usr/local/microsoft/powershell/7.3.8/pwsh /usr/local/bin/pwsh ``` ## Uninstalling PowerShell @@ -238,7 +238,7 @@ remove the paths using `sudo rm`. ## Paths -- `$PSHOME` is `/usr/local/microsoft/powershell/7.3.7/` +- `$PSHOME` is `/usr/local/microsoft/powershell/7.3.8/` - User profiles are read from `~/.config/powershell/profile.ps1` - Default profiles are read from `$PSHOME/profile.ps1` - User modules are read from `~/.local/share/powershell/Modules` @@ -252,7 +252,7 @@ exists at `Microsoft.PowerShell_profile.ps1` in the same locations. PowerShell respects the [XDG Base Directory Specification][24] on macOS. Because macOS is a derivation of BSD, the prefix `/usr/local` is used instead of `/opt`. So, -`$PSHOME` is `/usr/local/microsoft/powershell/7.3.7/`, and the symbolic link is placed at +`$PSHOME` is `/usr/local/microsoft/powershell/7.3.8/`, and the symbolic link is placed at `/usr/local/bin/pwsh`. ## Supported versions @@ -286,12 +286,12 @@ support those methods. [13]: https://github.com/Homebrew [14]: https://github.com/Homebrew/homebrew-cask [15]: https://github.com/Homebrew/homebrew-cask-versions -[16]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.14/powershell-7.2.14-osx-arm64.pkg -[17]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.14/powershell-7.2.14-osx-arm64.tar.gz -[18]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.14/powershell-7.2.14-osx-x64.pkg -[19]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.14/powershell-7.2.14-osx-x64.tar.gz -[20]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.7/powershell-7.3.7-osx-arm64.pkg -[21]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.7/powershell-7.3.7-osx-arm64.tar.gz -[22]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.7/powershell-7.3.7-osx-x64.pkg -[23]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.7/powershell-7.3.7-osx-x64.tar.gz +[16]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.15/powershell-7.2.15-osx-arm64.pkg +[17]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.15/powershell-7.2.15-osx-arm64.tar.gz +[18]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.15/powershell-7.2.15-osx-x64.pkg +[19]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.15/powershell-7.2.15-osx-x64.tar.gz +[20]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.8/powershell-7.3.8-osx-arm64.pkg +[21]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.8/powershell-7.3.8-osx-arm64.tar.gz +[22]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.8/powershell-7.3.8-osx-x64.pkg +[23]: https://github.com/PowerShell/PowerShell/releases/download/v7.3.8/powershell-7.3.8-osx-x64.tar.gz [24]: https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html diff --git a/reference/docs-conceptual/install/community-support.md b/reference/docs-conceptual/install/community-support.md index 5ec7ad55c8e0..03100eaea910 100644 --- a/reference/docs-conceptual/install/community-support.md +++ b/reference/docs-conceptual/install/community-support.md @@ -77,12 +77,12 @@ apt -y remove powershell Download the tar.gz package from the [releases][12] page onto your Raspberry Pi computer. The links to the current versions are: -- PowerShell 7.3.7 - latest stable release - - `https://github.com/PowerShell/PowerShell/releases/download/v7.3.7/powershell-7.3.7-linux-arm32.tar.gz` - - `https://github.com/PowerShell/PowerShell/releases/download/v7.3.7/powershell-7.3.7-linux-arm64.tar.gz` -- PowerShell 7.2.14 - LTS release - - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.14/powershell-7.2.14-linux-arm32.tar.gz` - - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.14/powershell-7.2.14-linux-arm64.tar.gz` +- PowerShell 7.3.8 - latest stable release + - `https://github.com/PowerShell/PowerShell/releases/download/v7.3.8/powershell-7.3.8-linux-arm32.tar.gz` + - `https://github.com/PowerShell/PowerShell/releases/download/v7.3.8/powershell-7.3.8-linux-arm64.tar.gz` +- PowerShell 7.2.15 - LTS release + - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.15/powershell-7.2.15-linux-arm32.tar.gz` + - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.15/powershell-7.2.15-linux-arm64.tar.gz` Use the following shell commands to download and install the package. This script detects whether you are running a 32 or 64-bit OS and installs the latest stable version of PowerShell for that diff --git a/reference/docs-conceptual/install/install-alpine.md b/reference/docs-conceptual/install/install-alpine.md index bb1528d83896..0a32a9999d93 100644 --- a/reference/docs-conceptual/install/install-alpine.md +++ b/reference/docs-conceptual/install/install-alpine.md @@ -20,8 +20,8 @@ check the list of [Supported versions][02] below. Installation on Alpine is based on downloading tar.gz package from the [releases][03] page. The URL to the package depends on the version of PowerShell you want to install. -- PowerShell 7.3.7 - `https://github.com/PowerShell/PowerShell/releases/download/v7.3.7/powershell-7.3.7-linux-alpine-x64.tar.gz` -- PowerShell 7.2.14 - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.14/powershell-7.2.14-linux-alpine-x64.tar.gz` +- PowerShell 7.3.8 - `https://github.com/PowerShell/PowerShell/releases/download/v7.3.8/powershell-7.3.8-linux-alpine-x64.tar.gz` +- PowerShell 7.2.15 - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.15/powershell-7.2.15-linux-alpine-x64.tar.gz` Then, in the terminal, execute the following shell commands to install PowerShell 7.3: @@ -46,7 +46,7 @@ sudo apk -X https://dl-cdn.alpinelinux.org/alpine/edge/main add --no-cache \ lttng-ust # Download the powershell '.tar.gz' archive -curl -L https://github.com/PowerShell/PowerShell/releases/download/v7.3.7/powershell-7.3.7-linux-alpine-x64.tar.gz -o /tmp/powershell.tar.gz +curl -L https://github.com/PowerShell/PowerShell/releases/download/v7.3.8/powershell-7.3.8-linux-alpine-x64.tar.gz -o /tmp/powershell.tar.gz # Create the target folder where powershell will be placed sudo mkdir -p /opt/microsoft/powershell/7 diff --git a/reference/docs-conceptual/install/install-debian.md b/reference/docs-conceptual/install/install-debian.md index e14b4da71774..dd72208c8324 100644 --- a/reference/docs-conceptual/install/install-debian.md +++ b/reference/docs-conceptual/install/install-debian.md @@ -69,10 +69,10 @@ package from the [releases][02] page onto your Debian machine. The link to the current version is: -- PowerShell 7.3.7 universal package for supported versions of Debian - - `https://github.com/PowerShell/PowerShell/releases/download/v7.3.7/powershell_7.3.7-1.deb_amd64.deb` -- PowerShell 7.2.14 universal package for supported versions of Debian - - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.14/powershell-lts_7.2.14-1.deb_amd64.deb` +- PowerShell 7.3.8 universal package for supported versions of Debian + - `https://github.com/PowerShell/PowerShell/releases/download/v7.3.8/powershell_7.3.8-1.deb_amd64.deb` +- PowerShell 7.2.15 universal package for supported versions of Debian + - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.15/powershell-lts_7.2.15-1.deb_amd64.deb` - PowerShell 7.4-preview.5 universal package for supported versions of Debian - `https://github.com/PowerShell/PowerShell/releases/download/v7.4.0-preview.5/powershell-preview_7.4.0-preview.5-1.deb_amd64.deb` diff --git a/reference/docs-conceptual/install/install-other-linux.md b/reference/docs-conceptual/install/install-other-linux.md index b95907e2ec64..6855cf3eeef6 100644 --- a/reference/docs-conceptual/install/install-other-linux.md +++ b/reference/docs-conceptual/install/install-other-linux.md @@ -122,16 +122,16 @@ archive. The following example shows the steps for installing the x64 binary archive. You must choose the correct binary archive that matches the processor type for your platform. -- `powershell-7.3.7-linux-arm32.tar.gz` -- `powershell-7.3.7-linux-arm64.tar.gz` -- `powershell-7.3.7-linux-x64.tar.gz` +- `powershell-7.3.8-linux-arm32.tar.gz` +- `powershell-7.3.8-linux-arm64.tar.gz` +- `powershell-7.3.8-linux-x64.tar.gz` Use the following shell commands to download and install PowerShell from the `tar.gz` binary archive. Change the URL to match the version of PowerShell you want to install. ```sh # Download the powershell '.tar.gz' archive -curl -L -o /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.3.7/powershell-7.3.7-linux-x64.tar.gz +curl -L -o /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.3.8/powershell-7.3.8-linux-x64.tar.gz # Create the target folder where powershell will be placed sudo mkdir -p /opt/microsoft/powershell/7 diff --git a/reference/docs-conceptual/install/install-rhel.md b/reference/docs-conceptual/install/install-rhel.md index b020c33b9af5..8a02845eac85 100644 --- a/reference/docs-conceptual/install/install-rhel.md +++ b/reference/docs-conceptual/install/install-rhel.md @@ -75,10 +75,10 @@ package from the [releases][02] page onto your RHEL machine. The link to the current version is: -- PowerShell 7.3.7 universal package for supported versions of RHEL -- `https://github.com/PowerShell/PowerShell/releases/download/v7.3.7/powershell-7.3.7-1.rh.x86_64.rpm` -- PowerShell 7.2.14 universal package for supported versions of RHEL -- `https://github.com/PowerShell/PowerShell/releases/download/v7.2.14/powershell-lts-7.2.14-1.rh.x86_64.rpm` +- PowerShell 7.3.8 universal package for supported versions of RHEL +- `https://github.com/PowerShell/PowerShell/releases/download/v7.3.8/powershell-7.3.8-1.rh.x86_64.rpm` +- PowerShell 7.2.15 universal package for supported versions of RHEL +- `https://github.com/PowerShell/PowerShell/releases/download/v7.2.15/powershell-lts-7.2.15-1.rh.x86_64.rpm` - PowerShell 7.4-preview.5 universal package for supported versions of RHEL - `https://github.com/PowerShell/PowerShell/releases/download/v7.4.0-preview.5/powershell-preview-7.4.0_preview.5-1.rh.x86_64.rpm` @@ -88,13 +88,13 @@ change the URL to download a the version of PowerShell you want to install. On RHEL 8 or 9: ```sh -sudo dnf install https://github.com/PowerShell/PowerShell/releases/download/v7.3.7/powershell-7.3.7-1.rh.x86_64.rpm +sudo dnf install https://github.com/PowerShell/PowerShell/releases/download/v7.3.8/powershell-7.3.8-1.rh.x86_64.rpm ``` On RHEL 7: ```sh -sudo yum install https://github.com/PowerShell/PowerShell/releases/download/v7.3.7/powershell-7.3.7-1.rh.x86_64.rpm +sudo yum install https://github.com/PowerShell/PowerShell/releases/download/v7.3.8/powershell-7.3.8-1.rh.x86_64.rpm ``` ## Uninstall PowerShell diff --git a/reference/docs-conceptual/install/install-ubuntu.md b/reference/docs-conceptual/install/install-ubuntu.md index 62452f6274f1..636932d9892d 100644 --- a/reference/docs-conceptual/install/install-ubuntu.md +++ b/reference/docs-conceptual/install/install-ubuntu.md @@ -69,10 +69,10 @@ package from the [releases][02] page onto your Ubuntu machine. The link to the current version is: -- PowerShell 7.3.7 universal package for supported versions of Ubuntu - - `https://github.com/PowerShell/PowerShell/releases/download/v7.3.7/powershell_7.3.7-1.deb_amd64.deb` -- PowerShell 7.2.14 universal package for supported versions of Ubuntu - - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.14/powershell-lts_7.2.14-1.deb_amd64.deb` +- PowerShell 7.3.8 universal package for supported versions of Ubuntu + - `https://github.com/PowerShell/PowerShell/releases/download/v7.3.8/powershell_7.3.8-1.deb_amd64.deb` +- PowerShell 7.2.15 universal package for supported versions of Ubuntu + - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.15/powershell-lts_7.2.15-1.deb_amd64.deb` - PowerShell 7.4-preview.5 universal package for supported versions of Ubuntu - `https://github.com/PowerShell/PowerShell/releases/download/v7.4.0-preview.5/powershell-preview_7.4.0-preview.5-1.deb_amd64.deb` diff --git a/reference/docs-conceptual/install/microsoft-update-faq.yml b/reference/docs-conceptual/install/microsoft-update-faq.yml index 3d84b1d689d4..52f811f88def 100644 --- a/reference/docs-conceptual/install/microsoft-update-faq.yml +++ b/reference/docs-conceptual/install/microsoft-update-faq.yml @@ -103,7 +103,7 @@ sections: doesn't show the check box options. To enable MU updates run the following command: ```powershell - msiexec.exe /fmu .\PowerShell-7.3.7-win-x64.msi USE_MU=1 ENABLE_MU=1 + msiexec.exe /fmu .\PowerShell-7.3.8-win-x64.msi USE_MU=1 ENABLE_MU=1 ``` For more information about running `msiexec.exe` from the command line, see