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

learn more… | top users | synonyms (8)

0
votes
4answers
76 views

Batch (Windows) execute script wait for request and input the answer

the problem: I want to create a batchfile that executes other scripts. Then only problem is, you can not give the necessary input by parameters. The scripts ask for some data along the way. Is there ...
1
vote
3answers
38 views

Batch script to tell if a website is up or down

My issue is that ping doesn't tell me if the website is up or down. I need to know if the website is up or down. If it is not up restart the script. If anyone can help me out that would be amazing. ...
0
votes
2answers
134 views

VBScript - Open batch file with 32-bit cmd

I have a .hta application and the below code. By default, the below command opens file.bat in C:\Windows\ syswow64 \cmd.exe How do I get it to open with C:\Windows\ system32 \cmd.exe? A workaround ...
-3
votes
0answers
23 views

Accessing two applications and linking the applications [closed]

I Have two applications in which i have to access two simultaneously. And if i close one application other has to be started automatically. If possible please help me out linking the applications
2
votes
2answers
75 views

Add/remove keyboard languages through .bat

Some time now that I am using win7, it regularly messes my keyboard languages up, and I have to remotely add 3 keyboard languages, apply, and then remove them. So, I was wondering if there is a way to ...
0
votes
0answers
19 views

How to have console output for Intel ManyCore Lab batch jobs?

I'm currently testing an OpenMP parallel program on Intel's ManyCore Testing Lab computers, and have been using qsub -l select=1:ncpus=30 $HOME/myjob to add the job and run it. It puts the output ...
-1
votes
0answers
33 views

Tomcat script that checks if the webpage is up and running. if it is not running restart it. check every 10 min

**Update Now my issue is that ping doesn't tell me if the website is up or down. I need to know if the website is up or down. If it is not up restart the script. If anyone can help me out that would ...
0
votes
0answers
45 views

How to nest batch script for loop?

I'm getting a syntax error here and i can't figure it out why. Script runs when I remove for loop but I need to be able to run this multiple times and I can't use goto. Is there any problem with ...
0
votes
1answer
63 views

how do i fix: 'access denied' with the move command in windows 7?

Hi there i'm using the windows 7 'move' command like so: move /Y "C:\old.sub.folder\folder.i.want.to.move" "F:\new.sub.folder\folder.i.want.to.move" and i keep getting an 'accessed denied' error ...
0
votes
1answer
22 views

Batch export of multiple mysql databases

I am trying to make backups of my 15 MySQL databases on my web server. This list of databases will continue to grow with my (hopefully!) increasing client base. Obviously, I can do a mysql dump with ...
-2
votes
0answers
55 views

How I can check if a folder exist, create a new one and subfolder if not, and after copy a folder template to this new sub directory created [closed]

Is it possible to do something to make these steps? It can be a bat file, Java or even Excel. User enters NIF (Number Financial) customer and the program will check if the file that is in the path: ...
0
votes
3answers
95 views

Unsigned Powershell scripts from HTA

I have created the below batch file and it works flawlessly as long as I run it manually. However, if I run the .bat file from a HTA application, PowerShell says that he can't run the script because ...
0
votes
2answers
38 views

Removing characters from the beginning of several files

I basically have lots of files, generally in either .xls or .pdf format and I need to remove the first 8 characters from every file. the standard format is something like: abc 123 ...
0
votes
0answers
32 views

Command to run .exe from the same archive as .bat

I'm looking for snippet that'd get launched .bat files temporary location (inside .zip archive) and execute an .exe from within the same archive, just one folder deeper. Is it even possible?
0
votes
3answers
74 views

copy lines from a text file to another

i have two text files file1 has the following lines line1 line2 hello-hai-1 hello-2-hai 3-hai-hello hello and file 2 has line4 line3 hello-hai-5 hello-7-hai 6-hai-hello hai hello-4 what i want ...
1
vote
0answers
31 views

Batch generated file produces encoding error with latex [migrated]

