• About Us
  • Announce
  • Privacy Policy
  • Contact us
MasterTrend Info - Technology, News and Tutorials
  • HOME
    • BLOG
  • Tutorials
  • Hardware
  • Gaming
  • Smartphones
  • Security
  • Windows
  • IA
  • Software
  • Networks
  • en_USEnglish
    • es_ESSpanish
    • pt_BRPortuguese
    • fr_FRFrench
    • it_ITItalian
    • de_DEGerman
    • ko_KRKorean
    • jaJapanese
    • zh_CNChinese
    • ru_RURussian
    • thThai
    • pl_PLPolish
    • tr_TRTurkish
    • id_IDIndonesian
    • hi_INHindi
    • arArabic
    • sv_SESwedish
    • nl_NLDutch
No result
See all results
  • HOME
    • BLOG
  • Tutorials
  • Hardware
  • Gaming
  • Smartphones
  • Security
  • Windows
  • IA
  • Software
  • Networks
  • en_USEnglish
    • es_ESSpanish
    • pt_BRPortuguese
    • fr_FRFrench
    • it_ITItalian
    • de_DEGerman
    • ko_KRKorean
    • jaJapanese
    • zh_CNChinese
    • ru_RURussian
    • thThai
    • pl_PLPolish
    • tr_TRTurkish
    • id_IDIndonesian
    • hi_INHindi
    • arArabic
    • sv_SESwedish
    • nl_NLDutch
No result
See all results
MasterTrend Info - Technology, News and Tutorials
No result
See all results
Start Windows (Real-World Use and Solutions)

Updating PowerShell on Windows: all methods

MasterTrend Insights by MasterTrend Insights
July 26, 2026
in Windows (Real-World Use and Solutions)
Reading time:21 min read
0
Updating PowerShell on Windows - Woman updating PowerShell on Windows from a computer, with the PowerShell logo and the text "Update PowerShell" on the screen.

Update PowerShell on Windows with all available methods: learn to install the latest version via Windows Update, Microsoft Store, winget, or PowerShell commands. Improve the security, performance, and compatibility of your scripts. #PowerShell #Windows #UpdatePowerShell #WindowsTutorial #Computing

0
SHARED
0
Views
Share on FacebookShare on Twitter

Contents

  1. Update PowerShell on Windows: practical guide and official methods
  2. Windows PowerShell 5.1 and PowerShell 7 are not the same application
    1. Versions in effect as of July 2026
  3. Check which version you have installed
  4. Which method should be used
  5. 1. Install or update PowerShell with WinGet
    1. Update sources and locate the official package
    2. Install for the first time
    3. Update an existing installation
  6. 2. Download and install PowerShell from GitHub
    1. Important MSI options
  7. 3. Install or update from Microsoft Store
  8. 4. Use the portable ZIP package
  9. 5. Install as a .NET global tool
  10. How to update Windows PowerShell 5.1
  11. Use Windows PowerShell 5.1 and PowerShell 7 at the same time
  12. Verify the update
  13. Troubleshooting
    1. WinGet is not recognized
    2. WinGet cannot find PowerShell
    3. pwsh is not recognized
    4. PowerShell takes a long time to start
    5. A module works in 5.1 but fails in 7
  14. Security before updating
  15. Frequently Asked Questions
    1. Does installing PowerShell 7 remove Windows PowerShell 5.1?
    2. Which version is recommended in 2026?
    3. MSI or Microsoft Store?
    4. Does PowerShell update automatically?
    5. Do I need administrator permissions?
    6. Does updating improve performance?
  16. Conclusion

Update PowerShell on Windows: practical guide and official methods

Update PowerShell on Windows requires distinguishing two different products. Windows PowerShell 5.1 is part of the operating system and only receives security fixes via Windows Update. PowerShell 7 is installed separately, uses the executable pwsh.exe and can be updated with WinGet, Microsoft Store, an MSI package, a ZIP file, or the .NET global tool.

Quick response

And PowerShell 7 is already installed, open Windows Terminal and run:

winget upgrade --id Microsoft.PowerShell --exact --source winget

If it is not yet installed, replace upgrade by install. with install. For administration, remoting, or installation for all users, the MSI is more complete than the default MSIX package.

Updating does not fix all errors

If PowerShell takes a long time to open, crashes, or shows errors, the cause may also be the startup profile, an incompatible module, a corporate policy, antivirus software, environment variables, or corrupted files. The update may provide fixes, but it should not be presented as an automatic solution for any failure.

Windows PowerShell 5.1 and PowerShell 7 are not the same application

