Skip to main content

HOW TO MAKE OWN PC CLEANER SOFTWARE USING BAT PROGRAMMING

 ↓↓ SOURCE CODE ↓↓
HOW TO MAKE YOUR OWN PC CLEANER SOFTWARE USING BAT PROGRAMMING IN 10 SECOND
@echo off

echo PC Cleaner ,
Cleaning system junk files, please wait…
REM displays a line of text

del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp
del /f /s /q %systemdrive%\*.log
del /f /s /q %systemdrive%\*.gid
del /f /s /q %systemdrive%\*.chk
del /f /s /q %systemdrive%\*.old
del /f /s /q %systemdrive%\recycled\.
del /f /s /q %windir%\*.bak
del /f /s /q %windir%\prefetch\.
rd /s /q %windir%\temp & md %windir%\temp
del /f /q %userprofile%\cookies\.
del /f /q %userprofile%\recent\.
del /f /s /q “%userprofile%\Local Settings\Temporary Internet Files\.”
del /f /s /q “%userprofile%\Local Settings\Temp\.”
del /f /s /q “%userprofile%\recent\.”

REM /f: force deleting of read-only files
REM /s: Delete specified files from all subdirectories.
REM /q: Quiet mode, do not ask if ok to delete on global wildcard
REM %systemdrive%: drive upon which the system folder was placed
REM %windir%: a regular variable and is defined in the variable store as %SystemRoot%.
REM %userprofile%: variable to find the directory structure owned by the user running the process

echo Cleaning of junk files is finished!
REM displays a line of text

echo. & pause
REM echo.: Displays a single blank line on the screen.
REM pause: This will stop execution of the batch file until someone presses "any key"


Copy The Monotoned Source Code and Paste to Notepad And Save it as "Cleaner.bat"

And run it Whenever you need to clean temp, junk and unwanted files from your Pc

Comments

Popular posts from this blog

WiFi Hacking Command in termux 2021

 ~~ Only for rooted user.   ONLY FOR EDUCATIONAL PURPOSE. $ pkg update && pkg upgrade && install php $ pkg install python && pkg install python2 $ pkg install git && pkg install curl && $ pkg install clang && pkg install wget $ git clone https://github.com/esc0rtd3w/wifi-hacker $ cd wifi-hacker $ ls $ chmod +x wifi-hacker.sh $ sh wifi-hacker.sh > Y $ pkg install tsudo $ tsudo $ pkg install tsu $ tsudo $ cd $ cd wifi-hacker $ sh wifi-hacker.sh > Y ◆NOW SELECT FROM ABOVE ONE OPTION AND HACK WIFI ● 0 PRESS ENTER ● PRESS ENTER ◆ NAME OF WIFI YOU WANT TO HACK [ WHICH PROFILE IS AVAILABE IN YOUR DEVICE ] ● MAC ADDRESS OF VICTIM'S WIFI PROFILE ● CHANNEL NUMBER OF YOUR WIFI HACKING ● NOW SELECT YOUR ATTACK NUMBER

How to Hide Full Zip FILE Within an Image.

No Software or app Needed 🔴 Set up: 1. Must have a .zip or .rar compressor. 2. Willingness to learn. 👀 Steps: 1. Save the picture of choice to your desktop. 2. Make a new .rar or .zip folder on your desktop. 3. Add the files you want to hide into the .zip or .rar 4. Click start menu, run, cmd. 5. In Command Prompt type cd "desktop" with the quotation marks. 6. Now type in copy /b picturename.jpg + foldername.rar outputfilename.jpg ( If you use .zip then: copy /b picturename.jpg + foldername.zip outputfilename.jpg) 7. Now there should be the outputed file name with a .jpg extension on the desktop. ( Do not close Command Prompt just yet ) 8. Double click it to open the picture and check it out. 9. When your done looking, and want to view the hidden files Type: ren outputfilename.jpg outputfilename.rar or zip Now you're done!