The goal: This is for an exam. I have a program which should be compiled and executed by batch script. Another batch script calls that first batch an writes the output to a .txt file. Then the ...
-1
votes
1answer
35 views

Windows cmd/batch - Edit .cfg file where text = something [closed]

I need some help with a batch file that runs through Windows Task Scheduler every 6 hours, and I want it to each time the task is run, change a line that pretty much looks like this: hostname = ...
-1
votes
1answer
23 views

load page with curl(windows) bat

I downloaded curl for windows and i need a bat file which will load an url every 2 minutes. Any ...
0
votes
2answers
45 views

Moving specific files by extension in Windows batch

I'm very new to scripting in batch so please bear with me. My goal is so as to move files which have the same filenames but with different extension; such as i want to move myfile.txt.1 and ...
1
vote
1answer
24 views

Batch file issues

I have a batch file that removes all attributes to .jpg files and then deletes the jpg(s) in that directory. Great for ripped music. I have many directories in my MY MUSIC folder. I'd like to put ...
1
vote
4answers
38 views

How to do if A and B and C equal 1 in a Windows Batch File?

I am writing a batch file that needs to check if three variables are all equal to the same thing at the same time. What I thought would work was this: if %A% AND %B% AND %C% EQU 1 goto YES It ...
0
votes
3answers
32 views

Math. Batch (misssing operand, or missing operator)

set /a var=2 ( set /a %var%=var * 2 set /a %var%=%var% * 2 set /a %var%*= 2 ) Why does it say its wrong? I got messages like Missing operand and Missing operator. Well, operator is there, though I ...
0
votes
2answers
45 views

Member of Array not evaluating correctly

I wrote the following script today in response to another question but I can't get past an issue I'm having with my Array. For some reason, the variable I'm using inside of the array isn't evaluating ...
1
vote
1answer
48 views

Windows START command failing to run when executed from RPC

Long story short I have written a program that allows me to install software and run commands on Windows machines remotely. I have been using the START command (which i learned about from another ...
0
votes
1answer
31 views

Windows Task Scheduler hanging when running a batch file that commits to svn

I have the following in a batch file that uses the svn command line client to commit a single file to source control. "%TortoiseSVNPath%\svn.exe" commit %LocalPath%\backup.sql -m "Committing Backup" ...
0
votes
0answers
13 views

How to catch aspnet_compiler error in batch file

I am using aspnet_compiler to compile a website solution and export it to a folder for handling to be published. I want to stop the batch file if the process does not complete, but I can't find out ...
-1
votes
2answers
36 views

How do I make a bat file that creates a dir and moves folders on an unknown computer? [closed]

I'm hoping someone can give me the code or good example of how to create a bat file that does this - when a user drags my folder onto their computer and runs the bat in it, a directory should be ...
0
votes
1answer
42 views

how to stop running programs on windows 7 with batch commands

Can any body tell me how to stop (few) selected running program/software using batch file (.bat) in windows 7 64bit? My requirement is simple : I've set utorrent and few download manager program to ...
0
votes
2answers
33 views

batch file to find files with double file extensions and remove the last one

I have several folders that have files with double file extensions along with regular file extensions. I need to create a batch script to search all the folders and remove the last extension with any ...
0
votes
4answers
74 views

Sorting a text file by date with windows batch script

I have in interesting issue, I need to sort a list of items BY DATE in a text file which look like this: http://www.boatus.com/sailing,1/21/2013 9:00 PM ...
0
votes
0answers
27 views

Editing VLC script for a Server-Client function

I have some issues with a project with VLC. I'm tryying to make an Server-Client streaming with VLC. I have two VLC (one for Server, another for client). The server is launched by this script .bat ...
0
votes
1answer
49 views

User input path psftp script batch file

I am trying to implement a scenerio like the user should give a path and the path should be binded to another . bat file and that path should be the destination where am going to put my file from ...
0
votes
0answers
83 views

Retrieving all Ethernet Card id's and Respective IP Address and Hexadecimal conversion of string using a batch file

I've written a batch file. I am stuck with 2 issues: 1) To get all connected Ethernet Id's and IP Addresses associated with it. 2) Converting Hexadecimal string (volume serial number) to a decimal ...
0
votes
1answer
33 views

