• 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 using all available methods: Learn how to install the latest version via Windows Update, the 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. Updating PowerShell on Windows: A 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 using WinGet
    1. Update the fonts and locate the official package
    2. First time installation
    3. Upgrading an existing installation
  6. 2. Download and install PowerShell from GitHub
    1. Important MSI options
  7. 3. Install or update from the Microsoft Store
  8. 4. Use the portable ZIP package
  9. 5. Install as a global .NET tool
  10. How to update Windows PowerShell 5.1
  11. Using Windows PowerShell 5.1 and PowerShell 7 at the same time
  12. Check for 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. One module works in 5.1 but fails in 7
  14. Safety before updating
  15. Frequently Asked Questions
    1. ¿Instalar PowerShell 7 elimina 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 privileges?
    6. Does updating improve performance?
  16. Conclusion

Updating PowerShell on Windows: A practical guide and official methods

Update PowerShell in Windows It is necessary to distinguish between two different products. Windows PowerShell 5.1 is part of the operating system and only receives security patches through Windows Update. PowerShell 7 is installed separately and 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's not already installed, replace upgrade by installFor 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 is slow to open, crashes, or displays errors, the cause could also be related to the startup profile, an incompatible module, a corporate policy, antivirus software, environment variables, or corrupted files. Updating may provide fixes, but it shouldn't be considered a solution for every problem.

Windows PowerShell 5.1 and PowerShell 7 are not the same application

FeatureWindows PowerShell 5.1PowerShell 7
Executablepowershell.exepwsh.exe
Motor.NET Framework 4.xModern and cross-platform .NET
UpdateWindows Update; security maintenanceWinGet, Store/MSIX, MSI, ZIP o .NET
Usual routeC:\Windows\System32\WindowsPowerShell\v1.0C:\Program Files\PowerShell\7
StateIncluded for compatibility; no new featuresAsset 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 retain older tools that are still needed. Windows PowerShell while using the features modern versions of PowerShell 7.

Versions in effect as of July 2026

  • PowerShell 7.6.4 LTS: current long-term support version and 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 version, also supported until November 10, 2026.
  • PowerShell 7.7 Preview: test branch without production support.

¿Stable o LTS?

The naming convention can be confusing because PowerShell 7.6 LTS is newer than PowerShell 7.5 Stable. For most users and production teams, 7.6 LTS is the more sensible 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 in Windows PowerShell.
  • PSEdition Core and version 7.x: you are in PowerShell 7.
  • If you installed PowerShell 7 but are still seeing 5.1, you probably opened powershell.exe instead of pwsh.exe.
where.exe powershell where.exe pwsh

Which method should be used

MethodBest useUpdatesLimitations
WinGet MSIXPC personalWinGet o StorePer user; without PowerShell remoting
WinGet MSIAdministration and full teamWinGet or Microsoft UpdateRequires administrator
MSI from GitHubOffline the companyMicrosoft Update if enabledChoosing the right architecture
Microsoft StoreGraphical installationAutomaticMSIX limitations
ZIPPortable or multiple versionsManualsWithout PATH or automatic access
.NET Global ToolDevelopersdotnet toolRequires .NET SDK

1. Install or update PowerShell using WinGet

Microsoft recommends WinGet as the preferred method for installing PowerShell on client computers. You can run it from Windows Terminal, Command Prompt, Windows PowerShell, or PowerShell 7.

Run as administrator option to open a console in Windows
Open as administrator when you are going to install the MSI for the whole computer.

Update the fonts and locate the official package

winget source update winget search --id Microsoft.PowerShell --exact
PowerShell search using WinGet
The filter by exact ID prevents confusing the stable package with the Preview package.
Microsoft.PowerShell identifier displayed by WinGet
The official ID is Microsoft.PowerShell.

First time installation

Since 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

Upgrading an existing installation

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

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

winget upgrade --id Microsoft.PowerShell --exact --source winget --installer-type wix
Installing PowerShell using WinGet
WinGet displays the source, the chosen package, and the progress.

