Derek wrote:
> I've noticed an ever-growing list of empty folders being created in
> C:\Users\Derek\AppData\Local. They're given numerical names like the
> examples below this line.
>
> {3AF8D36F-3C2F-4066-85FC-9911D5B2E892}
> {7C08B29F-8B99-4448-B618-A7D8F1A67AA0}
>
> Can anyone tell me what's generating them and whether it's safe to
> delete them?
The format of the numbers, is they're GUIDs.
"Globally unique identifier"
http://en.wikipedia.org/wiki/Guid
"The total number of unique keys 3.4 * 10**38.
This number is so large that the probability of the same number
being generated randomly twice is negligible."
You can try running "regedit.exe" from Start, and search
for the strings. Remove the brackets and just copy the GUID
part into the regedit "find" box, and see what turns up.
You could either be swimming in a sea of digits, or perhaps
a product name will be part of the key the GUID is stored in.
(Don't make changes inside Regedit - you're there just to
read and observe.)
That's only if you wanted to trace down what might be using that GUID.
If they're being temporarily generated (to make a random path name),
then they might not exist outside that entry in the file system.
The fact they're in "AppData", suggests a byproduct of installing something.
And an installer, might leave "tracks" in the registry.
Paul