Tagged Questions

1
vote
2answers
2k views

Mac OS X: Getting detailed process information (specifically its launch arguments) for arbitrary running applications using its PID

I am trying to detect when particular applications are launched. Currently I am using NSWorkspace, registering for the "did launch application" notification. I also use the runningApplications method ...
1
vote
1answer
203 views

viewing c# console app arguments

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 ...
1
vote
3answers
580 views

Forwarding command line arguments to a process in Python

I'm using a crude IDE (Microchip MPLAB) with C30 toolchain on Windows XP. The C compiler has a very noisy output that I'm unable to control, and it's very hard to spot actual warnings and errors in ...
0
votes
0answers
59 views

Listview item long path/filename error with cmd

I using Listview to add files then process them in cmd app. But with long path the cmd don't do anything: SaveFileDialog sfd = new SaveFileDialog(); sfd.Filter = "*.txt;"; ...
0
votes
0answers
284 views

get exact argument list of a process using ps

I am writing a session saver for GNU Screen. It needs to get every process argument list. Linux has /proc/PID/cmdline which separates arguments with \0. Solaris has pargs. But I am looking for a more ...
0
votes
1answer
430 views

ShellEx: Starting Excel minimized or hidden

Using the following code I can run Excel from within C#: System.Diagnostics.Process p = new System.Diagnostics.Process(); p.StartInfo.FileName = "cmd.exe"; p.Start(); Can I make Excel start hidden ...