Tagged Questions
System.Diagnostics is a namespace of the .NET framework. It provides classes that allow you to interact with system processes, event logs, and performance counters.
28
votes
7answers
1k views
Can Stopwatch be used in production code?
I need an accurate timer, and DateTime.Now seems not accurate enough. From the descriptions I read, System.Diagnostics.Stopwatch seems to be exactly what I want.
But I have a phobia. I'm nervous ...
14
votes
6answers
3k 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 to track changes to ...
11
votes
1answer
3k views
Logging and WCF
I have seen many other questions on logging. Best practices. What logging platform is best. Etc. Here are some links from here on SO with very good discussions on the topic:
logging best practices
...
8
votes
4answers
810 views
.net Diagnostics best practices?
We initially didn't use any logging or debug tracing but after spending few weeks to trace down some data corruption we decided to put required Debug.Write and Trace for production and Debug.Assert
...
7
votes
4answers
891 views
System.Diagnostics.Debug namespace vs Other logging solutions (log4net, MS Enterprise Library, etc.)
I'm currently investigating various logging possibilities for .net projects and I can't decide between System.Diagnostics.Debug/Trace features and third party libraries like log4net, MS Enterprise ...
7
votes
2answers
3k 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.WaitForExit();
... ...
6
votes
3answers
433 views
“Gracefully” killing a process
Right now I am using Process.Kill() to kill a process. Is there a way though, instead of just killing it immediately, that I can like send a message to the process instructing it to close so that it ...
6
votes
8answers
3k 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, I see that they ...
5
votes
3answers
688 views
difference between Debugger.Launch to Debugger.Break
what's the difference between
Debugger.Launch();
Debugger.Break();
?
5
votes
4answers
2k views
Problem with System.Diagnosis.TextWriterTraceListener not writing any log to the filesystem
To solve an issue with sending e-mail through a smtp-server where e-mails are not getting sent, I was adviced to enable logging using System.Diagnosis.TextWriterTraceListener to trace the ...
5
votes
1answer
3k views
C# :How do I know when the last OutputDataReceived has arrived
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 data from them ...
4
votes
4answers
137 views
How do I manage an external Windows application in C#?
What is the best way to manage an external windows application in C# (or .NET)?
So far my I've been able to launch a process using System.Diagnostics.Process, however this simply allows me to ...
4
votes
4answers
85 views
What's the advantage of [insert your favorite logging library here] over System.Diagnostics.Trace?
Apologies if I overlooked it but I couldn't immediately find a similar question on SO.
.Net comes with some built-in logging capabilities (essentially, System.Diagnostics.Debug and ...
4
votes
2answers
1k views
When should I use Tracing vs Logger.NET, Enterprise Library, log4net or Ukadc.Diagnostics?
How do I choose between standard tracing, Logger.NET, Enterprise Library, log4net or Ukadc.Diagnostics?
Is there a situation where one is more appropriate than the other? ... what would that be? ...
4
votes
2answers
165 views
C# VS2010 Determine in application whether being debugged
Is there a chance to determine in an C# application whether it is currently being debugged? The idea is to ignore e.g timeouts, or to provide additional information.
Just to make this clear, I am not ...
4
votes
6answers
2k views
Problem launching a System.Diagnostics.Process under Windows 7
I’m trying to launch an application (Operating System, My Application and the application I want to launch are all 32 bits), from .NET 3.51.
The code that launches the Process is used for other ...
4
votes
3answers
550 views
How to determine whether a System.Diagnostics.Process is 32 or 64 bit?
I tried:
process.MainModule.FileName.Contains("x86")
But it threw an exception for a x64 process:
Win32Exception: Only a part of the ReadProcessMemory ou WriteProcessMemory request finished
4
votes
4answers
192 views
Any libraries out there that extend System.Diagnostics.Trace?
Any there any good libraries out there that extend System.Diagnostics.Trace?
Some of the features I am looking for.
Rolling logs
smtp
And "Use log4net" is not an answer. The reason being is that ...
4
votes
3answers
1k views
C#: Redirect Standard Output of a Process that is Already Running
I've been having a hard time getting the output of a "sub-process" (one launched internally by a blackbox process that I'm monitoring via c# System.Diagnostics.Process)
I took the advice given by the ...
4
votes
1answer
772 views
Difference between using Trace and TraceSource
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 about TraceSource the other ...
4
votes
4answers
11k 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 Ultimate Edition :
...
3
votes
2answers
34 views
Encoding issue when capturing console application output in a test
I'm trying to capture output from a console application by running it in a test using System.Diagnostics.Process. I'm having trouble with character encoding. "£" is showing up as "œ" in the test, but ...
3
votes
2answers
43 views
TraceSource across threads doesn't work?
I think I've lost my mind guys.. According to MSDN, TraceSource is thread safe. So I have a simple console app. In it, I declare;
private static readonly TraceSource ActiveTraceSource = new ...
3
votes
2answers
276 views
How to start a IIS process with specific username & password
I'm trying to run an application from our internal website. When I use Process.Start("notepad"); I can see that notepad process started in our web server with default identity mentioned in the app ...
3
votes
1answer
246 views
How to include user friendly timestamp in traces
I am trying to understand the difference between Trace.Write vs Trace.TraceInformation and which one should be used.
I tried to configure traceOutputOptions for timestamp/datetime. I just need an ...
3
votes
1answer
886 views
can't understand .net 2010 tracing and app.config
In my app.config I want to set 3 tracing levels (switches?): verbose, warning and none.
In the debug version of the code, I want the verbose switch to be active, in the release I want warning. In ...
3
votes
1answer
184 views
How to create predictable output with a Lazy<StackFrame>
I'm working on some internal logging framework and for the sake of performance it seems a good idea to lazily get a StackFrame. I want to use this StackFrame to get the first method outside my logging ...
3
votes
4answers
5k views
How to execute process on remote machine, in c#
How can I start a process on a remote computer in c#, say computer name = "someComputer",
using System.Diagnostics.Process class?
I Created a small Console app on that remote computer that just ...
3
votes
3answers
690 views
System.Diaganostics.Process.Id Isn't the Same Process Id Shown in Task Manger. Why?
I'm using c#'s System.Diagnostic.Process object. One of its properties is Id. The Id this produces is not the same as the PID, shown in Windows Task Manager. Why is this?
You see, once this process ...
3
votes
3answers
1k views
C# System.Diagnostics.Process verb issue
I have a Windows Application written in C# VS 2008. The purpose of this application is to convert any file to PDF files. I have found code that works on converting the files however there is a small ...
3
votes
2answers
1k 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 command line.
Should it ...
3
votes
1answer
4k 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 invalid
at ...
2
votes
2answers
134 views
Exception reading process info, via Process.GetProcesses(string), from Windows 7
I'm having trouble with an established production .NET2 service. The service collects process information and log files from various target computers. It runs at 80 sites without issue; mostly on ...
2
votes
1answer
135 views
C# System.Net trace log - only trace one method and ignore others?
I'm using System.Net tracing as described here:
http://ferozedaud.blogspot.com/2009/08/tracing-with-systemnet.html
But that traces every request made with HttpWebRequest. The trace file is huge. I ...
2
votes
3answers
151 views
Is there a way to get a list of processes running on a local virtual machine?
I've got a virtual machine running on Windows 7 called "VirtualXP-12345". I tried using
System.Diagnostics.Process.GetProcesses("VirtualXP-12345")
from the host machine but that doesn't work. ...
2
votes
1answer
437 views
Process.Start() in C# does not work for non-admin users
I am trying to run explorer.exe to open a folder and I am using System.Diagnostics.Process to do that.
It works fine if the application is ran by a user who has admin privileges but fails if the user ...
2
votes
2answers
191 views
Id from Process.Start match sometimes or sometimes not
I'd like to run from C# code ANSYS Fluent exe file
And now for comparison, I'll give two examples
Process fluent = Process.Start(@"C:\Program Files\ANSYS Inc\v130\fluent\ntbin\win64\fluent.exe", ...
2
votes
1answer
73 views
Is there a way to check failed memory with c in windows/linux?
We know eventually everything is transistors which have state 0 and 1.
And the transistor may be damaged sometimes.
Can we test if there's any bit of defect transistors in the memory?
I think it's ...
2
votes
2answers
133 views
Application not running from production web server
I have to run a tool from our internal website. There are few inputs that user will provide from UI and then I want to run the tool with user credential. My code works fine when I run it from my local ...
2
votes
0answers
178 views
Get line numbers of fields without using a c# parser
I would like to get the line #s of a type's fields.
To get the line #'s of the statements in a method it is simple enough:
Type type = typeof(MyClass);
MethodInfo methodInfo = ...
2
votes
1answer
255 views
How to differentiate between Trace and Debug calls in a custom trace listener?
Trace.Listeners and Debug.Listeners are sharing the same internal collection thus I cannot add a trace listener to Trace.Listeners and a debug listener to Debug.Listeners to differentiate between ...
2
votes
3answers
2k views
Open Windows' Calculator in my C# Win Application?
I know I can open Windows Calculator with the following code :
System.Diagnostics.Process.Start("calc");
But I wanna open it in my C# Win Application, i.e : I don't want to open it in the ...
2
votes
3answers
611 views
Running a program with System.Diagnostics.Process.Start causes an Application Error
On my PC DWG files open with:
"C:\Program Files\AutoCAD LT 2007\acadlt.exe" "%1"
If I run this from the command line:
"C:\Program Files\AutoCAD LT 2007\acadlt.exe" "C:\Some Path\Test.dwg"
...
2
votes
2answers
548 views
Running a program with System.Diagnostics.Process.Start causes a MissingMethodException
I'm working on a Compact Framework 2.0 project, and I'm trying to launch a program "B" from within another program "A" using Process.Start. I've done this several times before, but I'm running into ...
2
votes
1answer
87 views
How Can I Find What's Causing My Transaction to Get Promoted?
I have web site which serves web services (a mixture of .asmx and WCF) which is mostly using LINQ to SQL and System.Transactions. Occaisionally we see the transaction get promoted to a distributed ...
2
votes
1answer
744 views
execute a process remotely with System.Diagnostics.Process
I'm working on an ASP.net app
I'm trying to execute a process remotely , using System.Diagnostics.Process class
here's my code:
ProcessStartInfo startInfo = new ...
2
votes
4answers
1k views
FileVersionInfo.GetVersionInfo() incorrect in Console Application
I'm getting some serious weirdness using FileVersionInfo.GetVersionInfo() and was hoping somebody might be able to help.
The basics of the issue is that I am iterating through all the files in a ...
2
votes
2answers
312 views
System.Diaganostics.Process - (When one process internally uses another)
This is a bit involved, but please help. I'm starting to fall way behind due to this problem. God bless you for your attention to this.
I've been using C# System.Diagnostics.Process to monitor the ...
2
votes
3answers
8k 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[] proce = ...
2
votes
3answers
404 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 somebody saves the whole ...