Summary: Hello, I have problems writing batch file. I need to read from a file lines in FOR-loop and write them to another file without CR/LR. I have tried to ...
Summary: I want to create a batch file which will automatically copy a file created on the current day by using the system date variable, i.e. "xcopy /d:%date...
Summary: Does anyone know if there is an equivalent command to deltree in win2000. What i need to do is to delete all files and any subfolders from a folder fr...
Summary: Hello, I'm having a problem with a batch file. I am trying to use a variable in a filename so that when run the output will go to a time stamped log ...
Summary: i have this dos command which will automatically scan ips in the given range . FOR /L %i IN (42,1,46) DO ping -a 192.168.1.%i it runs ok from command...
Summary: I am running WIN2000 Professional on a workstation accessing a Novell 4.11 file server. I have a DOS application on the file server that has a batch ...
Summary: How do I accopmlish a short pause(wait 10 sec and then continue) in a Batch File in windows 2000. I know they have eliminated choice. Can anyone help ...
Summary: If anyone knows please post the shutdown command for W2000. I want to write a batch file that executes several operations before shutdown. Thanks. ...
Summary: I need help writing a batch file. Basically I need to know if there is a way to make the file check a specific service and see if it is running, if it...
Summary: I have a number of permon counters defined as HTML files and would like to know if there is an easy way to simply start these counters from a batch fi...
Summary: Hi, I've backed up my .dbx files from win98 since I was upgrading to win2000, I've located where the .dbx files are in win2000. To get my messages sho...
Summary: sure you can script it but by the time you do that with the correct input files you would be faster doing it by hand. If you are set on the batch file...
Summary: Thanks for the info, but that path C:\winnt\sytem32\rep1\import\script. Thats only on pro machines right? Because the path on the server is winnt\sysv...
Summary: I'm writing a small batch file to release and renew the ip address in Win 2K / Win XP. This is what I've written: ipconfig /release sleep 10 ipconfig ...
Summary: Is there anyway to reboot windows 2000 via a batch file? In the old days, you could use the debug command in dos to create a exe (reboot.com) that wo...
Summary: Hi All We are using a batch file for dialup purposes. Is there a way to activite a timer such that it disconnects the connection after an hour? I have...
Summary: Hi, is there anybody who knows how to write a batch file script for iterating a execution file over and over again ? I wrote my program in C. And my c...
Summary: I've noted a few anomalies in the Win2000 Command Prompt. DOS programs that handle long filenames in Win98's Command Prompt window, such as PKZIP v. ...
Summary: Hi guys&dolls, I want to create a batch file that will enable the user who starts the file to give in his/her name. That name must be echoed subsequen...
Summary: Hi, i need to execute batch files to restart SQL server everyday in log off mode. i have written DOS command "AT 00:00 /EVERY: C:\RestartSQL.BAT". it...
Summary: Hello. I'm in the process of creating a batch file. I'm copying files from a network drive. I can get all the files within a folder but I cannot co...
Summary: A batch file is just a group of DOS commands. Figure out how to type the DOS command that does what you want, then open Notepad, type in the command a...
Summary: HELLO GUYS, I NEED HELP WRITING A BATCH FILE THAT WOULD DELETE EVERY THING IN MY TEMP FOLDER ON START UP, I AM USING O/S WIN2000, I HAVE NEVER WRITTEN...
Summary: you can do this one of two ways. either pipe the "y" command to the batch file echo y | del c:\cyr\*.* > nul or use the deltree command with the /y s...
Summary: Cant you just use the Win2k xcopy command, in your batch file? xcopy [local folder\Work] [network share\Work] /E /V /H /R /O /Y That command should co...