마이그레이션 구성 파일의 설정을 편집하여 마이그레이션을 제어할 수 있습니다.
원격 프로파일 경로에서 V2 프로파일 마이그레이션
다음 예제 파일은 \\file02\share\profiles 폴더 아래에 있는 모든 원격 V2 프로파일을 동일한 위치의 V5 프로파일로 변환합니다.
마이그레이션된 V5 프로파일은 V2 프로파일과 동일한 사용자 이름을 사용합니다. V5 확장자가 사용자의 루트 폴더에 추가됩니다. Local Settings를 제외한 모든 폴더가 마이그레이션됩니다. 사용자 레지스트리 키가 마이그레이션됩니다.
<migconfig version = "0.2"> <!-- specify the source V2 profiles to be migrated --> <source> <!-- specify the location of user profiles to be migrated --> <profilepath>\\file02\share\profiles\*.v2</profilepath> <!-- specify a V2-to-V5 profile migration --> <migv2tov5>true</migv2tov5> </source> <!-- specify the target destination of converted V5 profiles --> <target> <profilepath>\\file02\share\profiles</profilepath> </target> </migconfig>
원격 프로파일 경로에서 V1 프로파일 마이그레이션
다음 예제 파일은 \\file01\profiles 폴더 아래에 있는 모든 원격 V1 프로파일을 동일한 위치의 V2 프로파일로 변환합니다.
마이그레이션된 V2 프로파일은 V1 프로파일과 동일한 사용자 이름을 사용합니다. .V2 확장자가 사용자의 루트 폴더에 추가됩니다. Local Settings를 제외한 모든 폴더가 마이그레이션됩니다. 사용자 레지스트리 키가 마이그레이션됩니다.
<migconfig version = "0.2"> <!-- specify the source V1 profiles to be migrated --> <source> <!-- specify the location of user profiles to be migrated --> <profilepath>\\file01\profiles\*</profilepath> </source> <!-- specify the target destination of converted V2 profiles --> <target> <profilepath>\\file01\profiles</profilepath> </target> </migconfig>
사용자의 로컬 V1 프로파일에서 마이그레이션
다음 예제 파일은 ts115사용자에 대한 로컬 V1 프로파일을 변환합니다. 이 유틸리티는 devvm-winxp 시스템의 로컬 프로파일을 \\file01\profiles 폴더 아래의 원격 V2 프로파일로 마이그레이션합니다.
내 문서, 데스크톱 및 시작 메뉴 프로파일 폴더의 파일만 마이그레이션됩니다. 사용자의 레지스트리 키가 마이그레이션됩니다.
<migconfig version = "0.2"> <!-- specify the source V1 profiles to be migrated --> <source> <!-- specify the location of user profiles to be migrated --> <profilepath>\\devvm-winxp\c$\documents and settings\ts115</profilepath> </source> <!-- specify the target destination of converted V2 profiles --> <target> <profilepath>\\file01\profiles</profilepath> </target> <!-- specify other profile migration settings --> <migration> <!-- migration settings for profile folders and files --> <profile> <!-- by default, all top-level profile folders are included --> <!-- except 'Cache', 'History', and 'Local AppData' --> <includefolders>Personal, Desktop, Start Menu</includefolders> </profile> </migration> </migconfig>