I seem to have broken my Win7 home directory somewhat.

in my users folder at AppData\Local\ there is a link from 'Application DatatoAppData\Local` which leads to pathalogical paths such as

C:\Users\Scott\AppData\Local\Application Data\Application Data\Application Data\Application Data\Application Data\Application Data

What's the right way to fix this?

link|improve this question

67% accept rate
feedback

1 Answer

This link should be in C:\Users\Scott\ (unless you moved it accidentally). Open Command Prompt and use move to put it to the right place:

cd /d C:\Users\Scott
move "AppData\Local\Application Data" "."

The link is created for compatibility reasons: some broken programs written for Windows XP assume that the appdata directory name will never change.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.