Reputation: 1479
on my x64 Windows 8.1 laptop almost all .NET CLR performance counters are missing.
Any ideas how to fix this?
Upvotes: 17
Views: 14877
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
Reputation: 172378
You can try to follow these steps which are given by MSDN:
To resolve this problem, follow these steps:
- 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.
- At a command prompt, type unlodctr .NETFramework.
At a command prompt, type lodctr
%WINDIR%\Microsoft.NET\Framework\v1.0.3705\CORPerfMonSymbols.ini.
Also check this blog for reference
Upvotes: 4