0
votes
0answers
32 views
Event Logging IPAddress does not always resolve
Hey Stack Overflow,
I am hooking the Security event log with System.Diagnostics.Eventing.Reader.EventLogWatcher class, and I am watching Event ID 4625 on a 2008 server box, for in …
2
votes
2answers
65 views
Is my process waiting for input?
I am using the Process class to run an exe.
The exe is a 3rd party console application that I do not control.
I wish to know whether the process is waiting for input on the comma …
3
votes
6answers
123 views
System.Diagnostics.Debug.WriteLine in production code
I should probably know this already, but I'm not sure and I don't see it documented.
I use System.Diagnostics.Debug.WriteLine quite often during the development process to be able …
4
votes
7answers
732 views
How can I programmatically limit my program’s CPU usage to below 70%?
Of late, I'm becoming more health oriented when constructing my program, I have observed that most of programs take 2 or 3 minutes to execute and when I check on the task scheduler …
3
votes
3answers
1k views
C# :How do I know when the last OutputDataReceived has arrived
Hello,
I have a System.Diagnostics.Process object in a program targetted at the .Net framework 3.5
I have redirected both StandardOutput and StandardError pipes and I'm recieving …
0
votes
1answer
170 views
How to get the output of a System.Diagnostics.Process?
I run ffmpeg like this:
System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo = new System.Diagnostics.ProcessStartInfo(ffmpegPath, myParams);
p.Start();
p. …
0
votes
0answers
32 views
performance counters and their base link
with some performance counters they are compriseed of 2 counters the actual counter and a "base" counter used for calculations.
The question is, in .net, is there any easy way to …
0
votes
1answer
59 views
Autorun a CD from Process.Start
What is the closest way to emulate autorunning a CD (or other media, I guess) using Process.Start and ProcessStartInfo?
I've tried obvious things like:
// Just opens the folder
P …
0
votes
2answers
240 views
How to get trace output added to context.response in httphandler?
I've enabled trace pageoutput="true" in my web.config and I like the easy way it provides of seeing all this stuff at the bottom of the page.
I'd like to get the same output from …
2
votes
1answer
133 views
Difference between using Trace and TraceSource
Hi,
Anyone knows the difference between System.Diagnostic.Trace and System.Diagnostic.TraceSource?
I've been using Trace for most of my projects and I just happen to found out ab …
0
votes
1answer
318 views
Process.WaitForExit() causes a NullReferenceException
The following code causes a NullReferenceException
tStartParameter = String.Format(tStartParameter, tTo, tSubject)
tProcess = Process.Start(New ProcessStartInfo(tStartParameter) _ …
0
votes
3answers
1k views
Check if a process is running on a remote system using C#
I am trying to check if a process is running on a remote system. I am using the following code:
string procSearc = "notepad";
string remoteSystem = "remoteSystemName";
Process[] …
1
vote
3answers
300 views
How do you run a program you don’t know where the arguments start?
The subject doesn't say much cause it is not easy to question in one line.
I have to execute a few programs which I read from the registry. I have to read from a field where somebo …
1
vote
1answer
742 views
.NET Process Start Process Error using credentials (The handle is invalid)
I have an Windows Form application that supplies the User Name, Domain, and Password to the StartInfo, and it throws this:
System.ComponentModel.Win32Exception: The handle is inva …
2
votes
2answers
2k views
How to translate MS Windows OS version numbers into product names in .NET?
How to translate MS Windows OS version numbers into product names?
For example, in .NET the following two properties could be used to work out that the product is MS Windows Vista …
