-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDisable Event Trace Sessions.bat
More file actions
56 lines (54 loc) · 1.29 KB
/
Copy pathDisable Event Trace Sessions.bat
File metadata and controls
56 lines (54 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
@echo off
chcp 65001 >nul
for %%X in (
"NT Kernel Logger"
"Phetrundownlogger"
"Phetkernellogger"
"UserNotPresentTraceSession"
"UBPM"
"Msdtc_Trace_Session"
"Eventlog-Security"
"EventLog-Application"
"EventLog-System"
"LwtNetLog"
"NetCore"
"NTFSLog"
"RadioMgr"
"WiFiSession"
"Steam Event Tracing"
"UpdateSessionOrchestration"
"MoUxCoreWorker"
"Scm"
"Audio"
"SqmLogger"
"ReadyBoot"
"WdiContextLog"
"AitEventLog"
"DiagLog"
"Circular Kernel Context Logger"
"Msmppssession7"
"Wfp-Diag"
"Energy-Trace"
"UmStartup"
"COM"
"LogonUILog"
"MpWppTracing-12312021-191912-00000003-ffffffff"
"Microsoft-Windows-Rdp-Graphics-RdpIdd-Trace Trace"
"Microsoft-Windows-Rdp-Graphics-RdpIdd-Trace"
"SHS-07092022-024750-7-3f"
"MpWppTracing-20220709-024352-00000003-ffffffff"
"Diagtrack-Listener"
"Admin_PS_Provider"
"RzPresentMon"
"WindowsUpdate_trace_log"
"NetCfgTrace"
"SleepStudyTraceSession"
"NVIDIA-NVTOPPS-FILTER"
"NVIDIA-NVTOPPS-NOCAT"
"{8BDB50E7-A293-A22A-0B73-0128D509289E}"
) do (
start "" /b cmd /c ^
"logman stop %%X -ets >nul 2>&1 && echo [OK] Session %%X stopped."
)
timeout /t 2 /nobreak
exit