我最近开始在 Windows Server 2012 事件应用程序日志中看到以下错误,可能是在安装了一些 Windows 更新之后。
Log Name: Application
Source: Microsoft-Windows-Perflib
Date: 2018/11/11 14:02:21
Event ID: 1008
Task Category: None
Level: Error
Keyword: Classic
Explanation:
The Open Procedure for service Remote Access in DLL "C:Windows\System32\rasctrs.dll" failed.
Performance data for this service will not be available.
The first four bytes (DWORD) of the Data section contains the error code
Event XML:
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="Microsoft-Windows-Perflib" Guid="{13B197BD-7CEE-4B4E-8DD0-59314CE374CE}" EventSourceName="Perflib" />
<EventID Qualifiers="49152">1008</EventID>
<Version>0</Version>
<Level>2</Level>
<Task>0</Task>
<Opcode>0</Opcode>
<Keywords>0x80000000000000</Keywords>
<TimeCreated SystemTime="2018-11-11T05:02:21.000000000Z" />
<EventRecordID>35760</EventRecordID>
<Correlation />
<Execution ProcessID="0" ThreadID="0" />
<Channel>Application</Channel>
<Computer>COMP1.TEST.LOCAL</Computer>
<Security />
</System>
<UserData>
<EventXML xmlns="Perflib">
<param1>RemoteAccess</param1>
<param2>C:\Windows\System32\rasctrs.dll</param2>
<binaryDataSize>8</binaryDataSize>
<binaryData>0200000000000000</binaryData>
</EventXML>
</UserData>
</Event>
BITS(bitsperf.dll)服务也存在类似的错误。
我想摆脱这个错误,并尝试输入以下命令(在其他论坛和网站中经常提到)。但是,它们似乎没有任何效果。
C:\Windows\system32\lodctr.exe /R
C:\Windows\SysWOW64\lodctr.exe /R
C:\Windows\System32\wbem\winmgmt.exe /RESYNCPERF
C:\Windows\SysWOW64\wbem\winmgmt.exe /RESYNCPERF
lodctr /T:TermService
在注册表中,我还检查了 HKLM\SYSTEM\CurrentControlSet\Services\ 中的读取权限,但它们与其他服务相同。
我还看到有人建议人们禁用上述服务的性能计数器。但我觉得这并没有真正解决错误,反而隐藏了错误?
我还应该提到,服务器处于封闭环境中(没有互联网访问)。
我还能做些什么来消除这个错误?
答案1
对于那些正在寻找如何正确解决 BITS 性能计数器错误 1008 而无需重建所有内容(如上所示)的人,我们可以这样做(在管理员命令提示符中):
FOR /R C:\Windows\INF\bits\ %I IN (*bitsctrs.ini) DO lodctr /r %I