Script files that are executed by the Windows command-line interpreter.

learn more… | top users | synonyms (8)

0
votes
1answer
37 views

Rewrite files after skipping lines batch file

Need to read files in directory, rewrite them after skipping the first 77 lines, save to new txt file with the old name. Diectory (there are many more files than this): ...
0
votes
1answer
35 views

How can output the standard error stream to the console and a file

Is there a way to have the standard error stream of a command to output to the console and to a file. I know about the "type" command, but this won't work for my needs. Is there another way?
0
votes
1answer
45 views

How to use interopPermission on batch job script execution

I'm trying to run a powershell script through batch job, I used the following code that works fine in a job : System.Diagnostics.Process process; System.Diagnostics.ProcessStartInfo startInfo; ; ...
0
votes
1answer
26 views

how can I use the output from find to create a variable? [duplicate]

I want to use win32 shell and try to get a variable to receive input from the find function, so set var = cscript [Location] | find /c "test" then I want to use an if statement to see if the value ...
0
votes
3answers
21 views

How to overwrite a text file from a batch file

I am aware you can append to the end of a file with batch like so... echo I like turtles >> file.txt but I would like to overwrite the file instead. How could this be done?
1
vote
2answers
23 views

Load two sites on startup in IE9

I am using IE9 and I'm trying to load two web pages on startup. Originally it was loading one but now I need to see 2 different pages, preferably tabs but not necessary, whatever is easier. Here is ...
1
vote
1answer
13 views

Language issue accessing desktop with batch?

Im trying to access the desktop with a batch file thats reletivly easy (see following code) c:\%userprofile%\desktop Okay but I dont live in an english speaking country so the code is as follows ...
0
votes
3answers
35 views

sed syntax for replace with reserved characters

I'm having trouble figuring out the correct syntax to search through a text file and insert a new line after the search is found. I want to add define('FS_METHOD', 'ftpext'); After ...
0
votes
1answer
14 views

How to copy files. iterating whitespace directories - batch

Hello i want to create a batch file that copies the files from the current directory to another. for /F "usebackq" %%b IN (`DIR /B /S ""`) DO @( XCOPY %%b %1 ) So Far so good. MY problem are ...
0
votes
1answer
19 views

VB.NET run BATCH from current directory

I have a windows batch file which I want to execute using vb.net however the batch as well as the VB.net exe that will execute it are run from the cd rom which means tat i want my vb.net to run the ...
0
votes
0answers
17 views

How can I create a batch file to build specific projects in the solution?

I currently have the following batch file which can build the entire solution: "C:\Path\To\IDE\devenv.exe" /build debug "C:\Path\To\Solution\MySln.sln" How can I modify this to build a specific ...
0
votes
1answer
39 views

Run rails application without using rails console or run rails application directly from Batch file

I am working on Ruby on Rails application. For some reason I want to start my application from a batch file. Using the bat file I successfully run rails server and rails console. But I can't send the ...
1
vote
1answer
53 views

DOS Batch file - Copy file based on filename into default folder

I would like to use a batch file to put them into default folder, but the account name is in the middle of the folder. Have any script I can use in dos command prompt? 888123_AAAA_20130313.pdf ...
0
votes
1answer
25 views

Batch Scripting iterating over files in a folder and extract for each one just the first line

I need to iterate over files contained in a folder and extract the first line for each file. I've tried to get this writing two batch file - the first one overate over files: FOR %%a in ...
2
votes
1answer
55 views

Call powershell scripts with AX 2009

How can I proceed to run a powershell script from AX ? is it possible to do this through batch job? I mean is it allowed by AX to do that on server side process ?I had a lot of problems to run some ...
0
votes
2answers
54 views

How to run batch file from within PL/SQL procedure

I have a batch file which will execute some .exe which do some operations (like connecting to DB, fetching data, insert data etc...) All the things are configured in the batch file and when I run it, ...
0
votes
3answers
32 views

Else command in batch running all at once?

