process

Auto kill process in Linux

Hi all, How can I do this task: if I kill a process, that process and other processes will all die ? ...

open website without Process.start

How to open a website URL in browser without of Process.start(...) : System.Diagnostics.Process.Start(@"http://www.google.com"); I can not use Process.Start() in Windows Service , I do not no know why. ...

Why does Eclipse JVM hang when executing external processes?

Hey all, I am writing some simple Scala code to control the lifecycle of a MySQL server (start it, create appropriate tables and users, etc...) on Windows XP. For example, I have a function which starts the mysql daemon in an external shell. The function should exit as soon as mysql has started (it must not wait for it to be finished)...

How to let a C# application finish after if has started a new process ?

Hi, I have an application which generates a .pdf file and open it using myProcess.start(pdfFileName); . This called is called in the event handler of a click event on a button in a Winfom app. Everything works fine, except that if I quit (alt-f4 or using the top-right cross) my application after Acrobat Reader have been started, my app...

How to auto process emails when they arrive?

i have the current scenario: my app generates for each user an valid system email address of form lets say: [email protected] when an user has a problem/question he can send an email from any address to that predefined system email address the app should receive the emails sent by the user and process them(check for spam, insert in db) ...

how to set priority in python

Hi, all, I have to write a python script to repeat the same functions of a perl script. Inside this perl script, there is a very important step setpriority(0,0,10) || fatalError("failed to lower priority\n"); exec(@shellCmdArray) || fatalError("failed to exec()\n"); how can I realize the same effect (lower the priority of the curre...

C# System.Diagnostics.Process: can't launch a 32 bit exe file in 64 bit OS

I have a 32 bit exe file compiled with Turbo Pascal. I need to launch it. It worked well when I had Windows 7 32 bit, but now I'm on Windows 7 64 bit, and I get the following exception: The specified executable is not a valid application for this OS platform. To make sure it works on 32 bit systems, I launched the C# program in a 3...

What happens to open file handles after an execv call? (C++)

Hi, On Linux, I have some C++ code where I want to execv another application. That program outputs some data to the stderr. I therefore redirect the stderr by calling freopen() with stderr as the stream parameter. The thing is, I want to redirect the stderr for another process that is run. Here is the scenario I am working with. I ...

How to start `powercfg.exe -energy` from a .NET app?

When I using (var process = new Process { StartInfo = new ProcessStartInfo { FileName = "powercfg.exe", Arguments = "-energy", RedirectStandardOutput = true, UseShellExecute = false, } }) { process.Start(); process.WaitForExit(); } It outputs: A biblioteca de Diagnóstico de E...

Is there any alternative to Process in .NET for running commands in the command line?

In my previous question I detailed the problem I encountered. One of the solutions is to simulate a user typing the command in the prompt. I don't know how to do it in .NET, since the usual way of doing this is by using System.Diagnostics.Process which causes the error. I wonder if there is any alternative to that class? What are the ...

How do I start a process in C#, but have it run only after all assemblies have been unloaded?

I have a program that spawns another process from within one of the loaded assemblies. This second process goes and grabs an installer for the program that spawned it (confused yet?). This second process just starts the installer at a specific web address: System.Diagnostics.Process.Start(www.mySite.com/myInstaller.exe); The problem i...

Is there a programming language oriented to description of interaction between agents?

I want to create different kinds of processes in which agents interact with each other. I want to describe (define, formalize) processes of interaction between agents using a special language. In other words, I want to provide an environment where agents can interact with each other in a certain way and I want to describe the way of inte...

How to redirect process output to System.String

Hi I am calling Java process from .NET application and I need to redirect console output to System.String to do some later parsing. Please advice. I would appreciate short code example. public bool RunJava(string fileName) { try { ProcessStartInfo psi = new ProcessStartInfo(); psi.CreateNoWindow = true; ...

How to be sure if a processor is 32bits or 64bits ? Are dual core processors 32 or 64 bits ?

Having a Macbook Pro with windows installed thanks to bootcamp, I have several questions: Under windows, I see that processes only use 50% maximum of the CPU charge, is that because the processor is a dual core and because the process is not multi-threaded ? Should I install windows xp version 64 bits instead, to have better performanc...

Research documentation regarding process improvement?

Finding relevant literature is hard which can support the value and benefit with the process improvement. Could be like ITIL, Web service, SOA, Cloud computing, Business change, process change, e-business. I would like to know where I can find good and trustworthy research documentation ...

Block/detect Writememoryprocess

It there a way to detect/block the functions Writememoryprocess on a process in c # ...

changing a process's parent

Is it possible to change a process parent? ex: parent A has Child B can I make the parent of B is the Init process without killing A? ...

How to stop a process programatically

Hi, I would like to ask how can I stop a process programatically using C++? Thanks. ...

How to disable output buffering in Process.StandardOutput

This question has been asked more than once before, but I have not found a satisfactory answer in any of those discussions. I am launching a command-line process that produces a real-time measurement to STDOUT, producing a new result approximately every second. Using System.Diagnostics.Process.StandardOutput results in completely unacc...

help sending command to process using /proc

I have an application which runs as a process on a ubuntu server. This application has command line gui which allows me to type in a command, then press enter and the command runs. I am able to script the determination of the process id. I then script the following to send it a command: # echo "command" > /proc/<PROCESSID>/fd/0 I have...