How to reset performance objects in perfmon?

When I run perfmon and try to add a counter, the displayed performance objects are all numbers. How can I reset these Performance objects?

+6
windows perfmon
source share
2 answers

I found a way to solve the problem:

  • copy C: \ WINDOWS \ system32 \ PerfStringBackup.INI from the PC where perfmon is working correctly
  • cd C: \ WINDOWS \ system32
  • lodctr / R: PerfStringBackup.INI
+6
source share

What does reset mean? What behavior do you expect?

In the System Monitor view, perfmon displays the value (close) of the real-time value of the counter. Since these measurements are always taken, there will be (almost) always a number.

If you want to control the collection of these measurements, you need to create a counter log. Alternatively, you can use the logman command to manage the log from the command line or script.

0
source share

All Articles