Summary: if your system is running task scheduler (schtasks.exe), I would use "at" command to run your batchfile, and put a 15-minute timer advance into the ba...
Summary: I found a batch script to search all drives and delete the autorun.inf file on this forum I want that method but change it up a bit. I would like to S...
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: I am trying to write a batch file that will iterate through the files in a folder. As soon as it hits the 4th one (and subsequent ones) it will move t...
Summary: Trying to rename multiple existing files to append their create date/time (in military time format) to the filename. Current code: FOR %%V IN (SELT*.E...
Summary: Hi, I want create a batch file to copy some specific(variable) text from a file A.txt to another file B.txt's specific location (in between a line...
Summary: @MayhemMehod gawk is just an executable, much like ping.exe , ftp.exe. You can run it inside your batch file as per normal eg @echo off .... gawk '{g...
Summary: i would start with using WGET to obtain the feed: wget -O rssfeed http://www.bierdopje.com/rss/subs/nl (unless the site name changes all the time) th...
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: @OP, commands like more, type opens files internally and "closes" them as they finished reading them. If you want to reread them, execute the commands...
Summary: I want to put a batch file on all of the computers on my network, but I don't want to do it manually. Is there a way to transfer a file to a computer,...
Summary: I've been working on and off on a little project for my work now for a while now and I think I have finished it now. All I'm asking for is a couple of...
Summary: <warning type="thread-hijack" detail="off-topic rant"> I wish it were possible to run VBScript without having to create a file first. </warning>...
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: I have a large file of text, with exactly 34 characters on each line. I want to run a batch to remove the last 2 characters of each line so that I hav...
Summary: Thanks klint I had tried piping it to NULL with out any luck but once again your hint got it working :-) I was thinking of now building on this scrip...
Summary: ahh crap the program stopped working and i forgot what i did right... ok nbrane I added to code you indicated into the vba code within excel. it indic...
Summary: I need a bat file to run every 5 minutes and copy only the new/modified files. each time the script runs its to place the files in a new folder by dat...
Summary: I need to split "FLIGHT" records in a TXT file starting after 11th position, and identify next record as "ICAO". Sample input Flight§6805(ZBAA - RJAA...