Skip to main content

BAT files - Automatically clean Temporary Files

Cleaning up Prefetch/%temp%/temp folder:

Windows saves a file of the program you are using to make it start up faster. After every shutting down of PC Prefetch file is created.Copying,pasting,moving files too make temporary files saved in C:\Windows\temp folder.Sometime it makes your PC working slow,so it should be cleaned up once or twice a week.Temporary files deletes after closing the window.You can notice these info during Disk Clean up.Save both the BAT files either in your documents folder or elsewhere that no one can edit it.


 Open Notepad and type:



Notepad: 1
Save above Notepad file as FASTER.BAT(select 'All Files')













Notepad: 2
Save above Notepad file as "CleanUP_New.BAT"(select 'All Files')


  1. Second last command will ping your connection if you are connected in LAN.
  2. Last one will cleanup all your Internet Explorer browser's internet passwords,history,and reset with default options.If necessary you can keep it or remove and save it.

Comments

Popular posts from this blog

Indian HAL Tejas | Touch The Sky With Glory | ShotOnNikonD3500

Indian HAL Tejas | Touch The Sky With Glory | ShotOnNikonD3500

Git Commands

  Git commands sorted. Reference: https://git-scm.com/docs Git task Notes Git commands Tell Git who you are Configure the author name and email address to be used with your commits. Note that Git strips some characters (for example trailing periods) from user.name . git config --global user.name "Sam Smith" git config --global user.email sam@example.com Create a new local repository   git init Check out a repository Create a working copy of a local repository: git clone /path/to/repository For a remote server, use: git clone username@host:/path/to/repository Add files Add one or more files to staging (index): git add <filename> git add * Commit Commit changes to head (but not yet to the remote repository): git commit -m "Commit message" Commit any files you've added with git add , and also commit any files you've changed since then: git commit -a Push Send changes to the master branch of your remote repository: git push origin master Status List the...

GraphQL vs REST

  GraphQL   GraphQL is an application layer server-side technology which is developed by Facebook for executing queries with existing data. GraphQL can optimize RESTful API calls. It gives a declarative way of fetching and updating your data. GraphQL helps you to load data from server to client. It enables programmers to choose the types of requests they want to make. REST REST is a software architectural style that defines a set of constraints for creating web services. It is designed specifically for working with media components, files, or hardware device. The full form of REST is Representational State Transfer. ========================================================= Here is the important difference between GraphQL and REST. GraphQL REST GraphQL is an application layer server-side technology which is developed by Facebook for executing queries with existing data. REST is a software architectural style that defines a set of constraints for creating Web services. It follow...