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: from looking in this forum, there's a way to change date format in Xp. (possibly even specific to "dir" cmd). if so, the easiest way would be change f...
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: 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: I can't really test it but perhaps your after something like this: @echo off :begin setlocal disabledelayedexpansion set machine= :check set /p machi...
Summary: This is a good example of why it is essential, when asking for support, to show exactly all of the steps involved. In this case, the issue took a long...
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'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: 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, Am tryin to develop a dos based application for displaying time in the taskbar when the window is minimized. The code goes like this. @echo off :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: Thanks! I can add 2 plus 2 now. Can you give some detail on these: _variable %variable %variable% Are they used in another language? Or are they used...
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: ya M2 is right, that's exactly the issue that delayedexpansion addresses: the timing of the variable expansion. be sure to change the percents to exlm...
Summary: Hi I have designed an application which creates an event log of the system. I want the application to startup every time the OS boots up. I need some...
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: 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 have fixed problem with records that contain "flight" elsewhere in the line by using "findstr /b", but I can't replicate the missing delimiter.... T...
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: 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 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: Hey everybody im looking for a vbs script to open a popup message, and when a certain button is clicked it will tell the batch file to do somethin...
Summary: Hi, I have a txt file that contains data in the following format: 1200-1678,,1,C1356 1000-0076,,1,C1357 1000-0051,,1,C1358 1000-6848,,1,C1500 1000-684...
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" ...