When I launch perfmon and try to add a counter, the displayed performance objects are all numbers. How can I reset these Performance objects?
Asked
Active
Viewed 1.6k times
2 Answers
6
I found a way to solve the problem:
- copy C:\WINDOWS\system32\PerfStringBackup.INI from a PC where perfmon works correctly
- cd C:\WINDOWS\system32
- lodctr /R:PerfStringBackup.INI

sthiers
- 3,489
- 5
- 34
- 47
-
Glad you found a solution :) Any idea what corrupted the perfmon strings to begin with? – Patrick Cuff Oct 28 '08 at 13:21
-
So you used lodctr /s:PerfStringBackup.INI on the working machine to generate the file? – JeffH Mar 25 '09 at 20:18
-
JeffH, Actually no (may be I should have?). The file was already present. – sthiers Apr 09 '09 at 15:09
0
What do you mean my "reset"? What's the behavior you're expecting?
The perfmon "System Monitor" view shows the (near) real time value of the counter. Since these measurements are always being taken there will (almost) always be a number there.
If you want to be able to control the collection of these measurements, you need to create a Counter Log. Additionally, you can use the logman command to manage the log from the command line or a script.

Patrick Cuff
- 28,540
- 12
- 67
- 94
-
I mean the performance objects ("Paging File", "Process", ".NET CLR Data", etc.) are all replaced by numbers in the combo "Performance objects"). Hence I'd like to go back to a more "normal" situation – sthiers Oct 28 '08 at 10:59