FeatureWindows PowerShell 5.1PowerShell 7
Executablepowershell.exepwsh.exe
pwsh.exe.Engine.NET Framework 4.x
Modern and cross-platform .NETWindows Update; security maintenanceWinGet, Store/MSIX, MSI, ZIP, or .NET
Common pathC:\Windows\System32\WindowsPowerShell\v1.0C:\Program Files\PowerShell\7
StateIncluded for compatibility; no new featuresActive development and support

Installing PowerShell 7 does not replace or uninstall Windows PowerShell 5.1. Both can coexist because they use different executables, folders, profiles, and module paths. This separation allows you to keep legacy tools that still require Windows PowerShell while taking advantage of the modern features of PowerShell 7.

Versions in effect as of July 2026

  • PowerShell 7.6.4 LTS: current long-term support version and the package that WinGet offers by default.
  • PowerShell 7.5.9 Stable: short-cycle version, supported until November 10, 2026.
  • PowerShell 7.4.18 LTS: previous LTS, also supported until November 10, 2026.
  • PowerShell 7.7 Preview: testing branch with no production support.

Stable or LTS?

The naming can be confusing because PowerShell 7.6 LTS is newer than PowerShell 7.5 Stable. For most users and production environments, 7.6 LTS is the most reasonable choice due to its longer maintenance cycle.

Check which version you have installed

Open the console you normally use and run:

$PSVersionTable | Select-Object PSEdition, PSVersion
  • PSEdition Desktop and version 5.1: you are on Windows PowerShell.
  • PSEdition Core and version 7.x: you are on PowerShell 7.
  • If you installed PowerShell 7 but still see 5.1, you probably opened powershell.exe instead of pwsh.exe.
where.exe powershell

Which method should be used

MethodBest usageUpdatesLimitations
WinGet MSIXPersonal PCWinGet or StorePer user; no PowerShell remoting
WinGet MSIAdministration and full teamWinGet or Microsoft UpdateRequires administrator
GitHub MSIOffline or enterpriseMicrosoft Update if enabledChoose correct architecture
Microsoft StoreGraphical installationAutomaticMSIX limitations
ZIPPortable or multiple versionsManualNo automatic PATH or shortcuts
.NET Global ToolDevelopersdotnet toolRequires .NET SDK

1. Install or update PowerShell with WinGet

Microsoft considers WinGet the recommended method for installing PowerShell on client machines. You can run it from Windows Terminal, Command Prompt, Windows PowerShell, or PowerShell 7.

Run as administrator option to open a console on Windows
Open as administrator when installing the MSI for the entire machine.

Update sources and locate the official package

winget source update
Searching for PowerShell via WinGet
Filtering by exact ID avoids confusing the stable package with Preview.
Microsoft.PowerShell identifier displayed by WinGet
The official ID is Microsoft.PowerShell.

Install for the first time

From PowerShell 7.6, the standard command installs the MSIX package:

winget install --id Microsoft.PowerShell --exact --source winget

To install the traditional MSI:

winget install --id Microsoft.PowerShell --exact --source winget --installer-type wix

Update an existing installation

winget upgrade --id Microsoft.PowerShell --exact --source winget

If you use MSI and want to keep that installation type:

winget upgrade --id Microsoft.PowerShell --exact --source winget --installer-type wix
Installation of PowerShell via WinGet
WinGet shows the source, the selected package, and the progress.

Review the installation type before changing it

MSIX is installed per user, and MSI is usually installed for the machine. Check first winget list --id Microsoft.PowerShell --exact to avoid creating unnecessary parallel installations.

2. Download and install PowerShell from GitHub

The official repository publishes signed installers. This method is appropriate when you need to preserve the installer, work offline, choose the architecture, or deploy it with enterprise tools.

  1. Open the official PowerShell page on GitHub.
  2. Download win-x64.msi for most PCs, or win-arm64.msi for Windows on ARM.
  3. For general use, choose the most recent release from the current LTS branch.
  4. Do not use Preview in production.
PowerShell packages published on GitHub
Check the branch, architecture, and package extension.

Important MSI options

  • Add PowerShell to Path: allows starting PowerShell 7 with pwsh.
  • Enable updating through Microsoft Update: enables updates via Windows Update, WSUS, or Configuration Manager.
  • Register Windows Event Logging Manifest: registers PowerShell events.
  • Context menu: adds optional shortcuts in File Explorer.
  • Enable PowerShell Remoting: activate it only if you really need it and understand its configuration.
PowerShell MSI wizard on Windows
The MSI allows control over PATH, Microsoft Update, logs, and remoting.
Completed installation of PowerShell
Open a new console to reload PATH.

PowerShell 7.7 changes the distribution

