Summary: My bad. I start with 3 SELT*.EXT files, create times are 10a, 12p and 2p. At the end of the batch run, I only get one copy of the 10a file and its ...
Summary: i guess FSUM is maybe a checksum generator per file? klint seems familiar with it. anyway, maybe simplify to derive specific objective for now, replac...
Summary: Hi, I'm pretty new to batch program, but I've been asked at work to create a batch that renames one file, then renames another file to the name of the...
Summary: I am trying to write a batch file that will delete the first three characters from every line of a text file with no success. I am a newbie to this, ...
Summary: I'm not sure why it's returning an errorcode of 1. One thing I've just found from testing is that if you have a piped statement: command1 | command2 t...
Summary: Looking to batch rename files. Looking for free renamer that can move part of the file name from one place to another (front to end) 04.03.09 LOS A...
Summary: I'm trying to run a batch file on downloaded csv files from an electricity supplier. When I run the batch on the csv files nothing happens and the onl...
Summary: maybe try using "success"/"fail" as the delimiters? then test for value not null and if not null, increment a counter. something like: set delayed exp...
Summary: About the delimiter, I can use any character that suits your needs. I put them in myself during the extraction. I tried using Æ, with same results, I...
Summary: Hi all, I am trying to build some sort of API made of batch files. Each of them needs to be able to output one or more parameters. These batch files w...
Summary: What I need to do is search one ROOT DIR (FTP) and find all files listed in any DIR with a filter for MODIFIED DATE > 9/1/2008. I thought to use a bat...
Summary: As razor points out, both examples are functionally identical. I think what you may be missing is the idea of "nesting" itself, basically all it means...
Summary: Creating an Encoder cause I'm bored. I have a problem. I ask for the users input to a variable called %Sentence% But what I'm struggling to do is to c...
Summary: Okay test to see if this will work for you. Instead of using the basename, I changed it to split the filename by using the .'s as the delimiter and s...
Summary: Hi Mora, Assume that we execute the batch file in the folder where u have all the zip files. @echo off @echo Extracting the file.. "C:\Program Files\W...
Summary: Hi , I tried to debugg the error and I found that this part if exist "C:\To_BE_Processed\%%a" ( is causing the problem the %%a is holding the filename...
Summary: Hiya I'm trying to create a script to run on a network drive. We want to see extended properties of folder and files on the drive but i'm having som...
Summary: Would it be possible to modify this to search through only one text file and also echo the duplicates? I've tried modifying the script to do this, but...
Summary: I would like to make a batch file that kind find the largest file in a directory and launch it. I have basic batch creation knowledge and I can find t...
Summary: The easiest way I can think to accomplish what you want is to use a VBScript, if you can run a batch file you can run a VBScript. All you have to do ...
Summary: I ran a .bat against a network drive and returned all dir/sub dirs and it listed total counts and sizes for the dir and sub dir in bytes, as well as l...
Summary: To expand on M2's answer: variable is just the word 'variable' (but see below). %variable% gets "expanded" i.e. translated to its value and literally ...
Summary: I'm a complete newb when it comes to batch programming and am struggling to do something that's probably very simple... I have a load of files in a ...
Summary: I am wanting to create a batch file that will open another file every 15 minutes or so. I know of the countdowns, but thats as long as the batch file ...