UserProfiles 이동 후 Win+X 메뉴 활성화

UserProfiles 이동 후 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)로 성공적으로 이동되었습니다. 이 sysprep 후에는 C:\Users 폴더가 더 이상 사용되지 않으며 모든 프로필이 D:\Users로 이동되었습니다.

그러나 새로운 상황에서는 Win+X를 누르거나 Windows 시작 버튼을 마우스 오른쪽 버튼으로 클릭해도 아무 작업도 수행되지 않습니다. 이것이 관련되어 있으며 Win+X 또는 시작 버튼 상황에 맞는 메뉴를 어떻게 다시 활성화합니까?

답변1

실제로 C:\Users\juusername\AppData를 모두 이동할 수는 없습니다.

거기에 있는 일부 데이터는 쉽게 이동할 수 없으며, 이동하면 일부 내용이 손상될 수 있습니다.

이 점을 고려하셨나요? 그렇기 때문에 일부 작업이 작동하지 않는 것일 수도 있습니다.

이동으로 인해 사용자 프로필 오류가 발생할 수 있습니다.

일반적으로 sysprep 이전에는 사용자 프로필을 설정하지 않을 것이며, 여기에 오류가 있다고 생각합니다.

관련 정보