通过 GPO 从 Windows 自定义开始菜单不起作用

通过 GPO 从 Windows 自定义开始菜单不起作用

我正在尝试通过 GPO 实现新的“开始菜单布局”,但无论我做什么,它都不适用。

这是该布局的 XML:

<?xml version="1.0" encoding="utf-8"?>
<LayoutModificationTemplate
    xmlns="http://schemas.microsoft.com/Start/2014/LayoutModification"
    xmlns:defaultlayout="http://schemas.microsoft.com/Start/2014/FullDefaultLayout"
    xmlns:start="http://schemas.microsoft.com/Start/2014/StartLayout"
    xmlns:taskbar="http://schemas.microsoft.com/Start/2014/TaskbarLayout"
    Version="1">
  <LayoutOptions StartTileGroupCellWidth="6" StartTileGroupsColumnCount="1" />
  <DefaultLayoutOverride LayoutCustomizationRestrictionType="OnlySpecifiedGroups">
    <StartLayoutCollection>
      <defaultlayout:StartLayout GroupCellWidth="6" />
    </StartLayoutCollection>
  </DefaultLayoutOverride>l

我这里有:

在此处输入图片描述

从 GPO(服务器端)的角度来看,我已经设置了这个(甚至从本地目录):

在此处输入图片描述

从 GPO(客户端):

在此处输入图片描述

并链接到一个组,我有一个用户来测试这个 GPO,但是当我在完全更新的 Windows 10 Pro 上使用该用户登录时仍然没有任何变化。

我已经重启过这台机器好几次了。

有谁知道我在这里遗漏了什么?

答案1

所以我完全忘记用以下方式关闭该 XML:</LayoutModificationTemplate> 添加后,它终于生效了。

答案2

您似乎想要删除“开始”菜单中显示的所有图块,但是,您的 XML 文件指定了部分布局(= Windows 将添加到现有图块中的一组图块):[...]LayoutCustomizationRestrictionType="OnlySpecifiedGroups"[...]

如果要更改现有磁贴,则应部署完整的“开始”布局。我建议阅读此处的文档:https://docs.microsoft.com/en-us/windows/configuration/customize-and-export-start-layout并在测试计算机上自定义开始布局,然后按照Export-StartLayout文档中所示将其导出。

相关内容