Page 1 of 1

Batch file for school project

Posted: Tue Feb 21, 2012 12:11 pm
by Mister Fox
I am doing a school project in which we have to invent something that benefits a wide variety of people. I am going to make a batch file (and convert it to exe) that makes peoples' computers faster.

I already have the batch file defragmenting the C drive and clearing the prefetch folder (should I get rid of that last part?)

What else should I have it do to increase the performance of a windows computer?

Batch file for school project

Posted: Tue Feb 21, 2012 12:50 pm
by jvierra
Here is teh system cleanup manager. Put it in a batch file or use a shortcut.

%SystemRoot%System32cleanmgr.exe

This will show you all of the things to clean up. Anything else you should be careful of changing.

The prefetch is there to optimize the loading of programs. Deleting it will serverly effect system performance negatively.

Batch file for school project

Posted: Tue Feb 21, 2012 2:02 pm
by jvierra
Good luck.