新版WIN11 24H2的开始菜单程序中含有一个“Windows 备份”的应用图标,实际在国内无法使用。由于此UWP应用属于Windows Feature Experience Pack(Windows 功能体验包)其中的一个功能,直接删除此功能包会有后遗症,安全的做法是直接安装系统时不让系统生成此快捷方式。
注意:此方法仅适合会修改wim文件的朋友操作,直接在已经安装好的目标系统操作失效。
提取wim文件中的对应C:\Windows\SystemApps\MicrosoftWindows.Client.CBS_cw5n1h2txyewy目录下的appxmanifest.xml文件。
删除“Windows 备份”应用图标为搜索“Windowsbackup”,看到第一个“Windowsbackup”后,在它的第二段的结尾添加代码AppListEntry="none"
示例:
<uap:VisualElements DisplayName="ms-resource:WindowsBackup/Resources/WindowsBackupHostName" Description="ms-resource:WindowsBackup/Resources/WindowsBackupDescription" Square150x150Logo="WindowsBackup\Assets\MedTile.png" Square44x44Logo="WindowsBackup\Assets\AppList.png" BackgroundColor="transparent">
修改为:
<uap:VisualElements DisplayName="ms-resource:WindowsBackup/Resources/WindowsBackupHostName" Description="ms-resource:WindowsBackup/Resources/WindowsBackupDescription" Square150x150Logo="WindowsBackup\Assets\MedTile.png" Square44x44Logo="WindowsBackup\Assets\AppList.png" BackgroundColor="transparent" AppListEntry="none">
删除“入门”应用图标为搜索“WebExperienceHost”,看到第一个“WebExperienceHost”后,在它的第二段的结尾添加代码AppListEntry="none"
示例:
<uap:VisualElements DisplayName="ms-resource:WebExperienceHostAppName/Text" Square150x150Logo="Assets\GetStartedMedTile.png" Square44x44Logo="Assets\GetStartedAppList.png" Description="ms-resource:WebExperienceHostDescription" BackgroundColor="transparent">
修改为:
<uap:VisualElements DisplayName="ms-resource:WebExperienceHostAppName/Text" Square150x150Logo="Assets\GetStartedMedTile.png" Square44x44Logo="Assets\GetStartedAppList.png" Description="ms-resource:WebExperienceHostDescription" BackgroundColor="transparent" AppListEntry="none">
修改完保存后,替换即可。
防止系统验证可删除AppxBlockMap.xml