Advertisement
D0cEvil

PowerShell - Download AV Software

Dec 27th, 2022
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PowerShell 1.39 KB | Cybersecurity | 0 0
  1. #Для аварийного удаления антивируса NOD32 x86
  2.  
  3. Invoke-WebRequest "http://download.eset.com/special/avremover/avremover_nt32_enu.exe" -OutFile "E:\tmp\avremover_nt32_enu.exe" -UseBasicParsing
  4.  
  5. #Для аварийного удаления антивируса NOD32 x64
  6.  
  7. Invoke-WebRequest "http://download.eset.com/special/avremover/avremover_nt64_enu.exe" -OutFile "E:\tmp\avremover_nt64_enu.exe" -UseBasicParsing
  8.  
  9. # Утилита Касперского для экспресс-проверки компа на вирусы
  10.  
  11. Invoke-WebRequest "http://devbuilds.kaspersky-labs.com/devbuilds/KVRT/latest/full/KVRT.exe" -OutFile "E:\tmp\KVRT.exe" -UseBasicParsing
  12.  
  13. # Утилита CureIT DrWeb для экспресс-проверки компа на вирусы
  14.  
  15. Invoke-WebRequest "http://terrance.drweb.com/pub/drweb/cureit/setup.exe" -OutFile "E:\tmp\setup.exe" -UseBasicParsing
  16.  
  17. # Антивирусная утилита Зайцева
  18.  
  19. Invoke-WebRequest "http://z-oleg.com/avz4.zip" -OutFile "E:\tmp\avz4.zip" -UseBasicParsing
  20.  
  21. # Диск Eset Live CD ####
  22.  
  23. Invoke-WebRequest "http://esetsupport.ru/eset_sysrescue.iso" -OutFile "E:\tmp\eset_sysrescue.iso" -UseBasicParsing
  24.  
  25. # Диск Kasperskiy Rescue CD 10
  26.  
  27. Invoke-WebRequest "http://rescuedisk.kaspersky-labs.com/rescuedisk/updatable/kav_rescue_10.iso" -OutFile "E:\tmp\kav_rescue_10.iso" -UseBasicParsing
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement