移行の構成ファイルで設定を編集して、移行を制御できます。

リモート プロファイル パスにある 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 プロファイルに移行します。

My DocumentsDesktopStart Menu プロファイル フォルダに含まれるファイルのみが移行されます。ユーザーのレジストリ キーが移行されます。

<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>