Check the type of installation before changing it

MSIX is installed per user, while MSI is typically installed for the computer. Check first. winget list --id Microsoft.PowerShell --exact to avoid creating unnecessary parallel facilities.

2. Download and install PowerShell from GitHub

The official repository publishes signed installers. This method is appropriate when you need to retain 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 over ARM.
  3. For general use, choose the latest revision of the current LTS branch.
  4. Do not use Preview in production.
PowerShell packages published on GitHub
Check the branch, architecture, and extension of the package.

Important MSI options

  • Add PowerShell to Path: allows you to start PowerShell 7 with pwsh.
  • Enable updating through Microsoft Update: Enable updates via Windows Update, WSUS, or Configuration Manager.
  • Register Windows Event Logging Manifest: Logs PowerShell events.
  • Context menu: Adds optional shortcuts in the Explorer.
  • Enable PowerShell Remoting: Activate it only if you really need it and understand its settings.
MSI PowerShell Assistant in Windows
The MSI allows you to control PATH, Microsoft Update, logs, and remoting.
PowerShell installation complete
Open a new console to reload PATH.

PowerShell 7.7 changes the distribution

Microsoft indicates that PowerShell 7.7 will no longer publish MSI files. WinGet will install MSIX files. This particularly affects administrators who rely on all-user installations, remote deployments, or MSI deployments.

3. Install or update from the Microsoft Store

The 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 en Microsoft Store
Check 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 write operations. $PSHOME, including profiles for all users and some LocalMachine scope settings.

4. Use the portable ZIP package

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

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

The ZIP file does not update automatically.

You must download each new version. It also doesn't configure requirements, access, PATH, Microsoft Update, or remoting.

5. Install as a global .NET tool

Developer-oriented method using 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 component of Windows and receives security updates through 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 updated, Windows PowerShell will still display version 5.1. To use PowerShell 7, open the application. PowerShell 7 or execute pwsh.

Using Windows PowerShell 5.1 and PowerShell 7 at the same time

The coexistence is intentional. Windows PowerShell 5.1 may still be required for legacy modules, Windows PowerShell ISE, or .NET Framework-based tools. PowerShell 7 is preferable for newer 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.

Abrir Windows PowerShell 5.1

powershell

Abrir PowerShell 7

pwsh

Check for 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 WinGet is not available natively from the Microsoft Store. It is not included with Windows Server 2022 or earlier; Windows Server 2025 includes it with Desktop Experience.

WinGet cannot find PowerShell

winget source update winget search --id Microsoft.PowerShell --exact --source winget

If the source remains damaged, from an administrative console:

winget source reset --force winget source update

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, check the file indicated by $PROFILEMake a copy before modifying it and check module imports, network access, and prompt customizations.

One module works in 5.1 but fails in 7

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

Import-Module NombreDelModulo -UseWindowsPowerShell

Safety before updating

  • Descarga solo desde Microsoft Store, WinGet, Microsoft Learn o PowerShell/PowerShell en GitHub.
  • Do not use portals that repackage the installer.
  • Copy profiles and scripts before changing 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

¿Instalar PowerShell 7 elimina 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 in its latest maintenance release.

MSI or Microsoft Store?

Store/MSIX is convenient for personal use. MSI is more suitable for all users, remote access, and advanced management.

Does PowerShell update automatically?

Store/MSIX can be updated automatically. MSI can use Microsoft Update if enabled. ZIP requires manual updating.

Do I need administrator privileges?

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

Does updating improve performance?

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

Conclusion

The simplest way to Update PowerShell on Windows It's about using WinGet with the exact ID Microsoft.PowerShellFor everyday use, MSIX is sufficient; for administration, remoting, or deployment for all users, MSI offers more complete 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: instalar PowerShell 7 en Windows
  • Microsoft Learn: Lifecycle and Versions
  • Microsoft Learn: Migrating from 5.1 to 7
  • Microsoft Learn: Maintaining Windows PowerShell 5.1
  • Microsoft Learn: winget upgrade
  • Official GitHub: versions 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