How to migrate user profile data from 1 PC to another using PowerShell.
Note the 2nd script path is so any existing account on the target PC is not overwritten, be sure to update the username and path of the script.
1. Enable PowerShell (1:55)
2. Run PowerShell (2:29)
3. Run profile copy to external drive script (2:36)
4. Data comparison (3:00)
5. Target PC Enable PowerShell (5:04)
6. Target PC Run PowerShell (5:36)
7. Run profile copy to local drive script (5:42)
8. Login to account to be restored (6:54)
9. Select and copy files to profile (7:43)
10. Profile migration complete (8:00)
11. Remove redundant profile data (8:25)
Information Links:
.net download (official):
https://dotnet.microsoft.com/download...
Microsoft PowerShell Resource (official):
https://docs.microsoft.com/en-us/powe...
Source PC Template PowerShell Script (Manual):
Copy-Item C:\Users\admin -Destination E:\ -Recurse
Target PC Template PowerShell Script (Manual):
Copy-Item E:\admin -Destination C:\admin -Recurse
Source PC Template PowerShell Script (Automated):
https://os5.mycloud.com/action/share/...
Target PC Template PowerShell Script (Automated):
https://os5.mycloud.com/action/share/...