spreadsheet of all files in a directory

We are finalising a legal matter and need to provide a list of all correspondence for the matter. I've got a folder on my computer with ALL of the emails, word docs, pdf's, jpg's etc. and wish to ...
0
votes
1answer
47 views

QueryTables Error: Expected ')'

Getting an error: "Expected ')'" on Line 22, Char 60 (i.e. right at the "connection" in the QueryTables.Add function). This VBA is being called by a batch file. I'm trying to understand what is wrong ...
0
votes
2answers
44 views

Issue with a variable in my batch script

I want my script to: Accept a variable Create a path using that variable as input Display the path Display the contents of the directory What is wrong with the following code? The ECHO statement ...
1
vote
2answers
52 views

How to make changes in uninstallation process of project developed in c#.net

I developed a small project in c#.net. I want to create a file in windows or system32 folder. So that I create a setup of my project and add file to system32 and run my setup. it successfull works. ...
0
votes
0answers
58 views

run background matlab script like linux nohup

I found a similar question here that doesn't help me so I'm asking my own. I have a matlab script that perfectly works under linux with nohup command. Unfortunately, I need to run that on windows ...
-2
votes
0answers
113 views

schedule a powershell script via windows task scheduler to run every hour

I want to write a powershell script that looks at a simple sqlplus query and if the result is greater than 0, runs a BAT file problem is, I don't have ANY knowledge on powershell or cmd coding and ...
0
votes
1answer
29 views

Starting a batch file using vb and streaming output to variable in real time

(In my program I'm starting a batch file like this: Dim p1 as new process Dim psi As New ProcessStartInfo(appdata & "file.bat") psi.RedirectStandardError = True psi.RedirectStandardOutput = ...
0
votes
2answers
58 views

Is it possible to edit .Config file using a batch script

Here some part of the .config file that I have: <cs.components> <clear/> <cs.component name="Security"/> <cs.configitems> ...
0
votes
1answer
59 views

variable was unexpected at this time

I'm not very familiar with BAT files but I have a file that runs a sqlplus query, returns the row count, and if it is greater than 0, run another bat file. I feel like I'm almost there but I keep ...
0
votes
2answers
35 views

Parse a simple text file with dos cmd line

I have a text file (vernum.txt) containing one line: At revision 2. How do I use dos cmd line to read in the line and save a variable with JUST the number? It will always be "At Revision ####." ...
0
votes
1answer
36 views

Batch script to log in SSH server on Windows

I'm trying to make a batch script to log in into a SSH server and execute a few commands. The start command is: plink -ssh user@99.99.999.99 Then I need to enter the User Name and Password like the ...
0
votes
1answer
26 views

Batch script network file

I have a batch script which I am trying to open a file (powershell script on a network location). If I put the path as a local c:\test.ps1 it works fine but I cant seem to get it to work with the ...
0
votes
4answers
73 views

how to run java project using batch file

I have written java project which contains only one class. I want to run it on another pc's using batch file. Please advise me how to do this. My class contains parameters for running. I organize ...
0
votes
1answer
41 views

Batch Script creating mutliple text files with incrementing numbers inside

I'm trying to right a script that creates multiple text files from a list of image names but I need each of them to have an incremented number in the contents. So far I've come up with this setlocal ...
1
vote
1answer
40 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
0answers
20 views

Things to take care of when the SQL DataBase is duplicated

I want to duplicate my production SQL database to QA database. Both are in different servers. Also, I have to be vigilant about few things like inserting a dummy job can set the jobs to take off. Few ...
0
votes
2answers
46 views

How to select a window and or use send keys in batch file

I have very little knowledge of batch files (im a vba man, but the pc ill be using has no excel) I want to use a batch file to select a window that is open call "AABTS - 1" once that window is ...

1 3 4 5 6 7 199