Advertisement
shaikafroz1123

Untitled

Jun 20th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. 🔰How To Create Your Own Antivirus Using Notepad 🔰
  2.  
  3. By - @I_MAndrew
  4.  
  5. {Copy with credit😡}
  6.  
  7. 1. Open notepad
  8.  
  9. 2. type in the following @echo off
  10.  
  11. color cb
  12. title Antivirus
  13. cls
  14. echo ===============
  15. echo [ Batch-Scanner]
  16. echo ===============
  17. echo If There is no message ,You are protected.
  18. set /p a=Enter a batch file to scan:
  19. for /f %%x in (
  20. ‘findstr /i /m “virus r.i.p byebye ” %a%.bat’
  21. ) do (
  22. if /i %%x equ %a%.bat (
  23. for /f %%z in (
  24. ‘findstr /i /b /m “tskill del copy shutdown ipconfig ren reg” %a%.bat’
  25. ) do (
  26. if /i %%z equ %a%.bat (
  27. cls
  28. echo Virus Detected!!
  29. del %a%.bat
  30. echo %a%.bat was deleted….
  31. pause >nul
  32. )
  33. )
  34. )
  35. )
  36. pause >nul
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement