移动用户配置文件后启用 Win+X 菜单

移动用户配置文件后启用 Win+X 菜单

在我将以下响应文件移动到 C:\Users 目录之后:

<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
    <settings pass="specialize">
        <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <CopyProfile>true</CopyProfile>
            <DoNotCleanTaskBar>true</DoNotCleanTaskBar>
        </component>
    </settings>
    <settings pass="oobeSystem">
        <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <FolderLocations>
                <ProfilesDirectory>D:\Users\</ProfilesDirectory>
            </FolderLocations>
        </component>
    </settings>
    <cpi:offlineImage cpi:source="wim:e:/sources/install.wim#Windows 10 Pro" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend>

这个命令

%windir%\system32\sysprep\sysprep.exe /oobe /reboot /unattend:d:\relocate.xml

我能够在 OOBE 中创建一个新帐户,并且所有现有帐户都已成功移动到 D: 设备 (raid0)。在此系统准备之后,不再使用文件夹 C:\Users,并且所有配置文件都已移动到 D:\Users。

但在新情况下,Win+X 和右键单击 Windows 开始按钮均不起作用。这有关系吗?如何重新激活 Win+X 或开始按钮上下文菜单?

答案1

实际上您无法移动整个 C:\Users\jusername\AppData。

其中有些数据不能轻易移动,移动可能会破坏一些东西。

你考虑到了这一点吗?这也许就是为什么有些事情行不通的原因。

由于移动,您可能会遇到用户配置文件错误。

您通常不会在 sysprep 之前设置用户配置文件,我认为这就是错误所在。

相关内容