Summary: What is the language of coding given? What software to run it? It is the first time i use dos. It's an xp batch file. Just a simple text file with eit...
Summary: i think all you would need to do is change the following line: for /f "tokens=* delims= " %%a in ('ipconfig /all') do ( to: for /f "tokens=* delims= "...
Summary: @echo off setlocal enabledelayedexpansion set /a ct=0 for /f "tokens=* delims-" %%a in ('dir file*.txt /a:-d /o:d') do ( set /a ct+=1 set new=%%a :"4"...
Summary: I'm building a program which will contain a short movie. I've built a simple media player that can read files by path (by a great article I've found)....
Summary: I am new to C programming. I have recently started to compile a few small basic programs and they seem to be working ok but when i go to run them, th...
Summary: I have been updating an old batch (2005) that uses various applications from sysinternals. My current problem deals with capturing the default mess...
Summary: Well to help you further you will need to tell me a little bit about what you are doing and what problem you are trying to solve. I tried the code ins...
Summary: Hi I am trying to retrieve 2 seperate lines from multiple text files in a directory and post the result to a single file but am having trouble concati...
Summary: I am trying to rename files in a batch. But I want to use special characters in the file name like these ==> ♥♦♣♠ ascii code 3,4,5 and 6 Is t...
Summary: Hi, Hopefully someone can help, I have a text file where some of the lines have a tab within them which is forcing the data on to a new row. Is there ...
Summary: I have two text files. The first has data like: 000328 001708 001761 011772 014963 The second one, a very large file, has data on each line like: "SMR...
Summary: n(o)brane wants to know: why doesn't this work? setlocal enabledelayedexpansion for /d %%A in (friggit.txt) do ( set dontwork=%~zA echo %%A echo dontw...
Summary: Private Sub Form_KeyPress(a As Integer) Debug.Print "keypress: "; a; " "; Chr(a);" ";str(a) 'basically just put whatever code for processing keys int...
Summary: Hello! I know that USB storage devices have a serial ID that identifies the device. Is there any similar serial id for CDs or DVDs? If so - Is there a...
Summary: GNU find looks easier to me. By the way, I usually rename GNU find to gfind.exe to prevent confusion with Windows find.exe. Also, M2's "512000" should...
Summary: Hello! I'm making some program (not in java - in PHP if it matters but its really irrelevant). I need to compile some java files with javac.exe (and l...
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: script file (ftpscript) for ftp (based on test.txt f/e): open myconn.net user me passwd binary cd whatever ls test.txt quit bat: setlocal enabledelay...
Summary: Hello :-)! I'd like to create application for mobile phone (maximum price of phone would be about 220USD, it is for Central Europe; I will be testing ...
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: 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...
Summary: HI, I have about 400 xml files that have error in the productID line: <Product productID="0001"> the 0001 needs to be replace with another value w...
Summary: I want to translate a variable and read the output to another variable echo $my_var | tr '0123456789' 'ZZZZZZZZZZ' works as I'd expect, printing the c...
Summary: Hello! CD (or ChDir) fails in my batch files when used with variables. I want my batch files to use variables to navigate the directory structure rela...