The provider below was returning stuff a few hours ago when I was testing it. But it stopped returing anything after I rerun it a few hours later, any thoughts?
def some_func():
providers = [etw.ProviderInfo('Microsoft-Windows-Win32k', etw.GUID("{8C416C79-D49B-4F01-A467-E56D3AA8234C}"))]
job = etw.ETW( providers=providers, event_callback=lambda x: print(x))
job.start()
time.sleep(10)
job.stop()