Share via

install new latest powershell

Jeffrey Stephens 0 Reputation points
2026-05-17T09:25:13.9533333+00:00

how to find and install new latest powershell that is compatable with this laptop

Windows for home | Windows 11 | Install and upgrade
0 comments No comments

2 answers

Sort by: Most helpful
  1. DaveM121 879.8K Reputation points Independent Advisor
    2026-05-17T09:58:38.49+00:00

    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

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments

  2. 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).

    1. Open Start → type Terminal or Windows PowerShellRun as administrator.
    2. Check that winget is available by running:
         winget --version
      
      If it shows a version number, continue.
    3. Find the latest stable PowerShell package:
         winget search --id Microsoft.PowerShell --exact
      
      This lists the latest available version (for example 7.6.x).
    4. Install the latest PowerShell 7 (MSIX package, recommended on Windows 11):
         winget install --id Microsoft.PowerShell --source winget
      
      This installs the current stable PowerShell 7 and sets it up for use.
    5. After installation, start PowerShell 7 by:
      • Opening Start and selecting PowerShell 7, or
      • Running pwsh from 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\7 and adds it to the PATH so pwsh works 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.

    Was this answer helpful?

    1 person found this answer helpful.

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.