diff --git a/hub/powertoys/install.md b/hub/powertoys/install.md index bedc085e31..3f3c8c66c9 100644 --- a/hub/powertoys/install.md +++ b/hub/powertoys/install.md @@ -84,9 +84,21 @@ Generate a `winget` command to install Microsoft PowerToys with arguments to ins Copilot is powered by AI, so surprises and mistakes are possible. For more information, see [Copilot FAQs](https://www.microsoft.com/microsoft-copilot/learn/). -### Extracting the MSI from the bundle +### Extracting the MSI from the bundle for 0.94 and later -Make sure to have [WiX Toolset v3](https://docs.firegiant.com/wix/wix3/) installed. The command doesn't work with WiX Toolset v4. +Make sure to have the [.NET SDK](https://dotnet.microsoft.com/download/) installed. + +In PowerShell, run `dotnet tool install wix --global` to install the latest version of WiX Toolset. + +This PowerShell example assumes that the PowerToys installer has been downloaded to the Windows desktop. + +```powershell +wix burn extract ${Env:\USERPROFILE}"\Desktop\PowerToysSetup-0.94.0-x64.exe" -out ${Env:\USERPROFILE}"\Desktop\extractedPath" -oba ${Env:\USERPROFILE}"\Desktop\extractedPath" +``` + +### Extracting the MSI from the bundle for 0.93 and earlier + +Make sure to have [WiX Toolset v3](https://docs.firegiant.com/wix/wix3/) installed. The command doesn't work with WiX Toolset v4 and later versions. This PowerShell example assumes the default install location for WiX Toolset and that the PowerToys installer has been downloaded to the Windows desktop.