I'm not sure why this is happening, but it seems like the else command in this batch script I'm working on is running all at once, instead of one line at a time. Any suggestions? set ...
0
votes
2answers
31 views

Find and replace a string into a path in batch

I am trying a batch file which replaces a changing text named X by a static text 'English' into the path Y:\SUT\ISTQB\Board\X\Dashboard\Open About the position of the X text, it is always ...
0
votes
2answers
43 views

Batch file SQLCMD Restore Loop - Files Disappear

So I've searched and found a lot of info in similar areas, but nothing that quite hits the issue I'm having. I'm working in a test environment and need to restore from the same SQL database backup ...
2
votes
2answers
33 views

Batch Script Input Problems

I have two questions regarding a batch script I'm working on. I realize that batch script questions are common but haven't found an answer to my exact question so I thought I'd try asking. The ...
0
votes
0answers
35 views

Can Windows built-in compression work on a .csv file?

When I execute the following batch file to compress a .txt file, it works fine. When I modify the script to compress a .csv file, I get an empty .zip as a result. Any ideas? set ...
1
vote
2answers
35 views

Batch file to search for content in “%~1”

I'm new to this so please be gentle ! Am running a script that takes a file path from a program and puts it into %1 and this part is working. Need to search for ~$ in %1 and if found delete the ...
1
vote
2answers
29 views

How do I create a batch file to search for file(s) with certain extension within a folder?

Please help! I an new to creating batch files. I am trying to create a batch file to do the following things : Search for file(s) with a certain file extension (i.e. .docx) within a folder Output ...
1
vote
1answer
14 views

How to open BAT (windows batch) file in Eclipse?

How to open BAT (windows batch) file in Eclipse? When I am doing Open File... the file runs, not opens. How to open it in editor? Dragging file on Eclipse also runs it.
1
vote
1answer
28 views

Batch file to move files based on filesize

So this has been irritating me a tad. I'm trying to write a batch file to move over into their own folders based on their filesize. I've started doing this manually, but after thirty minutes I tried ...
0
votes
1answer
23 views

Contextual menu entry - struggling with command

I'd like to be able to right click on a computer in the Windows Network and connect to it using VNC. I made the registry entries in ...
1
vote
3answers
38 views

Whats the windows equivalent of this simple bash string manipulation?

I'm once again, wishing I could use bash while trying to do some windows batch stuff. What's a short, windows batch equivalent of this Bash expression? $ var="EIPADDRESS=192.168.20.139"; ...
-5
votes
4answers
62 views

How to make batch file open new CMD with commands in it?

How can i make a batch file open another CMD window with this in it? Title Matrix color a mode 1000 :start Echo %Random% %Random% %Random% %Random% %Random% %Random% %Random% %Random% %Random% ...
0
votes
0answers
26 views

Visual Studio 2012 - Use XML to generate interface

I have a series of vb scripts, each having their own basic input and output. For example one script is used for backup, so its input is the drive letter that the backup should go to, the output is ...
0
votes
1answer
14 views

Batch script: Merging multiple idx files with vobsubmux

I'm trying to merge x many files to one file with a program. Program works like this: vobsubmux.exe sub1.idx sub2.idx sub3.idx ... etc Now, I have those files in a directory, how can I make a batch ...
1
vote
1answer
60 views

batch script to find the directory where a file is located, copy all files located in that directory and sub-directories to another directory

So if I have C:\drivers\* with * indicating many sub-folders, I want to find out where my inf files are located, and then copy ALL files that are located in the same directory where my inf files are ...
1
vote
1answer
26 views

Issue with environment variable

I just want to echo a variable which is defined with ENABLEDELAYEDEXPANSION. It doesn't work. Here's a small part of my long script on the issue @echo off&setlocal enabledelayedexpansion for ...
2
votes
1answer
33 views

How to call a process from an .exe file

I have a program called test.exe. The program was written in python/pyqt4. At some point along the code I want to trigger a restart of the application so I need to create a detached process which runs ...
0
votes
3answers
52 views

