Blog Posts

Recent posts

Windows - disabling BSTR cache

less than 1 minute read

When checking memory usage it might need to disable BSTR cache to avoid misleading information. Add the following environmental variable to disable BSTR cach...

Performance - Windows application heap usage

less than 1 minute read

The following script will show how to profile the heap memory usage of Windows application with Windows Performance Toolkits 1 2 3 4 5 6 7 8 9 10 11 12 @echo...

C# WCF - communication tracing

less than 1 minute read

In order to diagnostic WCF communication, you can log all WCF activities by using tracing mechanism in .NET application. You can add the following section in...