Reputation: 4261
How can I trace a system responsiveness and application resource usage issue on a remote computer? I deployed my application(written using unmanaged c++ code) on my client's computer running Windows XP sp3 pro, but its running very slowly and I want to diagnose it since it runs well on my Windows 7 machine. How can i fo it remotely and if thats too difficult how can i do it onsite?
Upvotes: 0
Views: 546
Reputation: 81700
You need to find the bottleneck.
Usually it is either a CPU, disk or memory bottleneck. You can find out this by using perfmon or sysinternals tools such as filemon,diskmon, procmon ... These can be left running to gather and store data, although there could be some performance implications.
After you find the bottleneck, you need to see if it is due to anything you are doing or just the machine does not have enough resources ...
There are some profiling tools as well which come with VS and you can use to isolate the problem.
Upvotes: 1