[SOLVED] Help! Kernel event tracing 3, 0xC0000022.

vladakv

Distinguished
Jan 26, 2016
236
37
18,640
I noticed on every boot this reports on event viewer:

Session "NetCore" stopped due to the following error: 0xC0000022
Session "RadioMgr" stopped due to the following error: 0xC0000022
Session "Microsoft-Windows-Rdp-Graphics-RdpIdd-Trace" stopped due to the following error: 0xC0000022
Session "LwtNetLog" stopped due to the following error: 0xC0000022
Session "WiFiSession" stopped due to the following error: 0xC0000022
Session "NtfsLog" stopped due to the following error: 0xC0000022

And all of them are reported by kernel event tracing, No. 3 with error code 0xC0000022.

What causing this errors and is it dangerous? How to stop them?
 
Solution
0xC0000022 = STATUS_ACCESS_DENIED.

some software does not have proper privilege to access something.

pretty common issue most people would just ignore it unless it was directly related to some problem they had. most likely just poorly tested software setup. IE works when if the app has admin rights generates a error if the app has user rights.

make sure you have the microsoft updates to .net also
assuming netcore refers to .net
0xC0000022 = STATUS_ACCESS_DENIED.

some software does not have proper privilege to access something.

pretty common issue most people would just ignore it unless it was directly related to some problem they had. most likely just poorly tested software setup. IE works when if the app has admin rights generates a error if the app has user rights.

make sure you have the microsoft updates to .net also
assuming netcore refers to .net
 
Last edited:
  • Like
Reactions: vladakv
Solution