Powershell 错误 Re: M$ 建议线程 (Windows 10 开始菜单突然变得非常慢。还有 Firefox(不是其他浏览器)全新“重置”Windows

Powershell 错误 Re: M$ 建议线程 (Windows 10 开始菜单突然变得非常慢。还有 Firefox(不是其他浏览器)全新“重置”Windows

我必须“重置”我的 Windows,并选择“保留我的文件”。我执行了磁盘清理以删除旧的 .windows 文件。

在我遇到这个问题之前,即使安装了一年或更长时间,Windows 仍然非常灵敏和快速。问题是在我安装了 ASRock 制作的一个应用程序后引起的,该应用程序能够处理时钟值等,它完全破坏了我的计算机,所以我无法使用它,我发现最简单的方法是尝试重置 Windows。

长话短说,现在速度很慢,但只有在单击“开始”菜单和/或在任务栏中搜索应用程序等时才会变慢。其他一切都很快。温度完美,游戏运行完美,4k 视频等。

我读过这个帖子:https://answers.microsoft.com/en-us/windows/forum/windows_10-start-winpc/start-menu-wont-open-windows-10-is-suddenly/4ea92f23-5680-4d3e-93a8-4c0aa7bc49b7

它基本上让我在 Powershell 中输入以下内容:

Get-AppXPackage -AllUsers |Where-Object {$_.InstallLocation -like "*SystemApps*"} | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

他说如果这个过程失败了,那要么是我输入错误,要么就是 Windows 出了大问题。鉴于我已经输入/粘贴了好几次,而且我直接从 Microsoft 下载了 Windows,我不知道下一步该怎么做。我在 Powershell 中收到此错误,告诉我需要关闭 Windows Client 和 WindowsStartMenu(或类似的东西...):

ERROR: 
Add-AppxPackage : Deployment failed with HRESULT: 0x80073D02, The package could not be installed because resources it   modifies are currently in use.                                                                                          error 0x80073D02: Unable to install because the following apps need to be closed                                        Microsoft.Windows.StartMenuExperienceHost_10.0.19041.610_neutral_neutral_cw5n1h2txyewy.                                 NOTE: For additional information, look for [ActivityId] 46500a1d-382a-0000-e571-56462a38d701 in the Event Log or use    the command line Get-AppPackageLog -ActivityID 46500a1d-382a-0000-e571-56462a38d701                                     At line:1 char:94                                                                                                       + ...  | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.I ...                                         +                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                                                 + CategoryInfo          : NotSpecified: (C:\Windows\Syst...ppXManifest.xml:String) [Add-AppxPackage], Exception         + FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand                                                                                                                              Add-AppxPackage : Deployment failed with HRESULT: 0x80073D02, The package could not be installed because resources it   modifies are currently in use.                                                                                          error 0x80073D02: Unable to install because the following apps need to be closed
MicrosoftWindows.Client.CBS_120.2212.551.0_x64__cw5n1h2txyewy.
NOTE: For additional information, look for [ActivityId] 46500a1d-382a-0006-577e-51462a38d701 in the Event Log or use
the command line Get-AppPackageLog -ActivityID 46500a1d-382a-0006-577e-51462a38d701
At line:1 char:94
+ ...  | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.I ...
+                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (C:\Windows\Syst...ppXManifest.xml:String) [Add-AppxPackage], Exception
    + FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand

答案1

创建一个新的用户帐户可以使一切再次正常且快速地运行。

奇怪的是,这在全新“重置”安装的 Windows 上是必要的,但至少这已经解决了问题。

相关内容