📜  恢复 windows 商店 powershell (1)

📅  最后修改于: 2023-12-03 15:09:55.563000             🧑  作者: Mango

恢复 Windows 商店 PowerShell

在使用 Windows 商店中的应用时,有时候会遇到各种问题,比如无法启动、无法搜索应用、无法下载安装等等。其中,最常见的问题之一就是 Windows 商店程序员 PowerShell 右键菜单不见了。

本文将介绍如何使用 PowerShell 命令行重新安装 Windows 商店,在恢复 PowerShell 右键菜单的同时,还能修复其他一些 Windows 商店的相关问题。

步骤一:打开 PowerShell

按下 Windows 键 + R,输入 powershell,点击“确定”按钮。此时会打开 PowerShell 命令行窗口。

步骤二:卸载 Windows 商店

在 PowerShell 中运行以下命令:

Get-AppxPackage *windowsstore* | Remove-AppxPackage

该命令卸载了名为“WindowsStore”的应用程序包。该应用程序包正是 Windows 商店的核心组件。

步骤三:重新安装 Windows 商店

在 PowerShell 中运行以下命令:

Get-AppxPackage -allusers Microsoft.WindowsStore | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

该命令将重新安装 Windows 商店。

步骤四:恢复 PowerShell 右键菜单

在 PowerShell 中运行以下命令:

Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope CurrentUser

该命令打开了 PowerShell 脚本执行策略。

接下来,在 PowerShell 命令行窗口中输入以下命令,然后按下回车键:

notepad $PROFILE

在打开的文本编辑器中,输入以下内容:

New-Item -Path 'HKCU:\Software\Classes\Directory\Background\shell\PowerShell Here' -Value 'PowerShell Here'
New-Item -Path 'HKCU:\Software\Classes\Directory\Background\shell\PowerShell Here\command' -Value 'powershell -noexit -command Set-Location -LiteralPath ''%V'''
New-Item -Path 'HKCU:\Software\Classes\Directory\shell\PowerShell Here' -Value 'PowerShell Here'
New-Item -Path 'HKCU:\Software\Classes\Directory\shell\PowerShell Here\command' -Value 'powershell -noexit -command Set-Location -LiteralPath ''%1'''
New-Item -Path 'HKCU:\Software\Classes\Drive\shell\PowerShell Here' -Value 'PowerShell Here'
New-Item -Path 'HKCU:\Software\Classes\Drive\shell\PowerShell Here\command' -Value 'powershell -noexit -command Set-Location -LiteralPath ''%V'''

保存并关闭文本编辑器。此时,已恢复 PowerShell 右键菜单。

结论

通过以上四个简单的步骤,您即可轻松地恢复 Windows 商店 PowerShell,并解决相应的问题。