Summary: Hi all, I have a HTML file, i want to find the string count "Failed" and "Success" and write the output in the csv file with the column1 as current da...
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: 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: 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 ...
Summary: Hello, I am trying to do something that would seem simple enough here but I can't seem to figure it out. I am trying to make a batch file that will ch...
Summary: Hi I need to delete the first 27 lines of a file then write in a line on top; I have the script which do exactly the same but since the file I need to...
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: 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: HI All, I want to write a batch script which will Unzip all the .Zip files from a folder A(inside the Folder A, there will be more than 1 .Zip files) ...
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: I was trying to see if there is a method to count the number of files in a zip archive with out extracting it. I had a look at winzip's command line i...
Summary: this just goes through the tree, like "dir /s" and lists all files. maybe you can adapt/use it, i'm not sure. i haven't tried it over network drives y...
Summary: hi all, m new to this site and read some others post regarding coping,deleting etc using batch files. I would like to know is it possible to copy mult...
Summary: I have to write a short C++ program that reads from a data txt file which hp vs. rpm will be the data that is in the file. The program then calcul...
Summary: Hey. I need some help with C or C++. I have to import a file.txt with real E notated (like 2.3E-12) numbers in 2 columns in it (coordinates basicly -...
Summary: I am trying to write a program that reads a file and prints each line of the file that contains a given string. Can anyone help me with this? ...
Summary: bscript, might work... you will know what needs to be adapted to your situation. dim fso Path1=".\" Set fso = createobject("Scripting.FileSystemObjec...
Summary: Hi there! I would like to post a question here about batch file and "if else if" support. I have googled and found people suggest using "nested if" ...
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: Hello wrs I can help you get what you want. But i'm afraid it's not a Batch file. I tried doing it in a batch file but failed. But it is possible with...
Summary: Can anyone help me with a batch file that moves files if they are a certain string of names. I have files called repFS1.dat to repFS1000.dat and one ...
Summary: Hi again, I need to append FLIGHT\ at the front of all records that have ( in position 23 in a TXT file. Help for a BAT file would be greatly apprecia...
Summary: Why to code a C++ program when a straightforward batch script suffices? @echo off echo.product,text,price,qty> header.csv type file.csv >> header.csv...
Summary: I see that you are trying to do this with a batch file which is cool, you could use a for loop and modify what is above so that it runs through and do...