Refers to programatically running an application from another.

learn more… | top users | synonyms

2
votes
2answers
48 views

Best data structure for a file with unknown variable types

My program reads in a file that is a list of program names followed by a comma and list of command line arguments for that program. I want to store each line separately so that I can sort them and ...
0
votes
2answers
37 views

CreateProcess,winapi,error code 3

Here's my code. I always get error 3, what can I do? I tried to replace CreateProcces with CreateProcessA,replace first two param, try to process other program, but it still doesn't work.Thanks. ...
0
votes
1answer
39 views

dynamically creating php files and tables

I'm new to PHP and after writing a couple CMS' I'd like to try something more complex. What I want to do is create a script whereby I can create a whole user area with functions, classes and forms ...
0
votes
1answer
47 views

Process Builder cannot find the path specified, using AppData folder

This is probably a simple question, I'm fairly new to Java but in my search I haven't been able to figure out why exactly this code doesn't work. String execLoc = ...
0
votes
0answers
45 views

Need help, starting an exe from a windows service

I have a problem using windows service and createprocess (my app isnt a console app but a MFC app). When i run my exe on the service, the process is running on background but the IHM isn't displayed. ...
0
votes
0answers
15 views

Open an exe as backgroun process

I am using following code which causes the focus to be shifted from current working window to the created process. I want the new created process to be executed without getting focus in background. ...
0
votes
1answer
37 views

How to add different versions of the same object?

