process

Kill Running PHP Script via Process ID?

Hello all, I make lots of GET requests to several PHP scripts via AJAX. I want to ask for implementation advice on how to kill a PHP script that is currently running (in the background). Is there some way to get the PHP scripts process ID when it runs and then I can probably kill that process via shell/cmd etc? Is there a better way? ...

viewing c# console app arguments

Hi, I have a console app (written in c#) that is passed various arguments from the command line by an external application (an InstallShield exe). Without adding code into the console app or InstallShield exe to log the value of arguments is there any way to see the value of the arguments passed to the console app? (perhaps via some so...

How to get a list of all processes including DLLs they use using Process Monitor?

Ctrl-A allows to save a report only for a single executable. Thanks ...

Launching a process and waiting for a condition in Groovy or Java

I need to write a Groovy script which launches a process, reads the processes out & err streams, and wait for a particular line of text to be outputted. The wait should not be indefinite, but should time out after a while. This is what I came up with. Is there a better way? def proc = "groovy test.groovy".execute(null, new File(".")) d...

c# process give controls back to parent process question

Hi: I have a window form application written in c# lauch perl script. Everything is working except one problem. When the perl script run, it runs as a process launch by c# application. There are some delays I put in the perl script to wait for messages from socket interface. Because of those delays, when c# application runs the scrip...

Where is the MSDN documentation on multi-process window ownership for win32? (chrome uses this)

where is the MSDN documentation that describes how multiple processes can control and own other windows in other processes like Google chrome? ...

BlackBerry - Get current Process ID

Hi all, I read Blackberry - How to get the background application process id but I'm not sure I understand it correctly. The following code gets the foreground process id; ApplicationManager.getApplicationManager().getForegroundProcessId() I have two processes which execute the same piece of code to make a connection, I want to log t...

Processing output from cmdline via a Python script

I'm trying to use the subprocess module with Python 2.6 in order to run a command and get its output. The command is typically ran like this: /usr/local/sbin/kamctl fifo profile_get_size myprofile | awk -F ':: ' '{print $2}' What's the best way to use the subprocess module in my script to execute that command with those arguments and ...

ignore_user_abort and redirect in php?

Hi I have a very similar setup to the person here: http://stackoverflow.com/questions/265073/php-background-processes i.e a very long script that takes up to 10 minutes. However, I need the person who calls the script redirected back to the homepage while the script works. In other words, I need the user experience to be something like ...

How to redirect to page in asp.net?

Hello, i am using one swf file.on click i have some background process.after finish the process i want to redirect to particular page.but its not working.what should i do to redirect to page.i am using asp.net ? reply me soon Thanking You Samir ...

Stages in the application development process

I've heard terms like "deployment" and "production" applied to the development process. What are the usual stages and what do they involve ? ...

How to execute an application from windows service

I have window XP 2003 server, which is placed in a room where no one can enter to logon it. for monitoring some applications I created a console application myServer.exe, which dont have any UI, I want that this application (e.g., myServer.exe) start automatically as window bootup (e.g., before window logon) and I need to do this work...

Processes timing

How to calculate the total execution time of each application Win (process) with the group on day. For example: the process - notepad.exe - 10 minutes today (in total) ...

Windows: add security restrictions to current process?

I'm writing a web service (mostly in .NET, but there's some unmanaged code, too). I'm trying to avoid adding any vulnerabilities (obviously...), but it's alwyas possible (esp. since there's some unmanaged code, both by own & libraries, to which data from files/network is passed). UAC + DEP helps, but you never know. So I was wondering if...

process pipeline in c#

Hi: I have a loop that spawn new process to run some ".exe" files. And I capture the output of those ".exe" files to my textbox. In order to capture the outputs right away, I can't use process.waitforexit() method. The problem I have right now is if the previous process took a long time to run, a second process will run regardless if t...

Is there an easy method of process mapping a complex SSIS package so I can print it out?

I have taken ownership of a very complex SSIS package with multiple files and routes. Is there an easy method of process mapping the whole process automagically so I can print it out and understand it? Edit: Added a screenshot of an example SSIS package that I need to map. Cheers, Ian. ...

[Win32 API] Can I Get Notified When Some Process Starts?

I need to know (preferably with the least latency) when foo.exe is launched. Right now, I have a thread that sits in a light loop (~10 Hz) and walks the process tree looking foo.exe. This is less than elegant and I was wondering whether I could register with some part of the Windows API to get a callback when any process starts. If n...

Kanban as a Software Development Process in Practice

Has anyone used the kanban method for software development management? I am evaluating kanban as a technique and would be curious to hear from anyone who has actually applied it in practice as to how effective it is. I've seen questions like: is-anyone-using-kanban, kanban-vs-scrum, and apply-kanban-in-an-agile-team but they don't addre...

Code Review Documentation in Agile Projects

Hi, The organization I work with, a large Indian outsourcing company, enforces documentation of code review comments. The rationale is that this gives the team insight into the quality of code development and also understanding of the patterns of the problems encountered. This is checked during the regular project audits that we have. ...

C# System.Diagnostics.Process.Start() parameters

Anyone know where a computer keeps what parameters it can accept through this function? For example, I'd like to know what I can send to Winword.exe (Microsoft Word). Or is there an online list of what programs work here? ...