修复应用在 Windows 10 中灰显
修复应用程序在 Windows 10 中显示为灰色: (Fix Apps are greyed out in Windows 10: )如果您最近更新到Windows 10,那么当您打开“开始”菜单(Start Menu)时,您可能会看到一些应用程序(Apps)带有下划线,并且这些应用程序(Apps)的磁贴显示为灰色。这些应用程序包括日历(Calendar)、音乐(Music)、地图(Maps)、照片等,这意味着(Photos)Windows 10附带的所有应用程序都存在此问题。似乎这些应用程序卡在更新模式下,当您单击这些应用程序时,会弹出一个窗口几毫秒,然后自动关闭。
现在可以肯定的是,这是由于Windows或Windows Store文件损坏造成的。当您更新Windows时,某些应用程序无法正确处理更新,因此面临此问题。因此,不要浪费任何时间,让我们看看如何使用下面列出的故障排除指南在Windows 10问题中实际(Windows 10)修复应用程序(Fix Apps)是灰色的。
修复应用(Fix Apps)在Windows 10中灰显(Windows 10)
确保 创建一个还原点(create a restore point) 以防万一出现问题。
方法一:重置 Windows 应用商店缓存(Method 1: Reset Windows Store Cache)
1. 按Windows Key + R然后输入“ wsreset.exe ”并回车。
2.运行上述命令,这将重置您的Windows 应用商店(Windows Store)缓存。
3.完成后重新启动您的 PC 以保存更改。
方法二:更新显卡驱动(Method 2: Update Graphic Card Drivers)
1.首先,你应该知道你有什么图形硬件,即你有什么Nvidia显卡,如果你不知道也不要担心,因为它很容易找到。
2.按Windows Key + R并在对话框中键入“dxdiag”并回车。
3.然后搜索显示选项卡(将有两个显示选项卡,一个用于集成显卡,另一个是Nvidia的)单击显示选项卡并找到您的显卡。
4.现在进入Nvidia驱动下载网站(download website),输入我们刚刚找到的产品详细信息。
5.输入信息后搜索您的驱动程序,点击同意(Agree)并下载驱动程序。
6.下载成功后,安装驱动,你就成功手动更新了你的Nvidia驱动。(Nvidia)此安装需要一些时间,但之后您将成功更新驱动程序。
方法 3:确保 Windows 是最新的(Method 3: Make sure Windows is up to date)
1.按Windows Key + I 然后选择 更新和安全。(Update & Security.)
2.下一步,单击 检查更新(Check for updates) 并确保安装任何待处理的更新。
3.安装更新后重新启动您的 PC 以 修复应用程序在 Windows 10 中显示为灰色。(Fix Apps are greyed out in Windows 10.)
方法四:下载并运行微软官方开始菜单疑难解答(Method 4: Download and Run Microsoft Official Start Menu Troubleshooter)
1.下载并运行 开始菜单疑难解答。(Start Menu Troubleshooter.)
2.双击下载的文件,然后单击下一步(Next)。
3.让它找到并自动修复开始菜单(Start Menu)的问题。
4.转到他的链接并下载(his link and download) Windows 应用商店应用程序疑难解答。(Windows Store Apps Troubleshooter.)
5.双击下载文件运行疑难解答(Troubleshooter)。
6.确保点击高级(Advanced)并勾选“自动应用修复”。(Apply repair automatically.)“
7.除了上面还尝试运行这个疑难解答。( Troubleshooter.)
方法5:重新注册Windows Store(Method 5: Re-register Windows Store)
1.在 Windows 搜索中键入Powershell,然后右键单击Windows PowerShell并选择以管理员身份运行。(Run)
2.现在在Powershell中输入以下内容并回车:
Get-AppXPackage | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
3.让上述过程完成,然后重新启动您的电脑。
4.现在再次运行wsreset.exe来重置 Windows Store 缓存。
这应该修复应用程序在 Windows 10 中显示为灰色, (Fix Apps are greyed out in Windows 10 )但如果您仍然遇到相同的错误,请继续使用下一个方法。
方法6:手动重新安装一些应用程序(Method 6: Manually Reinstall Some Apps)
1.在Windows(Windows)搜索中键入 powershell,然后右键单击Windows PowerShell并选择以管理员身份运行。
2.在PowerShell(PowerShell)中键入以下命令并按Enter:
Get-AppxPackage -AllUsers > C:\apps.txt
3.现在导航到您的 C: 驱动器并打开apps.txt 文件。(apps.txt file.)
4.从列表中找到您要重新安装的应用程序,例如,假设它是照片应用程序。(Photo app.)
5.现在使用包全名卸载应用:
删除-AppxPackage Microsoft.Windows.Photos_2017.18062.13720.0_x64__8wekyb3d8bbwe(Remove-AppxPackage Microsoft.Windows.Photos_2017.18062.13720.0_x64__8wekyb3d8bbwe)
6.接下来,重新安装应用程序,但这次使用应用程序名称而不是包名称:
Get-AppxPackage -allusers *photos* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}
7.这将重新安装所需的应用程序,并根据需要对尽可能多的应用程序重复这些步骤。
这肯定会 修复应用程序在 Windows 10 中显示为灰色的问题。( Fix Apps are greyed out issue in Windows 10.)
方法 7:如果您无法访问 powershell,请使用命令提示符(Method 7: If you can’t access powershell use Command Prompt)
1.要重新注册所有Windows Store应用程序,在 cmd 中键入以下命令:
PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”
2.键入以下内容以生成应用程序列表:
PowerShell Get-AppxPackage -AllUsers > C:\apps.txt
3.要删除特定应用程序,请使用完整的包名:
PowerShell Remove-AppxPackage Microsoft.Windows.Photos_2017.18062.13720.0_x64__8wekyb3d8bbwe
4.现在为了再次安装它们,请使用以下命令:
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage Microsoft.Windows.Photos).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
注意:(Note:) 确保(Make)在上述命令中使用应用程序名称而不是包名称。(Apps)
5.这将重新安装Windows Store中的特定应用程序。
为你推荐:(Recommended for you:)
- 修复显示驱动程序停止响应并已恢复错误(Fix Display driver stopped responding and has recovered error)
- 如何修复隐藏属性选项灰显(How to Fix Hidden Attribute option greyed out)
- 修复视频调度程序内部错误(Fix Video Scheduler Internal Error)
- 修复 Windows 时间服务不自动启动(Fix Windows Time service doesn’t start automatically)
就是这样,您已成功修复应用程序在 Windows 10 中显示为灰色,(Fix Apps are greyed out in Windows 10)但如果您对这篇文章仍有任何疑问,请随时在评论部分提出。
Related posts
Windows 10出现模糊的Fix Apps
如何在Windows 10 Blurry Apps到Fix Scaling
Fix Show Most在Windows 10中使用Apps Setting Is Greyed Out
Windows 10中的Fix Black Desktop Background
Fix Computer Wo在Windows 10中没有转到Sleep Mode
Fix Rotation Lock在Windows 10中灰色
Fix Microsoft Edge不在Windows 10工作
Windows 10上的Fix Printer Spooler Errors
Fix Keyboard未在Windows 10中键入
Windows 10中Legends Black Screen的Fix League
Fix 5GHz WiFi在Windows 10中没有出现
Windows 10上的Fix Cursor Blinking Issue
Fix No Internet Connection更新到Windows 10创建者更新后
Fix Wacom Tablet Driver Windows 10中Fix Wacom Tablet Driver号Found
Windows 10中的Fix Microsoft Compatibility Telemetry High Disk Usage
Fix Function键无效Windows 10
Fix Computer Sound Too Low在Windows 10上
Fix Media Disconnected Error在Windows 10上
Fix Alt+Tab不在Windows 10工作
Windows 10中的Fix Task Host Window Prevents Shut Down