I am currently trying to add a series of objects to an arrayList each time an event happens, I use the following method : public void nativeMousePressed(NativeMouseEvent e) { if(record == true) ...
0
votes
1answer
40 views

Windows Service not launching as local session

Am working on Creating windows service and launching an exe application through this, from this link i have created a windows service Windows Service But when i create a setup and deployment and ...
2
votes
1answer
55 views

How do I pass an std::string environment block to CreateProcess?

I'm currently trying to use CreateProcess with the Path, Arguments and Environment Variables. My variables are stored in strings. In the below example filePath and cmdArgs work fine, but I cannot ...
0
votes
2answers
57 views

CreateProcess() in a client server application in windows

I am working on a UDP client-server application where one server is supposed to handle 40 clients which could all be logged on at once. Now in UNIX, such issues are resolved by using the fork ...
0
votes
0answers
49 views

between createprocess and create two pipe communication's confusion

The description almost so, I want to call CreateProcess in the main below to create a ffplay.exe.The STARTUPINFO struct is: STARTUPINFO siStartInfo; ZeroMemory( &siStartInfo, sizeof(STARTUPINFO) ...
0
votes
0answers
142 views

Gcc error only when using makefile (CreateProcess: No such file or directory)

I am having trouble compiling using make in windows 7 with gcc and the gsl library. It occurs only when using make (when I type the compilation commands manually into the cmd line, it compiles ...
1
vote
1answer
90 views

CreateProcess @ Unhandled exception when not using directly a string

I'm trying to use CreateProcess to open a game .exe but I'm having the unhandled exception error. I already figured out the problem and the solution, but I need to get the path for the second ...
0
votes
1answer
100 views

Invoking nvcc.exe using CreateProcess

We currently use a mock JIT compiler for CUDA, where nvcc.exe is invoked on some files and the resulting .ptx files are generated. bool executeWindowsProcess(ofstream &logFF) { STARTUPINFO ...
0
votes
2answers
277 views

error C3861: '_tcsdup': identifier not found

This is my first time and I'd like to make a parallel process using the windows CreateProcess function. Based on the example at MSDN I created a LPTSTR "(non-const) TCHAR string" command line argument ...
0
votes
3answers
100 views

How to send a custom message from user application to SYSTEM app?

I have created a windows service to run my custom application with createProcessAsUser. The result is one application running with SYSTEM user in session Id 0 as I expect. My problem is, I need to ...
1
vote
1answer
183 views

passing file path as argument in shellexecute

i want my other c++ program to be run from another file so i am using shell execute. Mu code is : #pragma comment(lib,"shell32.lib") #include "windows.h" #include<Shellapi.h> ...
1
vote
0answers
42 views

WPF application is not show on front after using createprocess to launch

I used win32 API CreateProcess im MFC project to launch WPF application, it can success. But the question is that WPF application is not show on front of windows. If launched win32 execute program, it ...
0
votes
0answers
36 views

Please suggest library that will do CreateProcess and get output for me reliably

I know if you type "CreateProccess get output" you get pages of questions/answers, but this is still an issue. (Thank's to MS?) My question is different because I do not want to see the code, I would ...
0
votes
1answer
49 views

CreateProcessAsUser: how to open file with default application?

I am using CreateProcessAsUser in C++ code to open an application impersonating a user. This works well, if an executable is given but fails with a non-executable file. What is the simplest way to ...
3
votes
2answers
206 views

Get the PID of the process started by CreateProcess()

Let me start off by stating that I'm not from C background. I'm a PHP developer. So everything that I've coded so far is by taking bits and pieces from other examples and fine tuning them to meet my ...
0
votes
1answer
150 views

CreateProcess does not create additional console windows under Windows 7?

I am trying to run a process using CreateProcess(...) and run it independently in a seperate console window. I can achieve this using the system("...") function, but I prefer CreateProcess since it ...
0
votes
2answers
76 views

Closing sub-processes spawned by CreateProcess

I'm working with CreateProcess to run a process/application of mine. The purpose is to run it, do something, wait for some indication, and close it (Using TerminateProcess). What I noticed is that ...
-1
votes
1answer
82 views

Execute a mapped file on Windows

Hello fellow developers, I'm trying to map an executable binary file on Windows and then to execute the mapped file. So far, I managed the mapping using CreateFileMapping and MapViewOfFile. These ...
1
vote
2answers
49 views

Do I need to close handles to standard I/O after CreateProcess?

I use the following STARTUPINFO structure in my call to CreateProcess. Do I need to call CloseHandle on hStdError and hStdInput after the process ends? startupInfo.cb = sizeof(startupInfo); ...
0
votes
0answers
87 views

create process as logged in user from admin privilaged application

I have an application running as admin. I need to create a process as a logged in user on this computer. System.Diagnostics.Process.Start(url); creates a process as admin. I've tried to use ...
1
vote
2answers
90 views

TerminateProcess is not working when There is more than one process open

I am using CreateProcess to run Adobe Acrobat Reader to display a PDF file. I would like to close that application. I am trying use TerminatePocess to close the application. If only one instance of ...
0
votes
0answers
23 views

Redirect to nowhere (dev/null or NUL) in windows in C/C++ [duplicate]

Possible Duplicate: How to open a “nul” file? I'm using CreateProcess in order to spawn temporary processes. These processes output some prints to stdout and probably stderr. I want to ...
0
votes
0answers
131 views

Run Windows PhotoViewer on image file with spaces in its path

I have a problem with running PhotoViewer on image file with spaces in its path. I'm using C++ function CreateProcess, supplying a command line as its argument. The command line template for that is: ...
0
votes
1answer
116 views

TerminateProcess() doesn't close opened windows straight away

I'm using the CreateProcess API with the CREATE_NEW_CONSOLE option, since I want the app to be opened in a new window. When I call TerminateProcess, it doesn't close the window right away, but rather ...
0
votes
1answer
101 views

createprocess suspended by default [closed]

I have this function inside a dll: int createChildProcess() { STARTUPINFO si; PROCESS_INFORMATION pi; int res; si.cb=sizeof(STARTUPINFO); STARTUPINFO* ptr=&si; ...
0
votes
3answers
207 views

Process.arguments in createprocess?

The following works just fine in process.start situation. private string Path() { RegistryKey Key = Registry.LocalMachine.OpenSubKey("SOFTWARE\\Wizet\\"); RegistryKey ...
0
votes
1answer
201 views

Decrypt EXE on the fly

I have an XXX.EXE which is a result of applying AES to original .EXE I have a host process, which calls CreateProcess on the XXX.EXE There is a decryption method in host process allowing to decrypt ...
0
votes
0answers
84 views

Is there a way to make the Console and SDL to work together?

I am working on a real time simulation for my studies. It is a simple simulation of a line follower robot.The input of the track and displaying the simulation should be on Windows, the simulation ...
1
vote
1answer
65 views

How to capture or prevent “The application failed to initialize properly (0x########). Click OK to terminate the application.”

I have a .net console application that I wrote that is being run in the background with CreateProcess. When we run it from a machine without .net installed it pops a window saying "The application ...
1
vote
0answers
48 views

What is the best way to make a Windows service ask the user for input?

I'm trying to write a program to ask me to input some information periodically, so I've written a service in C to run in the background, I can watch it reporting its okay by refreshing its log file. ...
0
votes
1answer
77 views

forking() and CreateProcess()

Are forking() and CreateProcess(with all required arguments), the same thing for Linux and WinXP, respectively? If they are different, then could someone explain the difference in terms of what ...
2
votes
2answers
760 views

CreateProcess to execute Windows command

I am trying to execute a dos command using CreateProcess function : LPWSTR cmd=(LPWSTR)QString("C:\\windows\\system32\\cmd.exe subst " + DLetter+" \""+mountPath+"\"").utf16(); ...
0
votes
1answer
135 views

CreateProcess doesn't run application (nc.exe) as it should?

The problem is that when i am open nc.exe from the CMD using the nc syntax as in the above code it works and is connecting to my server. But when i am doing so through my program (using the above ...
1
vote
1answer
116 views

Executing a program from PHP hangs APACHE

Hello and thank you in advance for your interest. During the past two weeks I've been struggling with something that is driving me nuts. I have APACHE (2.2.22) and PHP (5.4.3) installed on my Windows ...
0
votes
1answer
182 views

CreateProcess C++ Doesn't Create Any Process

I'm a newbie in c++ and trying to use debug apis, but i can't even start. Because i couldn't run any exe by CreateProcess api. It doesn't give any compile error, but does return false. Do you have any ...
1
vote
3answers
156 views

Passing arguments to a program using another program

I have created two executables that accept command line arguments. Now, I want to pass arguments to available executables using C++ (executing on Windows). What is the best way of doing it? I have ...
0
votes
0answers
24 views

Where should the child process code be located

I am working on creating a child process(es) within the parent process by using C in microsoft visual studio, but I do not know where i should locate the child process or how to call in editor ...
0
votes
0answers
106 views

powerpoint VBA CreateProces does not get focus

I want to run different executables controlled by powerpoint 2003/2007/2010 I have a routine exec that offers the path and starts the application correctly(See Below). the PPT runs ...
1
vote
2answers
236 views

How can I make a simple launcher app?

I want to make a simple launcher for an application (like, using CreateProcess), that I can use as a HelloWorld app and customize the app tile appearance -- sort of killing two birds at the same time: ...
3
votes
1answer
197 views

Client/Server applications communication over the command line with threads c++

I have two applications one is a client the other is a server. The server launches the client as a sub thread. The client then outputs its commands via its standard out. The server waits for a command ...
0
votes
0answers
122 views

How to create new keychain programmatically in OS X

I am very new to OSX programming. So please bare with me. I am creating an application which displays many usernames. each username has a password. I want to store passwords for each username in ...
0
votes
0answers
120 views

I am unable to use pipe handles in following code during CreatePipe and CreateProcess call

I dont know where I am going wrong?? I am trying to write on one end of file and read from other end using Anonymous Pipe . I have two files, main.c in which I am creating processes and 2nd file ...
1
vote
2answers
225 views

Create Process by passing a Function in Visual C++

I am a newbie in C++ working on a module which needs parallel processing. I need to create 2 or 3 process by passing different functions (which perform some specific task) to each process created ...
2
votes
0answers
52 views

Proper format to invoke Process Task in DTS 2000

now Im creating a dts 2000 package in SQL 2005 IDE. Im learning to use an "Execute Process Task". So, I want to create a new folder using this tool. These are my steps: Click "Execute Process Task" ...

1 2 3 4 5