[태그:] users folder

  • Windows 11 사용자 폴더 D 드라이브로 변경

    1. Windows 11 설치 / 재 설치 / 초기화
    2. 국가 / 언어 선택 창에서 Audit 모드 진입
      • Ctrl + Shift + F3
      • 자동으로 재 부팅 됨
    3. Sysprep 창 종료
    4. 사용자 폴더가 위치할 드라이브 문자 확인
      • Win + R
      • diskmgmt.msc
    5. 응답 파일(D:\unattend.xml) 생성
      • processorArchitecture
        • 64bit : amd64
        • 32bit : x86
        • ARM : arm64
    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
        <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>
    </unattend>
    1. 관리자 권한으로 명령 프롬프트 실행
    2. 응답 파일 적용
      • net stop WMPNetworkSvc
        • Windows Media Player Network Sharing Service 중지
      • %windir%\system32\sysprep\sysprep.exe /oobe /reboot /unattend:D:\unattend.xml
      • 자동으로 재 부팅 됨
    3. 설치 후 C:\Users 에 대한 링크 작성
      • C:\Users 삭제
      • 관리자 권한으로 명령 프롬프트 실행
        • mklink /J C:\Users D:\Users

    원글 : Windows에서 사용자 폴더의 위치를 변경하는 방법 – 단편글 – EvaNOTE