Search

0 Programming

I enjoy writing various programs.

First of all I started writing my programs through batch files.
It was quite interesting.
Here are some of the batch programming, I did in my initial phase. You too can start writing batch programming from here.

Batch processing is execution of a series of programs ("jobs") on a computer without manual intervention.

If you wanna write your batch files, then simply you need to open notepad.
Run>notepad
Then for every different batch files different codes are there....
Some of the codes are mentioned by me in this blog

  • To clear your recent files
@echo off
cd\
title Recent cleaner
cd %userprofile%
del /a /f /q /s recent\*.*
msg *. Your recent files are deleted.
exit

Note:- After writing the above code you need to save with an extension of .bat
Also note that this files are working in Xp, 2000 and previous version of windows

No comments:

Post a Comment

Guys your comment are very important to me....
Please pass your comments so that I can understand better and reply to you.