2
votes
2answers
32 views

How do I find a string in text files and print the matches in a Windows batch file?

Is there a way to search for a defined string within several thousand text files and to print the names of the files that have a match?
0
votes
1answer
16 views

How to take db backup of agilefant (my sql database) using batch file

as we have installed agilefant and Bugzilla, i need to take the back up of both in mysql by using batchfile.. please do help @echo off echo Running dump.. C:\mysqlserver\MySQL Server ...
0
votes
1answer
32 views

needing to iterate through a folder and store documents into a variable

I need to iterate through a folder and collect all the documents and store them into a variable. Im stuck on how exactly to do this process. (has to be done as a batch file) Currently im here: ...
0
votes
0answers
18 views

how can wmic out put pc name in the domain?

Can any1 help me find what's wrong with this script? I m trying to output the pc name that has certain process running on it. but the output file always empty.....please give me a hint. @echo off ...
0
votes
1answer
50 views

'forfiles' is not recognized as an internal or external command

I ran the code in Windows 7 and it is working fine... when I run this code in Windows XP, I am getting forfiles not recognized. call :moveOldFiles D:\coupon\Source\1 *.* %days% ...
1
vote
1answer
29 views

Execute batch instructions sequentially

I have a problem with my batch file (.bat). It has the following lines : start /d "\\Pcaldatp01\myroute" App1.exe start /d "\\Pcaldatp01\myroute" App2.exe start /d "\\Pcaldatp01\myroute" App3.exe ...
1
vote
3answers
39 views

batch command input menu

