Summary: Generally, a goto in a for is a mess. Beyond that, I thik you are trying to find out which files exist in both; right? =============================...
Summary: I'm looking for help with the DATE function in batch files and saw your postings on http://www.computing.net/programming/wwwboard/forum/2249.html %DAT...
Summary: The inverted commas are quite crucial, if you want to write the terms in full, rather than as 123456~1. So I created a batch file with "C:\Program Fil...
Summary: I get files often that have a crc checksum in the file name but no premade sfv to check it with. So I run the file through quicksfv and open the sfv f...
Summary: Hi Razor, Thanks for your help, and I have tried with your suggestion. In your suggestion it will always go to ERROR_SP2Install no matter what the err...
Summary: Hi, I want to write a code in batch file. It is like if else statement. There are two variables. Writing in usual language Say Complete=244,Fail=0 if ...
Summary: Im making a batch file im going to put in the all ussers start folder to log what time each user logs on to my laptop. Ive got it so i can log time an...
Summary: Hi Guru (male/female): Need help with script files (vbs/bat) to be run on XP. Want to compare the first 'X' characters of the file name with the rest ...
Summary: I have a batch file which displays a list of databases and allows the user to choose the one that they wish to start by typing in the name of the data...
Summary: you could use net send to send the message. to do that you'd simply do: net send computerx hello i'm sending you a message. where computerx would be t...
Summary: Hi all, I have a string containing a complete path of a file in my BATCH file . I would like to extract only the path leaving the file name and previo...
Summary: Under DOS Prompt in W98 you can rename to a 4 char ext. You could write a custom program to extract and re-construct the file names. I would write a 2...
Summary: Hi I am rookie ot batch. I have a requirememnt where, I have to read from a text file which looks like this a,test.txt s,Files.txt a,ForCommand.txt a ...
Summary: It is VERY difficult to compare for "more recent" using cmd.exe. On the other hand, it is very EASY to compare the file times to see if the are the sa...
Summary: I made a script to compared the crc in a file name to the actual crc of a file. There is a txt file with a file name then the files crc on each line. ...
Summary: Hi, I am new to batch script and need help. I have below a2.csv file: HDR20090619a2 aaa,111,222,333,bbb bbb,222,111,444,ccc ccc,333,444,111,ddd TRL000...
Summary: I have a batch file that keeps running every 5 minutes. I would like some of the processing in the batch file to not happen if the current time is bet...
Summary: I need to figure out a method to find and replace text within a text file. I have a file named, "myfile.txt" that has the following; testing=1 databas...
Summary: Hello all, Any one know how to get the following to work in a win98 batch file? md e:\BackUpTemp%date% It works okay under winXP Peter Judd ...
Summary: Hi, I need to find the latest JRE from my system and assign it to JAVA_HOME in my batch file. I know the directory where the JRE files are located and...
Summary: Hi These subroutines may be useful for calculating date issues in Batch File coding. The sub-rountines use variables a-f so best to not to use them in...
Summary: Hi, I have a batch file that runs a command with parameters. The batch file contains just one line - EG: program.exe -uUsername -pPassword -cConnectio...
Summary: Under Windows 2000 and NT/XP you can use the Date content to timestamp your files while renaming so: @Echo Off Ren %1 %~n1-%Date:~-4,4%%Date:~-10,2%%D...