Windows 10: AppData/Local/Temp getting filled up with many copies of same folder

Discus and support AppData/Local/Temp getting filled up with many copies of same folder in Windows 10 Support to solve the problem; I have a PC with a 250GB SSD on C: and a 1TB HD on D: For some reason, there is a single folder full of .dll files that keeps being copied into... Discussion in 'Windows 10 Support' started by slapdashuser, Apr 16, 2016.

  1. AppData/Local/Temp getting filled up with many copies of same folder


    I have a PC with a 250GB SSD on C: and a 1TB HD on D:

    For some reason, there is a single folder full of .dll files that keeps being copied into C:\Users\[username]\AppData\Local\Temp. Each folder is a hexadecimal name like 6CD07CB3-1546-419F-BDE1-C603C89D104C. Each folder contains exactly the same files, 144 .dll files from api-ms-win-base-util-l1-1-0.dll to Wow64Provider.dll. Each folder is 8.48 MB. Approximately one of these new folders is created every minute on the SSD. Many GB of folders are created every day, and I have to use CCleaner every few days to delete everything. There are times that the copying of folders will suspend for hours at at time, but it always starts back up again.

    I have scanned my hard drive numerous times and with many tools, including Windows Defender, Avast, MalwareBytes, and MalwareBytes Anti-Rootkit, and nothing has been found. I reinstalled Windows 10 completely in early March, and the problem did not go away. Extensive Googling for this problem has found nothing that resembles what I am seeing.

    The only thing that I can think of that is even vaguely abnormal on my system is that I have a MouseJiggler and I use PrivateInternetAccess VPN. Otherwise everything is very straightforward.

    Thanks in advance for your help.

    :)
     
    slapdashuser, Apr 16, 2016
    #1
  2. RA59 Win User

    Why so many copies of DismHost.exe running

    Indeed. As well as filling up my hard disk with over 100,000 files in \Users\myname\appdata\local\temp.
     
  3. C drive keeps filling up with temporary system files....since windows 10 creative update...

    The folder that is filling up is c:\users\användaren\appdata\local\temp and from looking closer the file thats taking up all the space and keeps getting bigger is c:\users\användaren\appdata\local\temp\aria-debug-12768.log
    AppData/Local/Temp getting filled up with many copies of same folder [​IMG]

    AppData/Local/Temp getting filled up with many copies of same folder [​IMG]
     
    JoelTufvesson, Apr 16, 2016
    #3
  4. dalchina New Member

    AppData/Local/Temp getting filled up with many copies of same folder

    Hi, I'd suggest trying to reach a point where this is NOT happening, and work back from there to diagnose the cause.

    1. Check it doesn't happen in Safe Mode for reference
    2. Try a clean boot
    Clean Boot - Perform in Windows 10 to Troubleshoot Software Conflicts - Windows 10 Forums

    Noted this is where those files are on mine:

    AppData/Local/Temp getting filled up with many copies of same folder [​IMG]

    AppData/Local/Temp getting filled up with many copies of same folder [​IMG]


    If that reveals nothing, then
    Sysinternals Procmon will allow you to trace all activity on your PC with extremely detailed filtering of the report.
    Thus you may be able to identify what is copying or writing those files. May.
     
    dalchina, Apr 18, 2016
    #4
  5. AndreyT Win User
    I see the same thing on two of my Windows 10 x64 Pro machines, but not on others. Never considered this an issue, since this is the Temp folder anyway. I just delete everything in this folder from time to time.
     
    AndreyT, Apr 19, 2016
    #5
  6. Hydranix Win User
    Those are just folders created by generic API calls in programs that are running in the background.'

    They're not malicious (typically) and are not unusual at all. They're just for storing temporary data, in this case, libraries for your apps.

    That's what the temp folder is for, so it's working as intended.


    Now, if you're worried about your SSD (you probably shouldn't be, modern SSD can withstand several terabytes of writes before they show any sign of degradation), you can do as I do, and move the temp directory to RAM. It makes the system faster and has no drawbacks provided you have enough memory to spare.

    Plus, if you do it the way I do, only the memory currently being used by the data stored on temp is actually allocated. Further, the memory is released when no longer needed. Something uncommon for most RAM disk software.

    Plus your temp directory is cleared when you reboot, so that's one less thing to think about when you do your system maintenance.

    To move temp to a RAM disk, install this open source virtual filesystem driver. ImDisk
    It's a very fast download and install. No ads, or spyware bundles that you find in other RAMDisks tools.
    Plus it's so trustworthy and stable that ASUS distributes it rebranded under it's ROG namebrand, included in the box with their top shelf motherboards.

    Now to make setting up temp directory, I'd advise to use this open source tool, as it handles all of the configuration for you.
    ImDisk ToolKit

    Default settings are fine to install with.

    Open startmenu, and there should be a "recently added" entry for "RamDisk Configuration"

    If not, just search the startmenu for Ramdisk Config, and open it.

    I like to set the size to 1/4th of my system memory. So you might want to try the same.

    I preferdrive letter to be "T" for temp, the choice is yours to make.

    Check "Allocate Memory Dynamically" (important)

    File system should be NTFS, not anything else.

    Both boxes checked (important)

    Then click "Set TEMP variables" and then click "Set All To:"

    Hit ok, then close the dialog that pops up, and close the RamDisk Config utility.


    Now for an extra bit of transparency, some (badly coded) programs ignore the TEMP variable and use %USERPROFILE%\AppData\Local\Temp anyway.

    To fix that, we can use a symlink! But first you'll need to reboot to close any open handles preventing you from modifying the old temp dir.

    Copy and paste this into a bat file so you don't have to take the time to open this thread to continue after a reboot, just run the bat file as admin and you're set!

    Code: @ECHO OFF TITLE by rem This next bit checks if running as admin NET SESSION IF NOT %ERRORLEVEL% == 0 ( COLOR 0C CLS ECHO Script must be ran as admin! PAUSE EXIT ) CLS :MENU ECHO. ECHO The old temp directory still exists, ECHO and likely still has old data in it. ECHO. ECHO The symlink will need to replace this ECHO directory. ECHO. ECHO What do you want to do with the old temp? ECHO ================ ECHO. ECHO 1) Rename it to temp_old. ECHO 2) Delete it and everything in it forever. ECHO 3) Merge contents of old temp to new ECHO. ECHO 0) Exit, and do not create the symlink. ECHO. SET /P OPT=Enter option: IF "%OPT%"=="1" GOTO O_RENAME IF "%OPT%"=="2" GOTO O_DELETE IF "%OPT%"=="3" GOTO O_MERGE IF "%OPT%"=="0" EXIT CLS ECHO. ECHO Invalid option... ECHO. GOTO MENU: :O_RENAME PUSHD "%USERPROFILE%\AppData\Local" RENAME "%USERPROFILE%\AppData\Local\temp" "temp_old" GOTO O_SYMLINK :O_DELETE PUSHD "%USERPROFILE%\AppData\Local" RD /S /Q "%USERPROFILE%\AppData\Local\temp" GOTO O_SYMLINK :O_MERGE PUSHD "%USERPROFILE%\AppData\Local" ROBOCOPY "%USERPROFILE%\AppData\Local\temp\*" "%TEMP%\" /E /MOVE /COPYALL GOTO O_DELETE :O_SYMLINK MKLINK /D "%USERPROFILE%\AppData\Local\temp" "%TEMP%" ECHO. ECHO Done.. PAUSE EXIT[/quote]
     
    Hydranix, Apr 19, 2016
    #6
  7. Kari Win User
    To start with, those dll files are normal Windows system files and will normally be found in Temp folder. However, in your case if they are created every minute and such a many GBs, the solution is not to move Temp to a RAM disk; instead you need to find out what is causing this.

    Here some screenshots from my PC which I turned on about 70 minutes ago, just after 6 AM my time. In first 70 minutes of usage, only the highlighted temp files have been created:

    AppData/Local/Temp getting filled up with many copies of same folder [​IMG]


    In my case I have not emptied the Temp folder in over two weeks (since my last clean install), and have 120 of those DLL files in Temp, total size under 8 MB:

    AppData/Local/Temp getting filled up with many copies of same folder [​IMG]


    All those found in my Temp folder are from the day Windows 10 was installed:

    AppData/Local/Temp getting filled up with many copies of same folder [​IMG]


    I do not know what is causing your issue, the files being created every minute. However, I strongly recommend that you do not use the RAM disk workaround before we have found the culprit. Let's hope other geeks with more knowledge about the issue will jump in with ideas.
     
  8. AppData/Local/Temp getting filled up with many copies of same folder

    Thank you so much for all your responses. I agree that using the RAM disk workaround is not an appropriate solution.

    Kari, the 144 files that are in each of my Temp folders contain all of what you showed above and more.


    AppData/Local/Temp getting filled up with many copies of same folder [​IMG]


    It does seem like these are all normal files from Windows 10 install. I have been away from my computer for the last three days, leaving it on, and a new copy of all of these .dll files was created still, once every minute, give or take. (Sometimes two per minute, sometimes once every two minutes.) I just deleted over 32GB of temporary files just from the last three days.

    I'm going to try the clean boot, and the booting into safe mode, and see what happens.
     
    slapdashuser, Apr 20, 2016
    #8
  9. BTW, the date of the files is always the same: 10/30/2015 2:28 AM. But the date of the Temp folder itself is always the date that the folder was created.
     
    slapdashuser, Apr 20, 2016
    #9
  10. Very interesting additional piece of information. This seems to only happen when the computer is locked, not in use. When it's unlocked, when I'm using it, the folders don't get copied. Why would that be?
     
    slapdashuser, Apr 20, 2016
    #10
  11. MEK
    mek Win User
    Would love to find out if anyone has been able to resolved the issue. I'm experiencing basically the exact same issue as OP.

    Left my work computer on over the weekend, came back to find ~24GB of these files. In my case there's also one of these folders created basically ever minute.

    Super grateful if anyone's able to help!
     
  12. chris0123 Win User
    *Bump* Same problem. Just took 10 hours to delete 240GB of this stuff from my computer.
    Someone must have an idea or how to diagnose this.
     
    chris0123, Jun 12, 2016
    #12
  13. AppData/Local/Temp getting filled up with many copies of same folder

    I daily clean out temp files, both with CCleaner and manually. At random times my Win10 Home system randomly inserts insane megabytes of Win10 dll's into the folder [C:\Users\<me>\AppData\Local\Temp], and fails to clear them on reboot.

    There is no plausible way that this kind of insane replication of executable code serves any useful purpose, especially given its randomness. So, it's either a very dumb Microsoft caching strategy gone bad, or some kind of outright error, or malware. I'm trying to figure out the pattern for it.

    Does anyone out there already know the specific process that is going insane?
     
    terrybollinger, Aug 30, 2016
    #13
  14. dalchina New Member
    You need to find out either by specific analysis (e.g. sysinternals procmon (free) - a more technically demanding route- and identify from its captured log what specifically is creating those files, or by elimination (see my previous post).

    Don't necessarily expect someone to say 'it's this, and this is what you have to do to stop it' - you'll need to do some analysis.

    So there are two possible routes:
    a. analytical using procmon.
    b. by elimination, in the hope of reaching a situation where it doesn't happen and working back.
     
    dalchina, Aug 30, 2016
    #14
  15. McDoof Win User
    It is a permissions problem on a cleanup task usually from the windows 10 upgrade. Here is how to stop it.


    Run Task scheduler

    expand "Task Scheduler Library", then Microsoft, then Windows, then find and click on "Disk Cleanup". Look for "Silent Cleanup Task" on the top pane, you will see that it has failed in the "Last Run" comments. Disable the task and your problem will go away
     
    McDoof, Oct 31, 2016
    #15
Thema:

AppData/Local/Temp getting filled up with many copies of same folder

Loading...
  1. AppData/Local/Temp getting filled up with many copies of same folder - Similar Threads - AppData Local Temp

  2. Local Temp folder filling up with huge mservice.txt files

    in Windows 10 Gaming
    Local Temp folder filling up with huge mservice.txt files: Hello,I'm using Windows 11. My Local temp folder for my user C:\Users\profile\AppData\Local\Temp is filling up with these huge text files 35-45 GB each that are a date format followed by mservice.txt. There is one for each day for about the past week, for example the one for...
  3. Local Temp folder filling up with huge mservice.txt files

    in Windows 10 Software and Apps
    Local Temp folder filling up with huge mservice.txt files: Hello,I'm using Windows 11. My Local temp folder for my user C:\Users\profile\AppData\Local\Temp is filling up with these huge text files 35-45 GB each that are a date format followed by mservice.txt. There is one for each day for about the past week, for example the one for...
  4. NLTmpMnt01 Folder in %appdata%\local\temp folder

    in Windows 10 Software and Apps
    NLTmpMnt01 Folder in %appdata%\local\temp folder: Hello,So i was browsing in my temp folder and found this Folder: Picture is in belowWhen i enter this folder, it feels like in its Main C: Drive Contains:"PerfLogs, Program Files, Program Files x86, Users, Windows" Folders.This also cant delete though.but My question is, What...
  5. NLTmpMnt01 Folder in %appdata%\local\temp folder

    in Windows 10 Network and Sharing
    NLTmpMnt01 Folder in %appdata%\local\temp folder: Hello,So i was browsing in my temp folder and found this Folder: Picture is in belowWhen i enter this folder, it feels like in its Main C: Drive Contains:"PerfLogs, Program Files, Program Files x86, Users, Windows" Folders.This also cant delete though.but My question is, What...
  6. NLTmpMnt01 Folder in %appdata%\local\temp folder

    in Windows 10 Gaming
    NLTmpMnt01 Folder in %appdata%\local\temp folder: Hello,So i was browsing in my temp folder and found this Folder: Picture is in belowWhen i enter this folder, it feels like in its Main C: Drive Contains:"PerfLogs, Program Files, Program Files x86, Users, Windows" Folders.This also cant delete though.but My question is, What...
  7. AppData Temp folder filling up 326.6GB every night, help!

    in Windows 10 Ask Insider
    AppData Temp folder filling up 326.6GB every night, help!: Screenshot of problem - https://imgur.com/a/TOd5b7K For the last two weeks or so, every night, my appdata temp folder gets larger and larger. Overnight, a file will be created that is like 360GB (yes, GB). Its an nonsense file name like "CJAIJ23-SDFDSF-GHHVCWE-WER" just much...
  8. High capacity and fast fill of AppData\Local\Temp\jnjl32fl folder

    in Windows 10 BSOD Crashes and Debugging
    High capacity and fast fill of AppData\Local\Temp\jnjl32fl folder: Hi, Recently i wound out that "USER\AppData\Local\Temp\jnjl32fl" folder get big pretty fast, and can reach 1GB data after 2 days. The folder contain Temp data of different microsoft application, especially, but not only, visual studio data. Please note that as I do...
  9. Missing file in appdata local temp folder

    in Windows 10 Network and Sharing
    Missing file in appdata local temp folder: Hi, I keep getting pop error telling me that I'm missing a file in the local temp folder called JzQy.vbs. this started after I restarted my hp laptop. Everytime i delete this popup it just re-appears. Is there something I can do to fix this.[IMG]...
  10. Windows Temp folder filling up with same sized files

    in Windows 10 Network and Sharing
    Windows Temp folder filling up with same sized files: seems like 1 file per second.... [ATTACH] https://answers.microsoft.com/en-us/windows/forum/all/windows-temp-folder-filling-up-with-same-sized/fd697516-5a7c-4d06-9041-2ae5bb0207f5

Users found this page by searching for:

  1. www.windowsphoneinfo.com

    ,
  2. C:\Users\BPRICH~1\AppData\Local\Temp\PRODUCT_NAME_UNKNOWN_CrashDumpPRODUCT_VERSION_MAJOR_UNKNOWN-PRODUCT_VERSION_MINOR_UNKNOWN-2019-03-20--19-30-28_.dmp