diff --git a/reference/docs-conceptual/install/Installing-PowerShell-on-Windows.md b/reference/docs-conceptual/install/Installing-PowerShell-on-Windows.md index b297ca9b5ba..08eb74f35af 100644 --- a/reference/docs-conceptual/install/Installing-PowerShell-on-Windows.md +++ b/reference/docs-conceptual/install/Installing-PowerShell-on-Windows.md @@ -55,7 +55,7 @@ winget search Microsoft.PowerShell ```Output Name Id Version Source ----------------------------------------------------------------- -PowerShell Microsoft.PowerShell 7.4.4.0 winget +PowerShell Microsoft.PowerShell 7.4.5.0 winget PowerShell Preview Microsoft.PowerShell.Preview 7.5.0.3 winget ``` @@ -76,8 +76,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.4.4-win-x64.msi][28] -- [PowerShell-7.4.4-win-x86.msi][30] +- [PowerShell-7.4.5-win-x64.msi][28] +- [PowerShell-7.4.5-win-x86.msi][30] Once downloaded, double-click the installer file and follow the prompts. @@ -147,7 +147,7 @@ installation options: The following example shows how to silently install PowerShell with all the install options enabled. ```powershell -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 +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 ``` 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 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.4.4-win-x64.zip][29] -- [PowerShell-7.4.4-win-x86.zip][31] -- [PowerShell-7.4.4-win-arm64.zip][27] +- [PowerShell-7.4.5-win-x64.zip][29] +- [PowerShell-7.4.5-win-x86.zip][31] +- [PowerShell-7.4.5-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 @@ -259,7 +259,7 @@ If there is an available upgrade, the output indicates the latest available vers > [!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.22. To upgrade from an +> upgrades to the latest version of LTS, for example, from 7.2.3 to 7.2.23. 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. > @@ -273,7 +273,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.4.4-win-x64.zip' +$zipfile = 'PowerShell-7.4.5-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 @@ -358,7 +358,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.4.4-win-x64.zip -DestinationPath 'C:\Program Files\PowerShell 7' +Expand-Archive -Path C:\PowerShell-7.4.5-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 @@ -413,11 +413,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.4.4/PowerShell-7.4.4-win-arm64.zip -[28]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/PowerShell-7.4.4-win-x64.msi -[29]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/PowerShell-7.4.4-win-x64.zip -[30]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/PowerShell-7.4.4-win-x86.msi -[31]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/PowerShell-7.4.4-win-x86.zip +[27]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/PowerShell-7.4.5-win-arm64.zip +[28]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/PowerShell-7.4.5-win-x64.msi +[29]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/PowerShell-7.4.5-win-x64.zip +[30]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/PowerShell-7.4.5-win-x86.msi +[31]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/PowerShell-7.4.5-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 94f3acdc985..1c1e3f1ef56 100644 --- a/reference/docs-conceptual/install/Installing-PowerShell-on-macOS.md +++ b/reference/docs-conceptual/install/Installing-PowerShell-on-macOS.md @@ -116,11 +116,11 @@ Starting with version 7.2, PowerShell supports the Apple M1 processor. Download from the [releases][09] page onto your computer. The links to the current versions are: - PowerShell 7.4 - - x64 processors - [powershell-7.4.4-osx-x64.pkg][20] - - M1 processors - [powershell-7.4.4-osx-arm64.pkg][18] + - x64 processors - [powershell-7.4.5-osx-x64.pkg][20] + - M1 processors - [powershell-7.4.5-osx-arm64.pkg][18] - PowerShell 7.2 (LTS) - - x64 processors - [powershell-7.2.22-osx-x64.pkg][16] - - M1 processors - [powershell-7.2.22-osx-arm64.pkg][14] + - x64 processors - [powershell-7.2.23-osx-x64.pkg][16] + - M1 processors - [powershell-7.2.23-osx-arm64.pkg][14] - PowerShell 7.5-preview - x64 processors - [powershell-7.5.0-preview.3-osx-x64.pkg][24] - 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 following commands. Change the name of the file to match the file you downloaded. ```sh -sudo installer -pkg ./Downloads/powershell-7.4.4-osx-x64.pkg -target / +sudo installer -pkg ./Downloads/powershell-7.4.5-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.4.4-osx-x64.pkg" cannot be opened because Apple cannot check it for malicious +> "powershell-7.4.5-osx-x64.pkg" cannot be opened because Apple cannot check it for malicious > software. There are two ways to work around this issue: @@ -148,7 +148,7 @@ Using the Finder From the command line -1. Run `sudo xattr -rd com.apple.quarantine ./Downloads/powershell-7.4.4-osx-x64.pkg`. If you are using +1. Run `sudo xattr -rd com.apple.quarantine ./Downloads/powershell-7.4.5-osx-x64.pkg`. If you are using PowerShell 7 or higher, you can use the `Unblock-File` cmdlet. Include the full path to the `.pkg` file. 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 current versions are: - PowerShell 7.4 (LTS) - - x64 processors - [powershell-7.4.4-osx-x64.tar.gz][21] - - M1 processors - [powershell-7.4.4-osx-arm64.tar.gz][19] + - x64 processors - [powershell-7.4.5-osx-x64.tar.gz][21] + - M1 processors - [powershell-7.4.5-osx-arm64.tar.gz][19] - PowerShell 7.2 (LTS) - - x64 processors - [powershell-7.2.22-osx-x64.tar.gz][17] - - M1 processors - [powershell-7.2.22-osx-arm64.tar.gz][15] + - x64 processors - [powershell-7.2.23-osx-x64.tar.gz][17] + - M1 processors - [powershell-7.2.23-osx-arm64.tar.gz][15] - PowerShell 7.5-preview - x64 processors - [powershell-7.5.0-preview.3-osx-x64.tar.gz][25] - M1 processors - [powershell-7.5.0-preview.3-osx-arm64.tar.gz][23] @@ -202,7 +202,7 @@ 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.4.4/powershell-7.4.4-osx-x64.tar.gz +curl -L -o /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/powershell-7.4.5-osx-x64.tar.gz # Create the target folder where powershell is placed sudo mkdir -p /usr/local/microsoft/powershell/7 @@ -281,14 +281,14 @@ support those methods. [11]: https://docs.brew.sh/Manpage#link-ln-options-formula [12]: https://github.com/Homebrew [13]: https://github.com/Homebrew/homebrew-cask -[14]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.22/powershell-7.2.22-osx-arm64.pkg -[15]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.22/powershell-7.2.22-osx-arm64.tar.gz -[16]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.22/powershell-7.2.22-osx-x64.pkg -[17]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.22/powershell-7.2.22-osx-x64.tar.gz -[18]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/powershell-7.4.4-osx-arm64.pkg -[19]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/powershell-7.4.4-osx-arm64.tar.gz -[20]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/powershell-7.4.4-osx-x64.pkg -[21]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/powershell-7.4.4-osx-x64.tar.gz +[14]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.23/powershell-7.2.23-osx-arm64.pkg +[15]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.23/powershell-7.2.23-osx-arm64.tar.gz +[16]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.23/powershell-7.2.23-osx-x64.pkg +[17]: https://github.com/PowerShell/PowerShell/releases/download/v7.2.23/powershell-7.2.23-osx-x64.tar.gz +[18]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/powershell-7.4.5-osx-arm64.pkg +[19]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/powershell-7.4.5-osx-arm64.tar.gz +[20]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/powershell-7.4.5-osx-x64.pkg +[21]: https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/powershell-7.4.5-osx-x64.tar.gz [22]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.0-preview.3/powershell-7.5.0-preview.3-osx-arm64.pkg [23]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.0-preview.3/powershell-7.5.0-preview.3-osx-arm64.tar.gz [24]: https://github.com/PowerShell/PowerShell/releases/download/v7.5.0-preview.3/powershell-7.5.0-preview.3-osx-x64.pkg diff --git a/reference/docs-conceptual/install/community-support.md b/reference/docs-conceptual/install/community-support.md index 0fa89387345..b0de54d5132 100644 --- a/reference/docs-conceptual/install/community-support.md +++ b/reference/docs-conceptual/install/community-support.md @@ -70,9 +70,9 @@ information about installing these packages, see the [PowerShell][05] page in th Download the tar.gz package from the [releases][08] page onto your Raspberry Pi computer. The links to the current versions are: -- PowerShell 7.4.4 - latest LTS release - - `https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/powershell-7.4.4-linux-arm32.tar.gz` - - `https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/powershell-7.4.4-linux-arm64.tar.gz` +- PowerShell 7.4.5 - latest LTS release + - `https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/powershell-7.4.5-linux-arm32.tar.gz` + - `https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/powershell-7.4.5-linux-arm64.tar.gz` Use the following shell commands to download and install the package. This script detects whether you're running a 32-bit 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 0a7745f47ab..1b6903664d1 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.4.4 - `https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/powershell-7.4.4-linux-musl-x64.tar.gz` -- PowerShell 7.2.22 - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.22/powershell-7.2.22-linux-alpine-x64.tar.gz` +- PowerShell 7.4.5 - `https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/powershell-7.4.5-linux-musl-x64.tar.gz` +- PowerShell 7.2.23 - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.23/powershell-7.2.23-linux-alpine-x64.tar.gz` - 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` 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 \ lttng-ust # Download the powershell '.tar.gz' archive -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 +curl -L https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/powershell-7.4.5-linux-musl-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 2e2cdc9c9f2..2fc505ae02e 100644 --- a/reference/docs-conceptual/install/install-debian.md +++ b/reference/docs-conceptual/install/install-debian.md @@ -70,9 +70,9 @@ package from the [releases][02] page onto your Debian machine. The link to the current version is: - PowerShell 7.4 (LTS) universal package for supported versions of Debian - - `https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/powershell_7.4.4-1.deb_amd64.deb` + - `https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/powershell_7.4.5-1.deb_amd64.deb` - PowerShell 7.2 (LTS) universal package for supported versions of Debian - - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.22/powershell_7.2.22-1.deb_amd64.deb` + - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.23/powershell_7.2.23-1.deb_amd64.deb` - PowerShell 7.5-preview universal package for supported versions of Debian - `https://github.com/PowerShell/PowerShell/releases/download/v7.5.0-preview.3/powershell-preview_7.5.0-preview.3-1.deb_amd64.deb` @@ -90,17 +90,17 @@ sudo apt-get update sudo apt-get install -y wget # Download the PowerShell package file -wget https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/powershell_7.4.4-1.deb_amd64.deb +wget https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/powershell_7.4.5-1.deb_amd64.deb ################################### # Install the PowerShell package -sudo dpkg -i powershell_7.4.4-1.deb_amd64.deb +sudo dpkg -i powershell_7.4.5-1.deb_amd64.deb # Resolve missing dependencies and finish the install (if necessary) sudo apt-get install -f # Delete the downloaded package file -rm powershell_7.4.4-1.deb_amd64.deb +rm powershell_7.4.5-1.deb_amd64.deb # Start PowerShell pwsh diff --git a/reference/docs-conceptual/install/install-other-linux.md b/reference/docs-conceptual/install/install-other-linux.md index 9aaf5882c38..2d008dce1cf 100644 --- a/reference/docs-conceptual/install/install-other-linux.md +++ b/reference/docs-conceptual/install/install-other-linux.md @@ -132,16 +132,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.4.4-linux-arm32.tar.gz` -- `powershell-7.4.4-linux-arm64.tar.gz` -- `powershell-7.4.4-linux-x64.tar.gz` +- `powershell-7.4.5-linux-arm32.tar.gz` +- `powershell-7.4.5-linux-arm64.tar.gz` +- `powershell-7.4.5-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.4.4/powershell-7.4.4-linux-x64.tar.gz +curl -L -o /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/powershell-7.4.5-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 ad3a1d655ca..a9df78e088f 100644 --- a/reference/docs-conceptual/install/install-rhel.md +++ b/reference/docs-conceptual/install/install-rhel.md @@ -73,10 +73,10 @@ package from the [releases][02] page onto your RHEL machine. The link to the current version is: -- PowerShell 7.4.4 universal package for supported versions of RHEL - - `https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/powershell-7.4.4-1.rh.x86_64.rpm` -- PowerShell 7.2.22 universal package for supported versions of RHEL - - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.22/powershell-7.2.22-1.rh.x86_64.rpm` +- PowerShell 7.4.5 universal package for supported versions of RHEL + - `https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/powershell-7.4.5-1.rh.x86_64.rpm` +- PowerShell 7.2.23 universal package for supported versions of RHEL + - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.23/powershell-7.2.23-1.rh.x86_64.rpm` - PowerShell 7.5-preview.3 universal package for supported versions of RHEL - `https://github.com/PowerShell/PowerShell/releases/download/v7.5.0-preview.3/powershell-preview-7.5.0_preview.2-1.rh.x86_64.rpm` @@ -86,7 +86,7 @@ change the URL to download the version of PowerShell that you want to install. On RHEL 8 or 9: ```sh -sudo dnf install https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/powershell-7.4.4-1.rh.x86_64.rpm +sudo dnf install https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/powershell-7.4.5-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 7f8e8e8d3d2..3e8fe6e1e69 100644 --- a/reference/docs-conceptual/install/install-ubuntu.md +++ b/reference/docs-conceptual/install/install-ubuntu.md @@ -82,9 +82,9 @@ package from the [releases][05] page onto your Ubuntu machine. The link to the current version is: - PowerShell 7.4 (LTS) universal package for supported versions of Ubuntu - - `https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/powershell_7.4.4-1.deb_amd64.deb` + - `https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/powershell_7.4.5-1.deb_amd64.deb` - PowerShell 7.2 (LTS) universal package for supported versions of Ubuntu - - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.22/powershell_7.2.22-1.deb_amd64.deb` + - `https://github.com/PowerShell/PowerShell/releases/download/v7.2.23/powershell_7.2.23-1.deb_amd64.deb` - PowerShell 7.5-preview.3 universal package for supported versions of Ubuntu - `https://github.com/PowerShell/PowerShell/releases/download/v7.5.0-preview.3/powershell-preview_7.5.0-preview.3-1.deb_amd64.deb` @@ -102,17 +102,17 @@ sudo apt-get update sudo apt-get install -y wget # Download the PowerShell package file -wget https://github.com/PowerShell/PowerShell/releases/download/v7.4.4/powershell_7.4.4-1.deb_amd64.deb +wget https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/powershell_7.4.5-1.deb_amd64.deb ################################### # Install the PowerShell package -sudo dpkg -i powershell_7.4.4-1.deb_amd64.deb +sudo dpkg -i powershell_7.4.5-1.deb_amd64.deb # Resolve missing dependencies and finish the install (if necessary) sudo apt-get install -f # Delete the downloaded package file -rm powershell_7.4.4-1.deb_amd64.deb +rm powershell_7.4.5-1.deb_amd64.deb # Start PowerShell Preview pwsh diff --git a/reference/docs-conceptual/install/microsoft-update-faq.yml b/reference/docs-conceptual/install/microsoft-update-faq.yml index cdf6fb9ed04..9d20e8bde73 100644 --- a/reference/docs-conceptual/install/microsoft-update-faq.yml +++ b/reference/docs-conceptual/install/microsoft-update-faq.yml @@ -108,7 +108,7 @@ sections: doesn't show the check box options. To enable MU updates run the following command: ```powershell - msiexec.exe /fmu .\PowerShell-7.4.4-win-x64.msi USE_MU=1 ENABLE_MU=1 + msiexec.exe /fmu .\PowerShell-7.4.5-win-x64.msi USE_MU=1 ENABLE_MU=1 ``` For more information about running `msiexec.exe` from the command line, see