Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Batch File - For
Name: shahramsh Date: June 16, 2006 at 13:00:00 Pacific OS: win xp pro CPU/Ram: P4/1G Product: asus
Comment:
This is to show the processes other than the ones in the list
FOR /F %%a in ('tasklist /NH') do call :show %%a :show set o=n FOR %%b in (%progl%) do if "%1"=="%%b" set o=y if "%o%" == "n" if "%1" NEQ "" echo %1 ==================
Summary: Wow, I leave for a few days, and no one posts this? The lot of you are slipping. Slipping, I say! Well, if all you're going for is a warning message, it could be something like this batch file: @for %...
Summary: Hello, I want to run a batch file every couple of hours, that will take the input from a text file and put it into a field in a command I want to run. This is the command I want to run in the batch fi...
Summary: Hi, I need to run a particular se of commands repetatively for some number of times provided by userin for loop. I am doing it this way user input the no of arguments and arguments i.e 3 d:\\input.txt...