Scripts and Command Lines

Delete temp files user profile
 del /q/f/s %TEMP%\*
Fri, 7 Dec, 2018 at 8:22 AM
Delete temp files under windows folder
Del /S /F /Q %Windir%\Temp 
Fri, 7 Dec, 2018 at 8:23 AM
Powershell command delete user temp files
$folders = @("C:\Windows\Temp\*", "C:\Documents and Settings\*\Local Settings\temp\*", "C:\Users\*\Appdata\Local\Temp\*", &quo...
Fri, 7 Dec, 2018 at 8:30 AM
Powershell clear browser cache
# Author: Lee Bhogal, Paradise Computing Ltd - June 2014 Write-Host -ForegroundColor Green "SECTION 1: Getting the list of users" # Write Inf...
Fri, 7 Dec, 2018 at 8:31 AM