i have a question . It is possible to make a batch menu to accept multiple commands at the same time? Example : ( my code ) @ECHO OFF set tries=6 :top cls set /a tries=%tries% -1 if %tries%==0 ( ...
0
votes
2answers
40 views

Increase number in string in bat file?

How can I increment the value of an int in a string ? Say I have foo-815-bar. I'd like to have foo-815-bar. foo and bar can be constants (although if bar can be an unknown variable, it would be ...
0
votes
1answer
148 views

How to create Backup Batch file that copys only modified files & delete the dest files/folders that do not exist in the source?

I want to create a backup Batch file that meets these requirements: Requirement: 1-Only copy the source files if the source file got modified. 2-If the destination contains the files/folders that ...
1
vote
1answer
62 views

Cannot write result of batch file processing using DOS START command

I have a batch file which will run multiple programs using DOS start command. However, I could not write the programs' result to their respective text file. start program1.exe > result1.txt start ...
0
votes
1answer
58 views

How to log input and output of a batch file to a text file?

I have created a batch file with 2000 lines of code and which will peroform various operations in my daily work. For this batch file I have to give some inputs to enable/disable some of the ...
1
vote
2answers
248 views

Batch File > Javascript > WinSCP > Check if file exists

I have a batch file that will launch a .js file which, via WinSCP, checks if a file exists and returns to the batch file if it does or not. The problem IS: It always returns not found, and I cannot ...
1
vote
1answer
75 views

Merge multiple text to text file based on filename batch

hi guys i have some problem with my batch. i want to create batch that can merge multiple text file to one text file but it must based on 2 first character of the filename. so it will be like this ...
0
votes
1answer
69 views

Batch convert all files in a directory with spaces in filename

I've done this batch file that should convert all mp3 files in given folder but, I dont know why, it doesn't work... Here is the code: @echo off title Converting... set ...
3
votes
1answer
80 views

DOS Batch that sends email via outlook: need to add new lines

Here is part of my batch: start "" "C:\Program Files (x86)\Microsoft Office\Office12\OUTLOOK.EXE" /c ipm.note /m "email address&cc=email address 2;email address 3&subject=Very Important ...
0
votes
3answers
70 views

batch_ Loop line in a file and check if a line begin with “#”

hi mate i have to a script .bat for windows shell. i have this file: line line #line line #line I want to read the file line by line, and if the line begin with "#" i don't do anything else i do ...
0
votes
0answers
117 views

find & replace text using batch file

import java.io.*; class hello { public static void main(String args[]) { System.out.println("shhhhhhhhshhhh"); } } I want that this Java program extracts "hello" text and replaces it with ...
0
votes
2answers
90 views

Batch File If Error

Ok so I am working on a project and I am doing this and I get to the if statement in confirmOne and it gives me "( was not expected at this time." Please help! Many of the stray "You got to here!" ...
0
votes
1answer
83 views

Input filename into jar from windows batch file

I want to input a file into my jar after it is executed from batch file. I wrote the following batch code. @echo off set path=%PATH%;C:\Program Files\Java\jre7\bin java -jar ...
-3
votes
1answer
149 views

How to kill SYSTEM process in windows via batch [closed]

How can I kill a SYSTEM's process via batch command. I know we can use TASKKILL /IM notepad.exe I need to kill notepad which is running by system in task manager it shows notepad.exe *32
1
vote
2answers
254 views

If Notepad.exe is running then taskkill if not running go to next statement

I need help writing batch code. In the initial state of my batch script I need to check if notepad.exe is running if it is running then taskkill /im notepad.exe elsif notepad.exe is not running then ...
0
votes
1answer
115 views

How to check the status of call command in dos batch file

I have a batch file name xyz.bat with these content @echo off echo 1.Cleaning all four project. call apacheant\bin\ant -buildfile clean-all.xml When the first call end it write on console ...
0
votes
2answers
41 views

Remove a row in csv based on date Batch

I'm trying to figure out if it's possible with a batch script to remove a row based on a date it finds. The data would always have to be the current date. SO I have a file that looks like this: ...
0
votes
0answers
45 views

psexec with multiple usernames and passwods

Is there a way to provide multiple usernames and passwords to psexec via batch file? Using one username and password has worked with my below script. The list of servers belong to several different ...
0
votes
1answer
417 views

Inserting multiple rows in Hibernate - batch insert

I'm inserting multiple rows in Hibernate using the following transactional unit of code in my DAO class. @Override @SuppressWarnings("unchecked") @Transactional(readOnly = false, ...
0
votes
2answers
41 views

Add information to beginning of file using a BAT process, but keep file name convention

I am new to Stackoverflow, so I hope I am posting this in the correct area. I have been searching for an answer to my question for quite a while. I am attempting to add some information to the ...
-2
votes
2answers
274 views

Get the value of a registry key within wow6432node using a batch script?

I have a batch script below (which i was able to derive from Open a file in Visual Studio at a specific line number and How can I get the value of a registry key using a batch script? -Thanks 2 u guys ...
0
votes
3answers
178 views

How can I get the value of a registry key using a batch script?

I have a batch script like this (which i was able to derive from Open a file in Visual Studio at a specific line number ). Can any one tell me how to to pass the registry key of devenev i.e.( ...
0
votes
2answers
127 views

Almost there… Need to find and replace. Using for loop

I am trying to find and replace. I am using a for loop. I am learning but I am almost there. I have tried to find the answer but the sources have been a bit too confusing for me. The delim is a blank ...
3
votes
3answers
75 views

Can a Batch for loop have an increasing step value?

This might be short and sweet, but i'm just checking. Can a batch for command have an increasing step value? @echo off SetLocal EnableDelayedExpansion set xyz=200 for /l %%n in (100,%xyz%,26000) do ...
0
votes
1answer
186 views

How to call or embedded VBS in Batch script

I would like batch to send email but since mailto command won't send email via outlook without me clicking send button. I found this VBS Script online which sends email without human interactions. I ...
0
votes
1answer
196 views

Script to rename files to parent folder, move renamed file and delete empty folder

wondering if anyone here can help me out. I'm using Windows 7 and have a collection of movies and TV shows in individual folders which I'd like to be renamed to that of the folder name. For example: ...
0
votes
1answer
240 views

Batch sendemail automatically without clicking send

I use Microsoft Outlook for emailing. My batch script does some checking and I want it to send out email automatically without me doing any clicking manually. I have this code in my batch file. ...
0
votes
2answers
123 views

Can we Fetch/Scrape particular data from html site into Batch to do following?

Awesome work guys by guys in this post on this site. But I need modifying this script according to my needs. I am not hardcore coder but with little help I can get it working. I have website it ...
0
votes
1answer
459 views

batch file to execute a command on all files in multiple directories

I would like to make a batch file that runs this command: C:\Program Files (x86)\IrfanView\i_view32.exe" "C:\Users\digi_admin\TIFFs\ OLD DIRECTORY\*.tif" /ini="C:\Users\digi_admin\Documents\" ...
0
votes
1answer
273 views

Stop batch script from executing while encountering error

So I'm building multiple client using the same batch script. If there's an error while building one, that process simply stops and continues with the next one. Because there's a lot of output on the ...
-1
votes
1answer
416 views

Run perl script with batch file, with pre-written commands? [closed]

How does one run a perl script file with a batch with pre-written commands? Please post the opening of the file with .pl extension with some sample commands, then I can take it from there. Thank you. ...
0
votes
1answer
1k views

Issue with windows task scheduler with running a powershell script in windows 2008 server

This question would seem a very common question but i have done every possible thing for the solution but nothing works for me. I m trying to run a powershell script via batch powershell.exe ...
0
votes
2answers
407 views

How to keep GOTO :EOF but bypass it to finish the rest of the script?

Please look at this code below. It works but at the goto :EOF it stops the script and doesn't complete what is below it. Is there a work around? There of course is more to this script but the goto ...
-1
votes
1answer
42 views

Add another section to a batch file?

I was told I can prevent this code from pushing down the lines when it replaces text by "adding another section". What does that mean? Here is the code: for /f "delims=" %%a in (list.txt) do ( ...
0
votes
0answers
41 views

Prevent moving the lines down when lines are placed into file?

I have the following code someone put together for me. It replaces the first line "Name=ShipDummy" just fine, but then it pushes all the contents down two lines when it adds the next 2 lines, ...
0
votes
0answers
85 views

Look for list in file 1 and replaces words in file 2 with predefined text lines

I have the following code, but it seems to be applying error :EOF. It does change one of the words found in Text.txt but that is it. Then it adds :EOF to the end of Campaign_SCR.mis.tmp How can I ...
2
votes
1answer
379 views

Copy file type from sub directories, into one folder renaming files so they don't overwrite

I'd like to copy one filetype from sub directories, placing the copies into one folder, renaming them so they don't overwrite. Rename it but keep the file extension. I don't care what it is renamed ...
0
votes
1answer
106 views

Search for a list of words in a file, then find those words on another replacing the whole line with Class=ShipDummy,replacing the 2 lines below it

I'd like to search for a list of words from an external list (simple each word on a line) which we'll call "List.txt", and search for them in a file (C:\Users\P ...
0
votes
1answer
62 views

How do I apply this?

I would like to use as the variable for my code below, instead of what comes after ClassName= in 1.txt, I would like what comes in-between this: EntryText=Ship sunk!|Grid AO 77|Variable, (notice ...
0
votes
1answer
59 views

Grab variable wihin a line of text that contains constants and other variables

I would like to use as the variable for my code below, instead of what came after ClassName=in 1.txt, I would like what came in-between this: EntryText=Ship sunk!|Grid AO 77| Grab variable HERE, ...
0
votes
0answers
103 views

Batch - prevent removing blank lines

I have a batch process that does everything I need except it removes the blank lines of the text. Could it do everything it does, but prevent it from removing blank lines of text in 2.txt? Thank you. ...
1
vote
1answer
158 views

Search filename with variable and replace different variable text in another file with multiple lines

I had a gentlemen answer my quesiton prevously, but now I've realised that i need a bit more help. I have code that does almost everything I want it to: @echo off copy 2.txt 2.txt-backup setlocal ...
0
votes
1answer
82 views

Batch - I would like to search with a variable in one file and replace that variable result in another file

I would like to search using a variable in one file, then take that variable result and replace part of some text in another file. For exmaple in "1.txt" I have a text line of: ClassName=X X changes ...
1
vote
1answer
335 views

merge many txt file contents and skip first line in batch command file

I want to create a Batch command file to merge text file with extension ".mf" However, each file contains date in the first line, which I donot want in the final output file, Please advice how do I ...

1 2 3 4