Hi Andre Bunting,
The .V6 extension on your roaming profile folders is the standard naming convention used by modern operating systems like Windows 10, Windows 11, and Windows Server 2025 to differentiate profile versions. The zero-byte size and access denial you are experiencing occur because Windows automatically applies strict NTFS permissions to newly generated roaming profiles, granting Full Control exclusively to the target user and the Local System account. Since your administrator account is not on the Access Control List, Windows Explorer is blocked from reading the directory contents to calculate the actual storage size. You can verify which profiles are actively registered to the system by checking the HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList registry key.
To allow administrator access for future profiles, you must enable the Group Policy located at Computer Configuration, Administrative Templates, System, and User Profiles by turning on the setting to add the Administrators security group to roaming user profiles. For your existing folders like Ameilia.V6, you must carefully modify the permissions without permanently stripping the user of folder ownership. Taking ownership away from the user without properly restoring it can cause the User Profile Service to generate an Event ID 1521 access denied error during their next logon attempt. A safer approach to viewing the size and structure of existing folders is to execute a command line utility like dir or icacls.exe using a tool that runs under the Local System context, as that account inherently holds the required access rights.
Your enterprise backup software successfully processes these restricted directories because it does not rely on standard user-level NTFS permissions. Backup agents typically run directly as the Local System account or leverage the Windows Volume Shadow Copy Service combined with the SeBackupPrivilege user right. This architecture grants the software the ability to read the raw file data at the volume level, bypassing the standard Windows Explorer access checks entirely and ensuring user profiles are safely archived even when administrators cannot manually browse them.
Hope this answer brought you some useful information. If it did, please hit "accept answer". Should you have any questions, feel free to leave a comment.
VP