Tagged Questions
2
votes
1answer
36 views
Evaluating the First Character of a User Defined Variable is Uppercase
I have a template document that I want to convert to another file with a user defined name. The following is the code I have pieced together.
rem @echo off
setlocal enableDelayedExpansion
cls
...
1
vote
4answers
78 views
how to add space in for /f “tokens=*”
this is my myfile.txt I want to add space in second column as see the sample
ARK,LAR SNE,QNE,898,ILO,SNE,SNE,LAR,LAR,545
AUS,MNY P08,TTL,7776,STO,STL,STL,MNY,MNY,567
BOS,MTZ ...
-1
votes
2answers
70 views
Batch For loop array
Okay so here is what I have.
@echo off
setLocal EnableDelayedExpansion
:begin
set /a M=0
set /a number=0
set /p Input=You:
echo %Input% >> UIS
for /F "tokens=1 delims= " %%i in ("%Input%") do ...
0
votes
1answer
62 views
Copy a file present in multiple folders under same name to different destination folder
Here is my folder structure of folder A
A\Temp\folder1\c\one.txt
A\Temp\folder2\c\one.txt
A\Temp\folder3\c\one.txt
and another folder B
B\folder1.ext\c\ Note: the extension is part of its folder ...
0
votes
1answer
40 views
for loop don't increment set i=0
i have a problem with my little cmd script.
set i=1
set tmp=0
for /F "tokens=*" %%A in (test.txt) do (
set /A i+=1
echo %i%=%%A
)
echo %i%
My question is why the line in loop echo %i%=%%A give ...
0
votes
1answer
23 views
Schedule using “at” CMD in LOOP
I want to defrag disks remotely. I tried this short script:
for /f "delims=" %%s in (servers.txt) do (
at \\%%s 20:00 defrag.exe c: -f
)
@pause
Normally others command work e.g. ping %%s. ...
0
votes
1answer
57 views
Batch Help - Remove String Between Parentheses in Folder Name
Trying to produce a batch file to look at a directory (G:Videos) and rename the sub folders by removing anything between parentheses (and including the parentheses themselves).
Example:
G:Videos
...
-2
votes
1answer
60 views
for loop skip= not working correctly when its value is a variable
I am trying to skip lines in order to grab var5 in the second line below this findstr command:
'findstr /x /v /c:"Ship sunk" "C:\Users\P Ditty\Documents\SH3\data\cfg\Backups_SCR2\!FileName5!.clg" ...
0
votes
2answers
60 views
Spurious spaces in output of for loop
I'm trying to use a batch file to convert a file containing sql code into a single environment variable for use with the MSSQL utility bcp.
For example, if InFile.sql contains
-- This is a simple ...
0
votes
1answer
169 views
Batch - Adding Users to Multiple Groups Through For Loop
In my last question I discussed how I was working on a new mass user creation script and am now at approximately 95 lines. I received a solution to that question and tried to implement that into a ...
0
votes
1answer
92 views
windows %PATH% variable - how to split on ';' in CMD shell again
I just checked stackoverflow that seemed to be very helpful and worked fine on Windows XP. But using Windows 7 it does not work for some obscure reason.
The PATH variable looks like this
C:\Program ...
1
vote
2answers
93 views
CMD For /f loop dropping first char on second (*) token
Any ideas on why the below type'd batch file's for /f loop would be not displaying the first character of the second token (*) on Windows XP (only)?
NOTE: set "test=%%a" is to solve the issue with ...
0
votes
1answer
79 views
Checking for <cr> in if statement in Windows Command Prompt
As per my corrected answer to another question it seems that Windows XP doesn't strip <cr>'s from for /f output.
How can I test for the existance of <cr>'s in the output?
What I ...
2
votes
1answer
78 views
cmd for loop escape ? in set?
Is there a way to escape the question mark in the for loop so that the following would work?
for %%a in (%*) do (
for %%b in (/? /h /help -h -help --help) do if %%a==%%b goto usage
)
It would be so ...
0
votes
1answer
57 views
Batch Scripting: Forloop and output each itteration
What i wanna do is run tracert 10 times against the same target and extract the results.
the usual command is that i type
tracert www.google.se > output.txt
but when i try the script below i ...
2
votes
1answer
227 views
Extract RegExp string from binary in windows batch
a little problem keeps bugging me for couple of days. I'm trying to extract a string I can define with regexp from a *.exe binary, text like "1.01.01.00T123" into a environment variable for further ...
0
votes
1answer
70 views
forfiles with exec() and spaces in the path
I'm trying to recursively delete only sql files in a directory using forfiles in exec().
This is what I have:
$dir = date('D jS, M Y \a\t H-i a') ;
exec('forfiles /p "E:\Database Dump\\'.$dir.'\" ...
2
votes
2answers
77 views
Batch Files, For Loop Not Echoing Line
I have a problem here.
First things first, the code:
Contents of test.bat:
@echo off
cls
for /F "delims=" %%a in ('dir /B /A-D ^| findstr /I ".txt$"') do (
set str=%%a
echo %str% >> list.tmp
...
2
votes
0answers
125 views
Script to remove multiple registry keys for graphics adapter
The goal is to create a batch file which will remove registry entries for multiple versions of a graphics card driver. It should search the HKLM\System\CurrentControlSet\Control\Video registry key and ...
1
vote
2answers
101 views
running command in a for statement gives me diferent results to the command run on its own?
I'm trying to use a bacth file to find a particular section on a .cfg file, and use that as a variable.
Specifically, I'm trying to read Idapi32.cfg (Borland configuration file), to find the path to ...
0
votes
2answers
62 views
How to do this %x:~0,1% in %%x (for) batch-file
my %%x are
a=23
b=56
c=89
in a .txt called hi.txt
for %%x in (hi.txt) do (echo %%x:~0,1 %%x)
but it failed....
thank you
i want to echo "the first character" in each line, but i cant use ...
1
vote
1answer
174 views
Is it possible to use TWO spaces as a single Delimiter in CMD?
I don't think this is possible, but I'd like to be able to do this, or possibly use an alternative method...
I have a batch file;
for /f "usebackq tokens=*" %%a in (`wmic process get description, ...
1
vote
1answer
94 views
Only one comand executes in for-loop in bat file
I try to write a bat-script that will copy all the files from source directory to destination. Also there must be a few seconds delay between each iteration
for %%i in (%source%) do (
copy "%%i" ...
2
votes
1answer
67 views
Filename is appended more than once
I am using a batch file to append multiple file names.
For files: 1.txt, 2.txt, 3.txt, 4.txt, 5.txt - I am wanting to append with copy_1.txt
set "nname=copy_"
for %%A in (*.txt) do (
ren %%A ...
0
votes
3answers
176 views
how to use the for /f command when the file has a space
I'm new to cmd, having trouble with this:
md "C:\kysumicomp"
for /f "usebackq" %%a in (`CALL DIR /b /s "C:\Program Files" ^| FIND "javac.exe"`) do
copy "%%a" "C:\kysumicomp"
pause
What I am ...
3
votes
2answers
336 views
Multiple conditions in For loop batch?
I'd like to print each line of 2 separate txt files alternately using a for loop in a batch file, I tried using an AND but was given: "AND was unexpected at this time" in cmd.exe when I ran my batch. ...
1
vote
1answer
376 views
Concatenate File name, remove leading and trailing whitespaces from strings in Batch?
I'm trying to concatenate file name (fileName) behind a directory path (C:\ExecutionSDKTest_10.2.2\Logs) and before a file extension(.log) in batch, but I think because my fileName contains leading ...
2
votes
3answers
2k views
How to iterate string in cmd for loop?
I am trying to iterate a string in batch script:
set var="1 2 3"
for /F %%i in (%var%) do (
echo %%i
)
and getting this output:
C:\>batch.bat
C:\>set var="1 2 3"
C:\>for /F %i in ...
0
votes
4answers
164 views
parsing line with quotes in CMD
How to fix this error?
@echo off
Setlocal EnableDelayedExpansion
REM LINES FOR TEST:
REM <td><span><span>41</span><span style="display: ...
3
votes
1answer
107 views
Parsing html file
I want to parse html file and to find numbers in certain part of html. It is the goal of this script to get one number per a token. This script must find the number belonging to correct IP address.
...
1
vote
3answers
133 views
For statement don't works in batch file
for %%i in (foo bar) do @move %%i dir
This is the content of the batch file. It have to move the file to dir. But it returns error,
C:\>for %i in (foo bar) do @move %i dir
'for' is not ...
0
votes
1answer
106 views
how to deal with possible special characters when iterating files with for command in windows *.cmd file?
the code is:
setlocal EnableDelayedExpansion
FOR /f "usebackq tokens=*" %%X in (`dir /a-d /s /b "!search_path!" 2^>^&1`) DO @(
set file_path=%%X
rem do other stuff
)
Delayed expansion is ...
0
votes
1answer
298 views
Batch for loop, maybe I'm missing something
I know I can do this with Powershell but, well, more as a project to practice my Command Prompt Scripting skills, wanna do it with a batch file. I have a txt file with ComputerNames, I want my loop ...
0
votes
1answer
466 views
Batch: read file names from file, search them, add found path to file
I'm trying to write script which will read 1st values from csv file (i.e. 1st column from each row), contains filename.
Then search this file in some location, and add every found path to csv, as a ...
0
votes
1answer
374 views
How to add tabs to string in batch
I have this code, where I want to test "counting". Counting does not work.
Code:
set "Myvar=Hello"
set #=%MyVar%
set strlen=0
:loop
if defined # (set #=%#:~1%&set /A strlen += 1&goto loop)
...
2
votes
2answers
1k views
Breaking out of FOR in batch
My current line of batch code is:
for /L %%a in (8000,1,8100) do netstat /a /n | find "%%a" | find "LISTENING" || set tmp_freeport=%%a && goto found
The idea is to find a free port that ...
0
votes
1answer
375 views
Combining two FOR commands (/f /l) in a batch file
Okay guys, I am fairly new to working with batch files and I have two files I have previously created which are both working independantly.
I am looking to combine them but I still do not fully ...
1
vote
2answers
797 views
Command Line FOR /F Fails
I have a DOS build script which works on one Windows Server 2008 R2 but not another. To see the symptoms on the broken machine entering either of the following at the command line:
for /f %X in ...
0
votes
2answers
241 views
BAT-file: FOR %%x variable incorrect expansion
I have bat-script with following code:
FOR /F "tokens=1,2 delims==" %%g in ("%CFGFILE%") do (
SET firstChar=%%g
SET firstChar=!firstChar:~1,1!
if /I "!firstChar!"=="#" (
echo ...
0
votes
2answers
116 views
Inconsistent Behavior In A Batch File's For Statement
I've done very little with batch files but I'm trying to track down a strange bug I've been encountering on a legacy system.
I have a number of .exe files in particular folder. This script is ...
4
votes
2answers
2k views
How to handle closing parenthesis in path names in a for loop?
I have a long path name to a program I must run in a for /f loop, which includes a closing parenthesis ")", and from which I need to parse the output:
for /f "tokens=1" %%G in ('"C:\Documents and ...
1
vote
2answers
853 views
Change a Variable in a For Loop in a Batch file
So I am trying to set multiple variables with a For Loop in a Batch file. I know I need to use EnableDelayedExpansion but I have tested out several different methods and so far nothing seems to work. ...
1
vote
1answer
605 views
Executing .bat file in FOR loop
Edit: Brief Summary
I have number files in a directory, called crash0, crash1 etc. I want to run a .bat file for each of this with a command line like:
abc.bat crash0 > crash0.txt
How can I ...
0
votes
2answers
389 views
how to make pipe in for cycle in second section?
My question is how to make this work?
FOR /F %pam IN ('echo show databases; ^| mysql -ubackup -h33.33.33.33 -pmysecrethaha') DO (mysqldump --add-drop-database -C --lock-all-tables -pmysecrethaha ...
0
votes
1answer
171 views
Wildcard with cmd files help
I am currently using this statement:
for /d %%X in (C:\Users*) do (del %%X\Desktop\deleteme.txt )
Although I would like to use the "%%X" in to parts of this statement
e.g.
del ...
2
votes
2answers
6k views
Batch file - loop ping - output to file hosts that are up
I would like to make a .bat file that will do a for loop like below:
@echo off
FOR /L %%G IN (1, 1, 69) DO (
ping -n 1 192.168.%%G.3
ping -n 1 192.168.%%G.4
)
Then look through the output ...
-1
votes
2answers
156 views
Bat To ini converter
Basicly what i want to do is rename the batch file to .ini instead of .bat and put 1= for the first line and 2= before the second and so on and so on.
my batch file:
@echo off
color F0
...
1
vote
4answers
564 views
Print a table in cmd in java
I have the following matrix
1 2 3 4 5 6
2 3 4 5 6 1
3 4 5 6 1 2
4 5 6 1 2 3
5 6 1 2 3 4
6 1 2 3 4 5
...and I want to have it in a table
| 1 2 3 4 5 6
---------------
1| 1 2 3 4 5 6
2| 2 3 4 ...
1
vote
1answer
885 views
Reading empty values in “for” command in a windows batch file
I have a question with the "for" batch command in windows.
I have a file called keys.txt which contains this line..
key,value,x86,windows7
I want to parse this line and store the 4 comma ...
0
votes
2answers
1k views
Spurious 'system\cmd.exe' in FOR /F loops
This is one of those requirements that seem to get more complicated, every time I find a Windows/cmd shell hack that need a 'work around'. Essentially ... I need to iterate through a specific list of ...



