Deleting Custom Event Log Source Without Using Code

后端 未结 4 643
半阙折子戏
半阙折子戏 2020-12-23 16:41

I have an application that has created a number of custom event log sources to help filter its output. How can I delete the custom sources from the machine WITHOUT writing a

4条回答
  •  执笔经年
    2020-12-23 17:10

    What about using Powershell?

    Remove-EventLog -LogName "Custom log name"
    
    Remove-EventLog -Source "Custom source name"
    

提交回复
热议问题