FastClean v0.1 final
.: July 5th, 2004 in
Scripts by emcgfx .:.
243 views .:.
0 Comments .:. Tags:
Batch,
Scripts
 |
Description : FastClean is a simple batch script to clean temporary files and recycle bin. |
| License : |
Open Source (GPLv3) |
| Released : |
July 5, 2004 |
| Filesize : |
1.2 KB |
| Type : |
Batch Script |
| OS : |
Windows (any) |
| MD5 : |
2c7a75344ef8e53a12d5ef9417f47db7 |
| Installation : |
1. Copy the file in any location you want, preferably drive C:\ 2. The click on the file to execute. |
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
| echo off
cls
echo.
echo *******************************
echo * (fc) FastClean v0.1 *
echo * Release Date: July 05, 2004 *
echo * Programmed by EMCGFX *
echo *******************************
echo.
pause
echo.
echo Scan and Delete Masks form (C:\)
echo Delete (*.log,*.tmp,*.gid,*.chk,*.old,*.$*,*.~*,*.---,~*.*)
echo.
echo Deleting (*.log) files in Drive [C:\]...
del c:\*.log /s /q
echo.
echo Deleting (*.tmp) files in Drive [C:\]...
del c:\*.tmp /f /s /q
echo.
echo Deleting (*.gid) files in Drive [C:\]...
del c:\*.gid /f /s /q
echo.
echo Deleting (*.chk) files in Drive [C:\]...
del c:\*.chk /f /s /q
echo.
echo Deleting (*.old) files in Drive [C:\]...
del c:\*.old /f /s /q
echo.
echo Deleting (*.$*) files in Drive [C:\]...
del c:\*.$* /f /s /q
echo.
echo Deleting (*.~*) files in Drive [C:\]...
del c:\*.~* /f /s /q
echo.
echo Deleting (*.---) files in Drive [C:\]...
del c:\*.--- /f /s /q
echo.
echo Deleting (~*.*) files in Drive [C:\]...
del c:\~*.* /f /s /q
echo.
echo Destroying Files from Recycle Bin (C:\)
echo.
echo Deleting Drive [C:\] Recycle Bin...
rd c:\RECYCLER /s /q
echo.
echo Done Cleaning Your System! Enjoy you Privacy.
pause
echo. |