No, users cannot directly see or access the files in their older version roaming profile folder once they log into a newer Windows version that generates a different profile version (e.g., .V2 to .V6).
Why?
Profile Separation by Windows:
Each roaming profile version is treated as a distinct entity, meaning Windows does not automatically merge or migrate files/settings between versions.
The user’s new profile is completely fresh, and Windows does not link it to the old one.
NTFS Permissions Restrict Access:
The original roaming profile folder (e.g., \\FileServer\Profiles$\User1.V2) is owned by the user, but only the SYSTEM account and Administrators typically have full access.
If a new User1.V6 profile is created, the user only has permissions on their new profile folder.
The old .V2 folder remains on the file server, but Windows does not grant automatic access to it from the new profile.
Profile Data is Not Mapped in the New Profile:
Even though the older profile data still exists in the file server, it is not mapped into the user's new roaming profile path when they log in to a new OS.
This means the user does not see their old Desktop, Documents, AppData, etc.
How to Give Users Access to Old Profile Data
If you want users to still see their old profile files, here are some options:
Option 1: Manually Copy Data from the Old Profile Folder
Administrators can manually copy the user's Desktop, Documents, and AppData from \\FileServer\Profiles$\User1.V2 to \\FileServer\Profiles$\User1.V6.
Grant temporary read access to \\FileServer\Profiles$\User1.V2 if needed.
Option 2: Use Folder Redirection to Avoid the Problem Entirely
Redirect Desktop, Documents, and Downloads to \\FileServer\RedirectedFolders$\%USERNAME%.
This way, users keep access to their files across profile versions.
Option 3: Let Users Access Their Old Profile Folder Manually
Grant users explicit permissions to their old profile folder (User1.V2) and allow them to copy files themselves.
This can be done via:icacls "\\FileServer\Profiles$\User1.V2" /grant User1:(OI)(CI)F
The user can then navigate to \\FileServer\Profiles$\User1.V2 and retrieve files.
Option 4: Automate Migration with USMT
Use User State Migration Tool (USMT) to extract old profile data and inject it into the new one.
What Happens If the User Logs into an Older OS Again?
If a user logs back into a Windows 7 machine, Windows will continue using User1.V2, and their files/settings will still be there.
However, any changes they made in User1.V6 (Windows 10/11) will not sync back to User1.V2.
Final Recommendations
Best for IT Admins: Copy important files manually or automate with USMT.
Best for End-Users: Grant temporary access to their old profile folder so they can retrieve files.
Best Long-Term Fix: Use Folder Redirection so profile versions don’t break file access.
Would you like a PowerShell script to help automate profile data migration? 🚀
Edited by user
5 days ago
|
Reason: Not specified