Microsoft states that PowerShell 7.7 will no longer publish MSI. WinGet will install MSIX. This especially affects administrators who rely on per-machine installation, remoting, or MSI deployments.

3. Install or update from Microsoft Store

Microsoft Store offers a graphical installation and automatic updates. It is suitable for an individual user who uses PowerShell locally.

  1. Open Microsoft Store.
  2. Search PowerShell and verify that the publisher is Microsoft Corporation.
  3. Credit install.
  4. To force an update, open Library and use Get updates.
Microsoft Store on Windows 11
Microsoft Store manages the MSIX installation and its updates.
PowerShell in Microsoft Store
Verify the product and its publisher before installing.

Store/MSIX limitations

It is installed for a single user, does not support PowerShell remoting, and restricts certain operations that write to $PSHOME, including profiles for all users and some LocalMachine scope settings.

4. Use the portable ZIP package

The ZIP is useful for testing a version, maintaining multiple 7.x branches in separate folders, or running PowerShell without a conventional installation.

  1. Download the x64 or Arm64 ZIP from GitHub.
  2. Unblock the file if Windows marks it as coming from the Internet.
  3. Extract the contents.
  4. Execute pwsh.exe from the folder.
  5. Manually add a shortcut or the path to PATH if needed.

The ZIP does not update automatically.

You must download each new version. It also does not configure requirements, shortcuts, PATH, Microsoft Update, or remoting.

5. Install as a .NET global tool

Developer-oriented method with the .NET SDK:

dotnet tool install --global PowerShell

To update:

dotnet tool update --global PowerShell

How to update Windows PowerShell 5.1

Windows PowerShell 5.1 does not become PowerShell 7. It is a Windows component and receives security updates via Windows Update.

  1. Open Configuration.
  2. Enter Windows Update.
  3. Credit Check for updates.
  4. Install the cumulative updates and restart if prompted.

Even if Windows is up to date, Windows PowerShell will still show 5.1. To use PowerShell 7, open the application PowerShell 7 or run pwsh.

Use Windows PowerShell 5.1 and PowerShell 7 at the same time

Coexistence is intentional. Windows PowerShell 5.1 may still be needed for legacy modules, Windows PowerShell ISE, or .NET Framework-based tools. PowerShell 7 is preferable for new scripts and modern automation.

Perfiles de Windows PowerShell 5.1 y PowerShell 7 en Windows Terminal
Windows Terminal can display separate profiles for both editions.

Open Windows PowerShell 5.1

powershell

Open PowerShell 7

pwsh

Verify the update

$PSVersionTable | Select-Object PSEdition, PSVersion, OS
winget list --id Microsoft.PowerShell --exact
Get-Command pwsh | Select-Object Name, Source, Version

Troubleshooting

WinGet is not recognized

Update App Installer from Microsoft Store. WinGet is not natively available on Windows Server 2022 or earlier; Windows Server 2025 includes it with Desktop Experience.

WinGet cannot find PowerShell

winget source update

If the source remains corrupted, from an administrative console:

winget source reset --force

pwsh is not recognized

Close and reopen Windows Terminal. If you installed the MSI, try:

"C:\Program Files\PowerShell\7\pwsh.exe"

PowerShell takes a long time to start

pwsh -NoProfile

If it opens correctly, review the file indicated by $PROFILE. Make a backup before modifying it and check module imports, network access, and prompt customizations.

A module works in 5.1 but fails in 7

Look for a compatible version. When the module allows it, try the compatibility layer:

Import-Module ModuleName -UseWindowsPowerShell

Security before updating

  • Download only from Microsoft Store, WinGet, Microsoft Learn, or PowerShell/PowerShell on GitHub.
  • Do not use portals that repackage the installer.
  • Copy profiles and scripts before switching branches or installer types.
  • Test critical scripts before migrating scheduled tasks from Windows PowerShell 5.1.
  • Do not enable remoting or reduce security controls for a basic installation.

Frequently Asked Questions

Does installing PowerShell 7 remove Windows PowerShell 5.1?

No. They are installed in different folders and use different executables.

Which version is recommended in 2026?

For most users and production systems, PowerShell 7.6 LTS, always on its latest maintenance revision.

MSI or Microsoft Store?

Store/MSIX is convenient for personal use. MSI is more suitable for all users, remoting, and advanced administration.

Does PowerShell update automatically?

Store/MSIX can update automatically. MSI can use Microsoft Update if enabled. ZIP requires manual updates.

Do I need administrator permissions?

Not for all installations. MSIX per-user can be installed without elevation; MSI for the machine and system changes usually require it.

Does updating improve performance?

