The latest available version of PowerShell is 7.6.21 and you can install that from the Microsoft Store using this link.https://apps.microsoft.com/detail/9mz1snwt0n5d
install new latest powershell
Jeffrey Stephens
0
Reputation points
how to find and install new latest powershell that is compatable with this laptop
Windows for home | Windows 11 | Install and upgrade
2 answers
Sort by: Most helpful
-
DaveM121 879.8K Reputation points Independent Advisor2026-05-17T09:58:38.49+00:00 -
AI answer
2026-05-17T09:25:23.5166667+00:00 On Windows 11 Home, the recommended way to find and install the latest PowerShell 7 that is compatible with the laptop is to use WinGet (Windows Package Manager).
- Open Start → type Terminal or Windows PowerShell → Run as administrator.
- Check that
wingetis available by running:
If it shows a version number, continue.winget --version - Find the latest stable PowerShell package:
This lists the latest available version (for example 7.6.x).winget search --id Microsoft.PowerShell --exact - Install the latest PowerShell 7 (MSIX package, recommended on Windows 11):
This installs the current stable PowerShell 7 and sets it up for use.winget install --id Microsoft.PowerShell --source winget - After installation, start PowerShell 7 by:
- Opening Start and selecting PowerShell 7, or
- Running
pwshfrom any command prompt.
PowerShell 7 installs side‑by‑side with the built‑in Windows PowerShell 5.1 and is supported on Windows 11. The installer normally places it in
C:\Program Files\PowerShell\7and adds it to the PATH sopwshworks from any shell.To upgrade later to a newer compatible version, run:
winget upgrade --id Microsoft.PowerShell
References:
AI-generated content may be incorrect. Read our transparency notes for more information.