Pages

Friday, January 13, 2012

Hide a folder

Follow the following techniques to hide a folder:
 
         1. Suppose we want to hide the folder “ABC”, which is situated at Drive C:\  
         2.Go to Command Prompt (Start --> Run --> cmd).
         3. Type attrib +s +h C:\ABC and press Enter.
         4. It will hide your folder. 
         5. To make it visible again you must go to command prompt and type attrib –s –h C:\ABC and press Enter.

Sunday, January 8, 2012

Delete the Temporary file of Windows 7 Automatically

1. Open Notepad
2. Copy paste the code given below

cd C:\Users\%username%\AppData\Local
rmdir /S /Q Temp

3. Save that as sq.bat
4.Double click on it to delete all the temporary files.

To do it automatically,
1. Go to Start Menu ---> All Programs ---> Startup ---> Right Click on it ---> Click Explore
2. Paste the sq.bat file there.

By doing this, it will always delete the temporary files at the start of the windows.