It can provide fixes and security, but a slow console also requires reviewing profiles, modules, network, and antivirus. Use pwsh -NoProfile to isolate the startup.

Conclusion

The simplest way to update PowerShell on Windows is to use WinGet with the exact ID Microsoft.PowerShell. For everyday use, MSIX is sufficient; for administration, remoting, or deployment to all users, MSI offers more comprehensive integration.

Windows PowerShell 5.1 will remain installed and will be maintained through Windows Update. After installing PowerShell 7, open pwsh, verify $PSVersionTable and test your modules and scripts before migrating important automations.

Official sources consulted

  • Microsoft Learn: Install PowerShell 7 on Windows
  • Microsoft Learn: Lifecycle and versions
  • Microsoft Learn: Migrate from 5.1 to 7
  • Microsoft Learn: Maintenance of Windows PowerShell 5.1
  • Microsoft Learn: winget upgrade
  • GitHub official: releases and packages
Share this:
FacebookLinkedInPinterestXRedditTumblrBlueskyThreadsShareChatGPTClaudeGoogle AIGrok
Tags: EvergreenContentWindows11WindowsTips
Previous Publication

Read messages on iPhone: a guide for current iOS

next post

Uninstalled programs in Windows 11: how to recover them

MasterTrend Insights

MasterTrend Insights

Our editorial team shares a deep-dive analysis, tutorials and recommendations for getting the most out of your devices and digital tools.

RelatedPublications

Uninstalled programs in Windows 11 - Woman using a laptop to recover uninstalled programs in Windows 11.
Windows (Real-World Use and Solutions)

Uninstalled programs in Windows 11: how to recover them

July 26, 2026
0
Privacy in Windows 11 - Woman using a laptop at home configuring privacy options in Windows 11 with O&O ShutUp10++, showing security settings and data control on screen.
Windows (Real-World Use and Solutions)

Privacy in Windows 11 with O&O ShutUp10++

June 21, 2026
128
Optional Windows 11 Features - Woman working on a Windows 11 laptop activating optional features in system settings; guide on when to enable or disable optional Windows 11 features in a modern office environment
Windows (Real-World Use and Solutions)

Optional features in Windows 11: when to turn them on or off

June 21, 2026
151
Carpeta inetpub Windows: usuario revisando error en PowerShell tras eliminar carpeta del sistema, explicando por qué no debes borrar inetpub si usas IIS o servidor web en Windows.
Windows (Real-World Use and Solutions)

inetpub folder in Windows: why you shouldn't delete it

May 2, 2026
175
Windows 11 local account; Woman using Windows 11 laptop showing locked “Sign-in” screen, illustrating how to create a local account in Windows 11 and avoid signing in with Microsoft.
Windows (Real-World Use and Solutions)

Windows 11 Local Account: How to Avoid Microsoft

May 1, 2026
340
Windows 11 God Mode: Woman holding laptop with "God Mode" folder and advanced system options for configuration, administrative tools and PC optimization.
Windows (Real-World Use and Solutions)

Windows 11 God Mode: What it is and when it adds value

March 19, 2026
233
next post
Uninstalled programs in Windows 11 - Woman using a laptop to recover uninstalled programs in Windows 11.

Uninstalled programs in Windows 11: how to recover them

0 0 votes
Article Rating
Subscribe
Access
Notify of
guest
guest
0 Comments
Oldest
Newest Most voted
Online Comments
See all comments

Stay Connected

  • 976 Fans
  • 118 Followers
  • 1.4 k Followers
  • 1.8 k Subscribers
  • Trends
  • Comments
  • Last
🖥️ How to open 'Devices and printers' in Windows 11: 4 simple steps

🌟 How to open ‘Devices and printers’ in Windows 11: ¡Amazing trick!

June 21, 2026
Windows 11 Persistent Clock: Options for displaying a persistent clock, limitations and practical decisions, with blue background, Windows icon and minimalist analog clock.

Windows 11 Persistent Clock: Options, Limits, and Real Decisions

June 21, 2026
Ethernet not working in Windows 11: 9 easy tricks

Ethernet not working in Windows 11: 3-minute solution ⚡🌐

13 November 2025
How to save game in REPO

How to save game in REPO 🔥 Discover the secret to not losing progress

7 July 2025
Features of Gmail on Android: Save time with 5 tips

Features of Gmail in Android: you 5 tricks you did not know! 📱✨

12
Notebook motherboard repair: internal view with motherboard, cooling system, fans and key components to check in an open laptop

Notebook Motherboard Repair – Step-by-Step Diagnosis

10
Install Windows 11 Home without Internet

