-3
votes
0answers
65 views

Executing of batch file [duplicate]

I want to execute one command using batch file but non of below code is working where Please tell me where I am going wrong, Following are codes for executing batch file, First trial:- ...
-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
0
votes
1answer
76 views

How to change directory from a C program so that when the program finishes the change is still preserved?

I am writing a program that is similar to the "cd" command but uses shortcuts. (to save a path: cds -s 1 C:\saved\directory\path) (to switch to a saved path: cds 1) To do this I have tried both ...
0
votes
2answers
189 views

How to call a batch file from visual studio 2010

I wrote a code which produces airfoils shapes and evaluate them using an external program as an evaluation tool. I also made a batch file which starts this program execute some batch commands needed ...
0
votes
3answers
101 views

Running OpenMP on a single node of a cluster

I am able to do simple for loops in OpenMP on my desktop/laptop of the form (a mild simplification of what I actually have...) #include <stdlib.h> #include <stdio.h> #include ...
2
votes
1answer
110 views

Adding headers on multiple file via batch file

I have a list of .c file where I want to add a header. The files are in a folder and the batch file should put an header to every .c file in that folder. I am inquisitive to know, how could we achieve ...
-3
votes
1answer
127 views

system () call… to open mybatchfiles.bat

I am getting the following error when using the system() call to run a batch file: 'C:\newfldr\mybatchfiles.bat' is not recognized as internal or external command, operable program or batch file. ...
0
votes
2answers
163 views

How to create a C/C++ program that generates an XML and runs a DOS command afterwards?

I need to came up with a program that generates a xml file like this: <?xml version="1.0"?> <xc:XmlCache xmlns:xc="XmlCache" xc:action="Update"> <xc:XmlCacheArea ...
1
vote
5answers
435 views

Alt-Tab pedal with an Arduino

I'm creating an Alt-Tab pedal with an Arduino. The idea is that the user will just press down on a pedal that will hit a button on the Arduino, and this would be the equivalent of hitting the alt-tab ...
0
votes
4answers
201 views

turbo c & batch file

My batch file is executing with c program but when I used start notepad.exe in batch file it shows bad command .But when I execute my batch file individully it works perfect.What's the reason?
-2
votes
1answer
393 views

windows batch / multiple commands per line

I use Windows and I have a C program which calls popen to execute a command dynamically. But if i try to execute something like this: set a=10 echo %a% it doesnt work. I tried (manually) to save ...
0
votes
3answers
494 views

How to pass a variable in c program as an argument to the batch file?

include<stdio.h> include<stdlib.h> int main() { char a[20]="hello world"; system("./cool.bat a");\\here I need to pass the array as argument to batch file } I believe ...
3
votes
2answers
351 views

Opening a batch file (.bat) in a c program?

How do I start running a batch file (.bat) from my c program? I used system("start /B omanam.bat"); but its not working.How can i make .bat to open through c ?
2
votes
1answer
2k views

how to execute batch file from C/C++ w/o console window?

I'm executing batch file from a C++ program by system("start /B mybatch.bat") call, where /B is supposed to run batch file w/o console window. But it's still visible. Edit: I resolved the issue by ...
2
votes
1answer
2k views

nmake compilation error

im very new to c and am trying to compile to a specific .so module for apache, but am running into problems: the fatal error from nmake i get is appended below. where does the prepend of "cl" to the ...
2
votes
2answers
787 views

How to install USB driver after the installing of software

I want to install (or at least, do the prepairing for the installing of) a USB driver after my software is installed on the client computer. I have a small program, written in C# in Visual Studio ...
1
vote
2answers
3k views

C# running batch file on remote machine after PsExec has been started

Basically, I'm trying to run the batch file that was copied on the remote machine, by the way, this is my first attempt at coding, so please be nice but critique it if you want, I'm still learning the ...
0
votes
2answers
416 views

Forcing keypress or mouse movement in Windows using C

I need to turn a monitor on after it resumes/wakes from sleep. The only way it seems to do this is by mouse movement or keypress. Is there any way in C on Windows 7 to simulate this so the monitor ...
1
vote
2answers
284 views

Text File Parsing in C - Calling a Batch File Or Not

This website is a tremendous source of knowledge, it has helped me countless times in the past. I just started learning C on my own - up until now I just wrote a few batch files. So I humbly ask for ...
0
votes
1answer
216 views

How to specify end of input in a batch file

I have a program x.exe it waits for an input from user and reads till end of file. I want to call it from a batch file. x.exe My Text Goes Here and goes and goes and goes and how to say it ends? ...
0
votes
1answer
65 views

File inputs&outputs

Hey everyone. I have an exe file that runs a console program that was programmed in C. during the run of the program the user is asked to enter numbers (using the scanf function). and the output is ...
1
vote
4answers
706 views

What is the Windows equivalent of “pidof” from Linux?

In a batchscript, I need to get a list of process IDs with given binary path C:\path\to\binary.exe. In Linux, I can just do pidof /path/to/binary. Is there a Win32 executable which does the same, ...
0
votes
2answers
402 views

edit the etc\hosts file

Using C or a bat file, I'm trying to edit the file hosts file from c:\Windows\System32\drivers\etc but I can;t bc it is write protected. Can you tell me what can i do?
2
votes
6answers
378 views

How to make a program that automatically synchronizes

Hey i am hoping to write a program where the program automatically just copy pastes all my dad's documents from D:\office folder. So whenever I plug-in my pen-drive , the program silently copies all ...
5
votes
2answers
729 views

Why can't I test the return code in Windows 7?

I have a very complicated program that is failing, and I've simplified it to this test set with a batch file and C program. My C program uses ExitProcess to pass back the errorlevel to a batch file. ...
2
votes
1answer
1k views

execute a batch file from a program

i would like to execute a batch file from a program (exe file). i usually create the batch file while program (exe file) execution. and will the execl("START","",NULL); the function is calling the ...
4
votes
7answers
1k views

Is a makefile basically the same thing as a batch file?

I know all about batch files and made them before, but I'm unclear on what a makefile is. It looks like a batch file. What are the similarities and diffferences?
2
votes
3answers
2k views

GCC compiler error on Windows XP

I'm getting a totally bizzare error trying to compile a C program using GCC. Here is the batch file I am using: echo Now compiling, assembling, and linking the core: nasm -f aout -o start.o start.asm ...