Home > Article > System Tutorial > What should I do if deleted files appear again after refreshing in win10? Detailed explanation of deleted files in win10 appear again after refreshing.
Reoccurring after deleting files in Windows 10? Do you get annoyed when you delete a file in Windows 10 but it keeps reappearing? Don't worry, PHP editor Youzi has a solution for you. This article will provide you with two simple methods to permanently delete files through the command line or the This PC tab. Read on for detailed instructions and steps for these methods.
Detailed explanation appears again after win10 deletes file refresh
Solution 1:
Press Win key R key to open the "Run" window, enter the following command and press Enter key to execute: ie4uinit -show.
Solution 2:
You can try resetting the folder. We open "This PC", click the View tab, and then click "Options" to open "Folder Options".
In the folder options interface, we click on the "View" option, click the "Reset Folder" button, and select "Yes". If applying to the folder is clickable, click one.
Solution three:
Rebuilding the icon cache can solve the problem. Copy the following code to text, save it in bat format and double-click to run it.
em Close the Windows shell explorer
taskkill /f /im explorer.exe
rem Clean the system icon cache database
attrib -h -s - r “%userprofile%AppDataLocalIconCache.db”
del /f “%userprofile%AppDataLocalIconCache.db”
attrib /s /d -h -s -r “%userprofile%AppDataLocalMicrosoftWindowsExplorer*”
del /f “%userprofile%AppDataLocalMicrosoftWindowsExplorer humbcache_32.db”
del /f “%userprofile%AppDataLocalMicrosoftWindowsExplorer humbcache_96.db”
del /f “%userprofile%AppDataLocalMicrosoftWindowsExplorer humbcache_102.db”
del /f “%userprofile%AppDataLocalMicrosoftWindowsExplorer humbcache_256.db”
del /f “%userprofile%AppDataLocalMicrosoftWindowsExplorer humbcache_1024.db”
del /f “ %userprofile%AppDataLocalMicrosoftWindowsExplorer humbcache_idx.db”
del /f “%userprofile%AppDataLocalMicrosoftWindowsExplorer humbcache_sr.db”
rem icon to clear system tray memory
echo y|reg delete "HKEY_CLASSES_ROOTLocal SettingsSoftwareMicrosoftWindowsCurrentVersionTrayNotify" /v IconStreams
echo y|reg delete "HKEY_CLASSES_ROOTLocal SettingsSoftwareMicrosoftWindowsCurrentVersionTrayNotify" /v PastIconsStream
rem Restart Windows shell explorer
start explorer
The above is the detailed content of What should I do if deleted files appear again after refreshing in win10? Detailed explanation of deleted files in win10 appear again after refreshing.. For more information, please follow other related articles on the PHP Chinese website!