I typed %AppData% into the search box in Windows 7 that I get when when I click the Start Button. For some reason, all I see is the Roaming folder, ever thought I have confirmed that LocalLow and Local folders do exist. Why are LocalLow and Local folders missing from the search box, and how can I fix this problem?

link|improve this question

75% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Local and LocalLow are not actually in %AppData%. As Hand-E-Food said, %AppData% = %UserProfile%\AppData\Roaming.

Use %userprofile%\appdata\locallow and either %userprofile%\appdata\local or %localappdata%.

There is no variable (eg %LocalAppDataLow%) by default that points to the low-privilege local profile, but you could easily create one for yourself (you can also create a localappdata variable in XP; for that matter, you can create all sorts of envvar shortcuts to different parts of your file-system).

link|improve this answer
Not quite, at least not in Windows 7. They're in %UserProfile%\AppData. – Hand-E-Food Feb 6 at 4:51
Oops, typo. Fixed; thanks. (I’m in XP at the moment, so I couldn’t check.) – Synetech Feb 6 at 4:52
Sorry Hand-E-Food, but this one told me how to fix the issue! I would select both answers as best answer if possible! – techaddict Feb 6 at 4:55
I added an extra option that might be easier. – Synetech Feb 6 at 4:58
Wow cool thanks! (RE: create one for yourself) – techaddict Feb 6 at 5:26
show 2 more comments
feedback

Because %AppData% points to:

C:\Users\%Username%\AppData\Roaming

not

C:\Users\%Username%\AppData

From the command line, type Set (variablename) to see what a variable is declared as, or just Set to see all variable declarations.

link|improve this answer
Sorry Hand-E-Food, but the other answer told me how to fix the issue! I would select both answers as best answer if possible! – techaddict Feb 6 at 4:56
No worries, I knew that would be the case. :-) – Hand-E-Food Feb 6 at 5:14
feedback

Your Answer

 
or
required, but never shown

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