Cleanup All User Chrome Cache
This script will clean all Chrome cache for all users on a Windows 7 or newer system. # Define the base directory for user profiles$usersPath = "C:\Users"$totalBeforeCleanup =…
This script will clean all Chrome cache for all users on a Windows 7 or newer system. # Define the base directory for user profiles$usersPath = "C:\Users"$totalBeforeCleanup =…
This script will cleanup all users temporary files in their AppData\Local\Temp for Windows 7 and newer. # Define the base directory for user profiles$usersPath = "C:\Users"$totalBeforeCleanup = 0$totalAfterCleanup…
Came across a nice tip when I was researching an unrelated problem today. I discovered that I could use dism to cleanup Vista/7/2008 Service Pack install backup files…
I've had this around for the longest time and figured I better put it here before I lose it forever to the dying Microsoft releases. Note: This also…
This script simply cleans up all users' temporary files and temporary internet files. This works on Windows XP, Windows Server 2003. @echo offsetlocal@for /d %%d in ( "C:\Documents…
I was checking out a server today (2003) and noticed that it was a tad low on disk space on the OS disk. It's a terminal server and…
This script is intended for use on Windows XP / Server 2003. @echo off setlocal @for /d %%d in ( C:\Documents and Settings\* ) do @( echo %%d…