This seems to be an issue on Windows where the problem is that Windows tries to maintain legacy compatibility between Application Data
and AppData
by using junctions. These junction points sometimes get corrupted between Windows 7 and Windows 10. You’ll need to either recreate specific junctions:
EXAMPLE ONLY
mkLink /j “Application Data” C:\users$USER\AppData\Roaming
https://mywindowshub.com/how-to-create-and-delete-a-junction-link-on-windows-10/
Or go hardcode and relink all the junction points through this script:
Hope this helps!