How can we remove the leading and traling spaces from a string in batch script?

I have a first.properties file and I am reading that file, skipping the first 5 lines and creating a new file with the remaining lines of first.properties. This is working fine. But I am getting ...
-5
votes
0answers
29 views

Batch file command for windows7 [closed]

.bat Batch file Command for windows 7 Hi, Can anyone discribe it more..."I want to be able to double click to run the batch file and then specify the source and target folders?
0
votes
2answers
39 views

Change content of batch file

How to change content of batch file using Java code? I worked with parsing XML using Java program. It worked fine. But can I do same for the batch file using Java? I am able to run batch file using ...
0
votes
1answer
35 views

php.exe script parameters in batch file

I'm trying to execute a PHP script on Windows through php.exe, while passing parameters to the script. Everywhere I look, it says it should work like this: php -f "path\to\my\script.php" -- -t 10 -i ...
0
votes
0answers
23 views

Batch DIR and VAR

I am currently working on a "advanced" batch script, just to keep my mind to something. What i am trying to make is a (as far as its possible to make one) Bot script that includes the following ...
1
vote
4answers
45 views

Batch file help please: If exist C:\Program Files\Adobe OR C:\Program Files (x86)\Adobe

How can I modify the following batch file to check both C:\Program Files\Adobe and C:\Program Files (x86)\Adobe? This code only looks for C:\Program Files\Adobe @echo off if exist "C:\Program ...
2
votes
1answer
94 views

How to run a batch file in background from Sikuli?

How to run a batch file in background from Sikuli? Environment: WinXP, Python 2.7, Sikuli r930. Let’s assume I have a simple batch file startNotepad.bat which contains 1 line: START notepad I ...
0
votes
2answers
45 views

Find and replace not working in batch scrpt

I'm trying to make a batch script with find and replace option but the batch script doesn't do anything instead just show the blinking cursor and gets stuck there. Here's the coding im using: ...
0
votes
1answer
42 views

robocopy script exclude files beginning with a “space”

I'm using the following script to backup my IIS and MySQL data directories to a SkyDrive folder than then uploads to the cloud, but SkyDrive has an issue with files beginning with a space or null ...
0
votes
2answers
31 views

SQL to trigger batch file

We are using SQL Server 2008R2 to handle a mail queue. New mail is entered into the queue and then once every minute a batch file reads the unprocessed mails, does some processing, sends the mail via ...
0
votes
2answers
21 views

Batch start command not opening program

When I enter the following from a command prompt: start myprog.exe It opens the program in a command window, but it doesn't start the actual program itself. Does anyone know what I'm doing wrong ...
1
vote
2answers
43 views

Why is my batch script running both if and else statement when if statement matches?

The batch script processes the else statement even though the if matches (and is processed as well). Why is this? set getprocesslistlocal=wmic process get name,processid echo Type the name of the ...
0
votes
0answers
19 views

How do I call a .bat file to determine build environment in eclipse?

In to order to determine the build environment, I have written a .bat that will set the environment variables. How can I call this .bat file before make all?
0
votes
2answers
40 views

How to modify a reg_expand_sz value from command prompt?

I am trying to edit an existing registry key from a .reg file. I want to change the vaue of the key, which is a reg_expand_sz value to a different one (the value is a file path). I tried doing it like ...
0
votes
3answers
19 views

delete files in batch with without error message

I use the command del "info*" to delete a group of files starting with "info". The problem is that sometimes there is at least one of these files that exist,therefore they are deleted and others ...
0
votes
0answers
30 views

Attempting to change cursor image with a .BAT file

I'm trying to change the default Windows cursor from the default arrow to a custom one. The thing is, I need to be able to do it from a batch file. One thing that worked before was to simply ...
-2
votes
1answer
15 views

I dont run mi script junit by .bat

I read other questions like a: "How to run Junit testcases from command line?" and "how to run junit test command line from java [duplicate]" I still can not run my script from a file .bat: java -cp ...

1 2 3 4 5 200