viernes, 18 de diciembre de 2015

CLEAN SYSTEM, HAPPY SYSTEM

How often do you empty your computer's Recycle Bin?. . .  Once every month?! 

Ok, let's talk about Hard Drive Disk space. 

The HDD (Hard Drive Disk) it's a enclosed environment and the data inside couldn't escape easily. You may need either crash, cleanup, delete or send out the data within.Since HDD is enclosed, garbage tends to accumulate and accumulate and accumulate and accumulate and so on... So, eventually you'll receive a "Low Disk Space" notification. 

Despiting the fact the "Low Disk Space" notification could be related with a bag application or program configuration, or even related to malware, is most likely related to a "bad user habits". 

What does "bad user habits" means? Easy, never empty the Recycle Bin, never run a Disk Cleanup, never delete old Downloaded Files, never remove unused Desktop Shortcuts or very old not used Programs. 

Now, guess what? We, the IT Experts of nowitsolutions.blogspot.com, have created a few easy-to-use tools to clean up all that garbage files with s few clicks. 

Our application is super practical, quick, clean and 100% harmless.  And Free to use!

I will leave the tools info below, and remember, any questions or consults do not hesitate, feel free to ask into the comment or send us an email to softwaredev@alltechsolutions.info.


RULES OF USE: 

It is free and you cannot modify any of the elements of the program.
If you have any suggestions, feel free to email the nowitsolutions.blogspot.com Developers team to softwaredev@alltechsolutions.info.

FOR EVERYONE
Click to Download, extract and double click the application file named "Cleaner.exe".
Keep it and use it as much as you need.


FOR ADVANCED USERS
Put this into a .bat file and run it as admin.
@echo off
cd/.
pushd C:\$Recycle.Bin\
attrib -R -H C:\$Recycle.Bin\*.* /S
rd /S /Q C:\$Recycle.Bin\
popd
attrib +S +H +a C:\$Recycle.Bin\*.* /S
cls

cd/.
pushd %temp%
attrib -S -R -H %temp%\*.* /S
rd /S /Q %temp%\
popd
cls


cd/.
pushd C:\Windows\Temp\
attrib -S -R C:\Windows\Temp\*.* /S
rd /S /Q C:\Windows\Temp\
popd
attrib +S +a C:\Windows\Temp\ /S
cls

cd/.
pushd C:\Windows\Prefetch\
attrib -S -R -H C:\Windows\Prefetch\*.* /S
rd /S /Q C:\Windows\Prefetch\
popd
attrib +S +a C:\Windows\Prefetch\ /S
cls
exit
exit