Aleksander Bethke
Aleksander Bethke

Reputation: 1479

.NET CLR Performance counters missing

on my x64 Windows 8.1 laptop almost all .NET CLR performance counters are missing.

Any ideas how to fix this?

.NET Counters missing

Upvotes: 17

Views: 14877

Answers (2)

Aleksander Bethke
Aleksander Bethke

Reputation: 1479

lodctr did the trick but the file corperfmonsymbols.ini was in

C:\Windows\Inf.NETFramework

not in the

%WINDIR%\Microsoft.NET\Framework*

directories.

Command lodctr C:\Windows\Inf\.NETFramework\corperfmonsymbols.ini successfully restored .NET CLR counters.

Upvotes: 27

Rahul Tripathi
Rahul Tripathi

Reputation: 172378

You can try to follow these steps which are given by MSDN:

To resolve this problem, follow these steps:

  1. Ensure that the RTM build is installed on the computer through the Microsoft .NET Software Development Kit (SDK) setup, .NET Redist, or Visual Studio .NET.
  2. At a command prompt, type unlodctr .NETFramework.
  3. At a command prompt, type lodctr

    %WINDIR%\Microsoft.NET\Framework\v1.0.3705\CORPerfMonSymbols.ini.

Also check this blog for reference

Upvotes: 4

Related Questions