Tag

#Cleanup

Cleanup All User Chrome Cache

October 30, 2018

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 =…

Cleanup Windows User Temporary Files

October 30, 2017

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…

Cleanup All Users' Temporary Files

July 10, 2012

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…

Batch Script to Cleanup Temporary Files

June 5, 2007

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…