您可以藉由編輯移轉組態檔中的設定來控制移轉。
從遠端設定檔路徑移轉 V2 設定檔
下列範例檔案會將所有位於 \\file02\share\profiles 資料夾下的遠端 V2 設定檔轉換為相同位置中的 V5 設定檔。
移轉的 V5 設定檔會使用與 V2 設定檔相同的使用者名稱。使用者的根資料夾會附加 V5 副檔名。本機設定以外的所有資料夾皆會移轉。使用者登錄機碼也會移轉。
<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 副檔名。本機設定以外的所有資料夾皆會移轉。使用者登錄機碼也會移轉。
<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>