-
Notifications
You must be signed in to change notification settings - Fork 0
/
CleanScript.bat
63 lines (59 loc) · 2.19 KB
/
CleanScript.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
@echo off
color a
title cleaner.sh [AlmightyNan]
:: Administrator privileges checker
:-------------------------------------
REM --> Check for permissions
IF "%PROCESSOR_ARCHITECTURE%" EQU "amd64" (
>nul 2>&1 "%SYSTEMROOT%\SysWOW64\cacls.exe" "%SYSTEMROOT%\SysWOW64\config\system"
) ELSE (
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
)
if '%errorlevel%' NEQ '0' (
echo [ LOADING ] Requesting administrator permissions ...
goto UACPrompt
) else ( goto gotAdmin )
:UACPrompt
echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
set params= %*
echo UAC.ShellExecute "cmd.exe", "/c ""%~s0"" %params:"=""%", "", "runas", 1 >> "%temp%\getadmin.vbs"
"%temp%\getadmin.vbs"
del "%temp%\getadmin.vbs"
exit /B
:gotAdmin
pushd "%CD%"
CD /D "%~dp0"
:--------------------------------------
:: Remove temporary files for known Temp folders
echo [ INFO] Cleaning temporary files ...
echo [ INFO ] Script will automatically close when process is complete.
del /s /f /q c:\windows\temp\*.* 2>nul >nul
del /s /f /q C:\WINDOWS\Prefetch 2>nul >nul
del /s /f /q %temp%\*.* 2>nul >nul
rd /s /q c:\windows\tempor~1 2>nul >nul
rd /s /q c:\windows\temp 2>nul >nul
rd /s /q c:\windows\tmp 2>nul >nul
rd /s /q c:\windows\ff*.tmp 2>nul >nul
rd /s /q c:\windows\history 2>nul >nul
rd /s /q c:\windows\cookies 2>nul >nul
rd /s /q c:\windows\recent 2>nul >nul
rd /s /q c:\windows\spool\printers 2>nul >nul
del /s /f /q %windir%\temp*.* 2>nul >nul
rd /s /q %windir%\temp 2>nul >nul
md %windir%\temp 2>nul >nul
del /s /f /q %windir%\Prefetch*.* 2>nul >nul
rd /s /q %windir%\Prefetch 2>nul >nul
md %windir%\Prefetch 2>nul >nul
del c:\WIN386.SWP 2>nul >nul
rd /s /q %temp% 2>nul >nul
del /s /f /q %temp%\*.* 2>nul >nul
:: DLLCache cleaning
del /s /f /q %windir%\system32\dllcache*.* 2>nul >nul
rd /s /q %windir%\system32\dllcache 2>nul >nul
md %windir%\system32\dllcache 2>nul >nul
del /s /f /q “%SystemDrive%\Temp”*.* 2>nul >nul
rd /s /q “%SystemDrive%\Temp” 2>nul >nul
md “%SystemDrive%\Temp” 2>nul >nul
del /s /f /q %temp%*.* 2>nul >nul
rd /s /q %temp% 2>nul >nul
md %temp% 2>nul >nul