findstr is a Windows/MS-DOS command that searches for patterns of text in one or more files using regular expressions.
1
vote
3answers
33 views
Multiple instances of a RegEx string in FINDSTR
I am looking for a way in a Windows batch file to find if a file contains the word Shutdown a given number of times.
I have tried this using FINDSTR:
FINDSTR /r .*Shutdown.*{5} file.txt
This ...
1
vote
1answer
65 views
Display NETSH Command
I have this NETSH command (below) set to a variable, %connectionname% and i need to use it later to disconnect from the internet, and then again later to reconnect again to the internet.
set ...
0
votes
2answers
28 views
Search for string within filename in subdirectories
I have a large directory of folders (call it C:\Main). I need to set up a batch script to search the subfolders of that directory for a string within the filename (not the text within the file). I'm ...
0
votes
1answer
67 views
Test if a Reg Query is a specific value in a batch script
So without getting to convoluted, the gist of what I am trying to accomplish is that I currently am listing the results from a reg query by display name of programs, assigning a number to it, and then ...
0
votes
1answer
44 views
search and delete common text from two text files using dos
just want to know the simplest solution to these:
how can I delete text in a.txt that are in b.txt using DOS
(a.txt & b.txt contains hundrends of text)
a.text
hfdjfhfjdfd
jjdhfjhkfkkf
...
0
votes
1answer
91 views
DOS findstr to find all the lines with text between quotes
How retrieve all the text between "" among many lines with findstr?
For example i have:
Line1
Line2
Line3
"Line 4
Line 5
Line 6
"
Line 7
Line 8
and i need to return
Line 4
Line 5
Line 6
0
votes
1answer
42 views
findstr confused by colon?
If I run from cmd.exe:
findstr "\"A\" : \"B\"" c:\temp\sample.json
echo %errorlevel%
with the contents of sample.json being
{
"Abad" : "B"
}
errorlevel shows as 0.
If I replace ':' with ...
0
votes
0answers
49 views
findstr | netsh to open port on a nic card
Hello I wanted to find the ports which are enabled on each NIC card.
following is the command which provide me ports which are opend on the server.
netsh.exe firewall show portopening ...
2
votes
2answers
115 views
CMD Findstr with ping
I am writting a batch file that pings a website, for example:
Pinging youtube.com [173.194.70.91] with 32 bytes of data:
Reply from 173.194.70.91: bytes=32 time=187ms TTL=44
Ping statistics for ...
0
votes
1answer
209 views
FINDSTR in Command Prompt
I am trying to generate a file with all of the rows from an input file containing a certain string using the FINDSTR commanand in cmd.exe. My command below does not produce any results, whereas the ...
-2
votes
1answer
118 views
find string and get string in batch script [closed]
#######mytest.txt##########
/media?auth=c2VydmVyX3RpbWU9Mi8xNy8yMDEzIDk6MTY6MzkgQU0maGFzaF92YWx1ZT1hbXZodmFwWkYxMWR6UDNvVlhWdjFBPT0mdmFsaWRtaW51dGVzPTIw'
...
0
votes
1answer
91 views
Returning the surrounding lines to a string windows batch file
I'm using findstr to search for a string in a file in the following manner:
findstr "test" file.txt
This is returning the line where test is found, but I would like to return the 3 lines above and ...
0
votes
2answers
251 views
Windows batch file find string but don't print
I'm new to windows batch scripts but have started using the findstr command e.g.
findstr "test" file.txt
if not errorlevel 1 ( echo Found it!)
The code manages to findtest in file.txt but I don't ...
-1
votes
1answer
207 views
Findstr — exclude a file type — search only ascii [closed]
I want to run a FINDSTR dos command in a way beyond what it is easily found in "findstr /?". How would I run findstr so that it only searches ascii files. (I am not sure if that is possible. My gut ...
0
votes
2answers
218 views
What am I missing with this Findstr command?
What am I missing with this Findstr command?
X:\Admin>findstr /s/i/c:"permission denied" *.*
FINDSTR: // ignored
FINDSTR: // ignored
X:\Admin>findstr -s-i-c:"permission denied" *.*
FINDSTR: /- ...
1
vote
1answer
425 views
batch file to search all .txt files in folder for string then copy 1st instance to output file.txt
I have about 100 plus .txt files with long file names in a folder, and I need to search the files for the 1st instance of the string "4096" and return the whole line from each file and copy it to an ...
0
votes
2answers
453 views
Batch Script - Find if String is missing in a file, show output
I have cluster of 10 folders, each with 1000 program files. I need to search these text files for a MISSING string. All files must start with $O123456.MIN% (123456 being random file names). I know how ...
0
votes
1answer
100 views
Using FindStr + length in batch
In my text file is this line.
08.01.2013 20:06:36: SolsticeFTW (109.189.238.113:60381) 04ee8dfa81f700bba194a528911ecb4a - #0
08.01.2013 20:11:00: SolsticeFTW (109.189.238.113:60381) ...
1
vote
1answer
155 views
how to copy a single instance of a string from one text file into a new text file?
I have a text file with n number of rows. m number of the rows contain a string that I'm interested in (m<=n). I need a batch file that will copy only a single row (e.g. the first occurance) ...
0
votes
1answer
45 views
want to search for astrix in findstr but character is recognised as wildcard instead
Iv got a simple findstr function (windows batch) however im trying to search for the actual astrix character in a text document. Because the * character is also used as a wildcrad function my program ...
0
votes
2answers
168 views
Batch findstr to find a number
I'm trying to get the revision number from a svn update command output. In the file tmpFile.txt I've got the string At revision 58998.
I've run the following command:
findstr /r ...
0
votes
2answers
126 views
batch code to chnage folders name after read text files
Someone great in this site give me this code at batch change folder name by read line from text file
@echo off
pushd "your root location"
for /f "tokens=1* delims=:" %%A in (
'findstr ...
0
votes
0answers
171 views
Commande DOS: findstr to variable with isolated value
I've been trying for several days to isolate a value in a text file and put it in a variable using the findstr function.
Here is the "command line":
findstr /r /c:"#define VERSION_FIRMWARE ...
0
votes
1answer
165 views
Syntax for specific RegEx in command line FINDSTR call
I am writing a batch script that takes in various arguments before starting another process. In the example below I am checking the case where the first argument was 1, and the second argument is in ...
0
votes
1answer
218 views
Findstr, how to read part of string/line
I have file with a list of names and extensions, formatted such as below each on it's own line:
JoeBloggs=102
JohnSmith=109
What I want to do is use findstr but read the number after the ...
0
votes
0answers
176 views
How to replace double quotes using findstr batch file
I am having trouble with a batch file I wrote. I have it working where the user will input certain information and then the input will replace text within a file. However, the issue I am having that I ...
0
votes
2answers
261 views
How to replace double quotes in findstr batch file
I'm not sure what happened to my old account so had to create this new one. I am having trouble with a batch file I wrote. I have it working where the user will input certain information and then the ...
1
vote
1answer
102 views
Find all users, use them as variable to pull appdata directory list from cmd?
I'm trying to build out a script that will pull the list of users, grab each of their names and then do a directory list for each of their appdata folders.
So far I'm thinking that I could just use ...
4
votes
3answers
198 views
how to read a file from line x to line y (dos/win batch file)
I have a series of log files.
I parse these log files with findstr to determine the first instance of a string of text, then return the file name and the line lumber the match was found on as ...
1
vote
2answers
351 views
Batch findstr with quotes
I'm trying to figure out how to modify this script to make exact searches.
I need to search for a string (eg: "123.12" -- with quotes)
This is my script up to now:
findstr %1 ...
1
vote
0answers
138 views
Open file after findstr locates it.
I am writing a batch for my command line class. It is pretty simple at this point. So it runs well for the most part until it gets to the end. I don't know if I am using it correctly. After the ...
2
votes
3answers
958 views
Batch file: one type with two findstr (and pipe output)
I have 50 files named like: CPUNAME_installer.txt and the content of each one is something like (many more lines per file):
CPUNAME;11724;sdaasdasdasdasdasdasd
CPUNAME;1034;231asddasd
...
2
votes
1answer
228 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
2k views
Using findstr with regular expressions to search sections of a string
I have created code which loops through each line of files.txt and identifies if the file is car, boat or neither and stores this information into SendType.txt. This is accomplished by using the ...
1
vote
2answers
358 views
Windows Batch: Search all files in file, if line contains “apple” or “tomato” echo it
I'm trying to write a simple batch that will loop through every line in a file and if the line contains "apples" or "tomato" then to output that line.
I have this code to find one string and output ...
0
votes
2answers
150 views
batch file parsing and returning the result
I have to use a batch file and have to parse one of the parameters. The result should go to one of the commands in the batch file.
So one of the parameter for the batch file is like this:
Lorem ...
3
votes
2answers
344 views
Use subpatterns in FINDSTR
I must check the validity of a string stored in a variable, I can not use external CLI utilities (grep, awk, etc.) so I chose FINDSTR.
The string has this format (in regexp):
...
0
votes
1answer
125 views
Shell output redirect to multiple pipes
In cmd.exe, a certain command produces output in the form:
Asd foo content 1
Qwe bar content 1
Asd foo content 2
Qwe bar content 2
...
I would like to format it to instead produce:
foo content 1, ...
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 ...
0
votes
1answer
278 views
windows 7 findstr
I used the findstr and tried to find some key word errors in an output file. I saved all the error code inside a finddata.txt. The search did run for a while, but I look at the results, The search ...
2
votes
1answer
208 views
Replacing an Awk statment with Findstr
I am trying to figure out how to utilize findstr so that it will do the same thing as this line in awk:
wk.exe "begin {temp=0}/^stringMarker/{temp=1}{if (temp==1)print$0}" %TEMP%\input.txt ...
0
votes
2answers
184 views
Windows Batch loop all variables with findstr
In my Windows batch file I have a various amount of variables. Lets say I have the following variables:
set varTest1=test1
set varTest2=test2
set otherVar=variable500
set varS=string
set ...
0
votes
1answer
795 views
Batch file - search and then delete depending on whether files contain a string
I'd like to search through multiple text files in a single directory for a string ('monkey'), if the string exists, then either, depending on what's easiest:
1) rename the matching string - e.g. ...
0
votes
1answer
480 views
How to use FINDSTR to capitalize all words a string?
I'm cleaning up thousands of filenames, most have a structure like: "xxxx xxxx - xxxxx xxxx xxxx.yyy" The problem is that some are capitalized and some are not. (Actually there are other problems too, ...
0
votes
0answers
185 views
Findstr command to find a range of IPs in text file
Im my script I issued Arp-a command and piped it to a text file. in need of a findstr command to find a range of IPs in the ARP text file.
1
vote
1answer
784 views
FINDSTR command in a batch file to display variable output
I was wondering if anyone could help me perhaps write a relatively simple batch file command that I can use to base the rest of my batch file off of. I work in a support group that supports many ...
1
vote
5answers
344 views
Extracting a string between the first and second comma in a specific line in all files in a directory
I am trying to extract a string that is located between the first and second comma in a specific line in a series of text files (subtitle files). The text files are formatted this way:
...
0
votes
1answer
367 views
Use Path Dir from findstr command
Trying to use the directory outputed by this line in my batch code.
findstr /M search_text "C:\Users\user\Desktop\*"
This output's a file directory.
"C:\Users\whatever\blabla"
I know I can just ...
0
votes
1answer
540 views
BATCH/CMD: Print each line of a .txt into a variable
Goal: Have every dll file in a computer passed into regsvr32.exe
Accomplished:
cd\
::REM Exports every file and directory (/s) into a file in root of c: called dir.txt with only file names (/b)
dir ...
0
votes
2answers
355 views
Checking for errors in batch script / Finding strings
How can I find and compare more than one sets of strings in batch in order to check for errors???
I know how to do it with one set of string:
FINDSTR /C:"successful" someFile.txt && (ECHO It ...


