Find out if Windows Defender disk scan is running

后端 未结 2 1387
生来不讨喜
生来不讨喜 2021-01-22 16:52

The Windows Defender disk scan takes a lot of performance from the system. Is there a way for a C# application to find out if the disk scan is currently running?

2条回答
  •  时光取名叫无心
    2021-01-22 17:00

    Example using Internet Explorer:

    Process[] ProcInfo = System.Diagnostics.Process.GetProcessesByName("iexplore");
    

提交回复
热议问题