Install Windows 11 Home without Internet

10
How to backup drivers in Windows 11/10 in 4 steps!

How to backup drivers in Windows 11/10 It Prevents errors! 🚨💾

10
Uninstalled programs in Windows 11 - Woman using a laptop to recover uninstalled programs in Windows 11.

Uninstalled programs in Windows 11: how to recover them

July 26, 2026
Updating PowerShell on Windows - Woman updating PowerShell on Windows from a computer, with the PowerShell logo and the text "Update PowerShell" on the screen.

Updating PowerShell on Windows: all methods

July 26, 2026
Read messages on iPhone - Woman reading messages on an iPhone next to the text “Read Receipts on iPhone”, guide to managing read receipts in current iOS.

Read messages on iPhone: a guide for current iOS

July 26, 2026
Saving Reel drafts - Woman editing a Reel draft on her mobile phone and saving it to the phone's gallery.

Save Reels drafts to the gallery

July 22, 2026

Recent News

Uninstalled programs in Windows 11 - Woman using a laptop to recover uninstalled programs in Windows 11.

Uninstalled programs in Windows 11: how to recover them

July 26, 2026
0
Updating PowerShell on Windows - Woman updating PowerShell on Windows from a computer, with the PowerShell logo and the text "Update PowerShell" on the screen.

Updating PowerShell on Windows: all methods

July 26, 2026
0
Read messages on iPhone - Woman reading messages on an iPhone next to the text “Read Receipts on iPhone”, guide to managing read receipts in current iOS.

Read messages on iPhone: a guide for current iOS

July 26, 2026
0
Saving Reel drafts - Woman editing a Reel draft on her mobile phone and saving it to the phone's gallery.

Save Reels drafts to the gallery

July 22, 2026
96
MasterTrend Info logo

MasterTrend Info is your source of reference in technology: discover news, tutorials, and analysis of hardware, software, gaming, mobile, and artificial intelligence. Subscribe to our newsletter and don't miss any trend.

Follow us

Browse by Category

  • Gaming & Real-World Experience
  • Hardware & Performance
  • AI Applied & Real-World Use
  • What's new
  • Networks, Wi-Fi & Internet
  • Digital Security & Privacy
  • Smartphones & Purchase Decision
  • Software & Useful Tools
  • Tutorials (Problem Solving)
  • Windows (Real-World Use and Solutions)

Recent News

Uninstalled programs in Windows 11 - Woman using a laptop to recover uninstalled programs in Windows 11.

Uninstalled programs in Windows 11: how to recover them

July 26, 2026
Updating PowerShell on Windows - Woman updating PowerShell on Windows from a computer, with the PowerShell logo and the text "Update PowerShell" on the screen.

Updating PowerShell on Windows: all methods

July 26, 2026
  • About Us
  • Announce
  • Privacy Policy
  • Contact us

Copyright © 2025 https://mastertrend.info/ - All rights reserved. All trademarks are property of their respective owners.

We've detected you might be speaking a different language. Do you want to change to:
es_ES Spanish
es_ES Spanish
en_US English
pt_BR Portuguese
fr_FR French
it_IT Italian
ru_RU Russian
de_DE German
zh_CN Chinese
ko_KR Korean
ja Japanese
th Thai
hi_IN Hindi
ar Arabic
tr_TR Turkish
pl_PL Polish
id_ID Indonesian
nl_NL Dutch
sv_SE Swedish
Change Language
Close and do not switch language
No result
See all results
  • en_USEnglish
    • es_ESSpanish
    • pt_BRPortuguese
    • fr_FRFrench
    • it_ITItalian
    • de_DEGerman
    • ko_KRKorean
    • jaJapanese
    • zh_CNChinese
    • ru_RURussian
    • pl_PLPolish
    • id_IDIndonesian
    • tr_TRTurkish
    • hi_INHindi
    • thThai
    • arArabic
    • sv_SESwedish
    • nl_NLDutch
  • Gaming & Real-World Experience
  • Hardware & Performance
  • AI Applied & Real-World Use
  • Smartphones & Purchase Decision
  • What's new
  • Networks, Wi-Fi & Internet
  • Digital Security & Privacy
  • Software & Useful Tools
  • Tutorials (Problem Solving)
  • Windows (Real-World Use and Solutions)

Copyright © 2025 https://mastertrend.info/ - All rights reserved. All trademarks are property of their respective owners.

wpDiscuz
RedditBlueskyXMastodonHacker News
Share this:
MastodonVKWhatsAppTelegramSMSLineMessengerFlipboardHacker NewsMixNextdoorPerplexityXingYummly
Your Mastodon Instance