Hello,
To configure the user profiles to be located on drive D during the Windows image creation process using MDT, you can follow these steps:
- Open the MDT Deployment Workbench and navigate to the task sequence that you want to modify.
- Right-click on the task sequence and select "Properties".
- Click on the "Task Sequence" tab and scroll down to the "Custom Tasks" section.
- Click on "Add" and select "New Group".
- Name the group "Move User Profiles to Drive D".
- Click on "Add" again and select "New Task".
- Name the task "Move User Profiles to Drive D".
- In the "Command Line" field, enter the following command:
xcopy /s /e /h /k /o /x %systemdrive%\Users\*.* D:\Users\
- Click "OK" to save the task.
- Click "OK" to save the task sequence properties.
This will copy all user profiles from the default location on drive C to the new location on drive D during the deployment process.
As for upgrading to Windows 11, the process should be similar to upgrading to a new version of Windows 10. You can use the same task sequence in MDT to perform the upgrade, and the user profile configuration should still apply. However, it's always a good idea to test the upgrade process in a lab environment before deploying it to production systems.
Best Regards,
Hania Lian
============================================
If the Answer is helpful, please click "Accept Answer" and upvote it.