does anyone know some generic computer or/and application diagnostic tools for .NET applications?
For example a applications doesn’t start on the computer of a customer. He can run the diagnostics tool which does some simple checks like:
- Which .NET Framework Versions are installed?
- Is the installed .NET Framework version valid (or maybe brocken)?
- …
Never seen something like this for .NET specific applications.
There’s no single tool that I know of, but here’s a handful of ones that I’ve used:
.config(so it works well for debugging release code in a production environment). DebugView lets you observe traces live; there’s another tool called the Service Trace Viewer Tool that takes the same traces from an XML file and displays them all pretty (it says it’s for WCF, but it can be used with any XML trace file).