indootoma indootoma Author
Title: Bagaimana cara membuat antivirus dalam 10 detik
Author: indootoma
Rating 5 of 5 Des:
Copy Paste Skrip dibawah ke notepad, pilih ALL FILES, kemudian simpan dengan nama : ANTIVIRUS.BAT echo ****************************** ...


Copy Paste Skrip dibawah ke notepad, pilih ALL FILES, kemudian simpan dengan nama : ANTIVIRUS.BAT

echo ******************************************************* 


echo off
cls
echo ******************************************************* 
echo ********* SCAN Anti Virus sederhana******************** 
echo Tekan Enter untuk mulai atau tekan ctrl +c untuk Cancel
echo ********************************************************
echo.
pause > nul
cls

echo Scan
attrib -r -s -h c:\windows\system32\wscript.exe >nul
ren c:\windows\system32\wscript.exe *.ex_ >nul
attrib -r -s -h c:\windows\system32\cscript.exe >nul
ren c:\windows\system32\cscript.exe *.ex_ >nul
echo.

rem scan *.inf, *.cmd, *.dll, *.vbs Di drive C
echo Reset Attribut file di drive C
attrib -r -s -h c:\*.inf > nul
attrib -r -s -h c:\*.cmd > nul
attrib -r -s -h c:\*.dll > nul
attrib -r -s -h c:\*.vbs > nul

echo.
rem Hapus Virus
rem File Virus
c: > nul
cd\ > nul
del autorun.inf > nul
del *.cmd > nul > nul
del *.vbs > nul > nul
del *.dll > nul > nul

rem scan *.inf, *.cmd, *.dll, *.vbs Di drive F
echo Reset Attribut file di drive F
attrib -r -s -h f:\*.inf > nul
attrib -r -s -h f:\*.cmd > nul
attrib -r -s -h f:\*.dll > nul
attrib -r -s -h f:\*.vbs > nul
attrib -r -s -h f:\*.com > nul
attrib -r -s -h f:\*.sys> nul

echo.
rem Hapus Virus
rem File Virus
f: > nul
cd\ > nul
del autorun.inf > nul
del *.cmd > nul > nul
del *.vbs > nul > nul
del *.dll > nul > nul
del *.sys > nul > nul
del *.com> nul > nul
echo off
cls
echo *************************************************************
echo Scan Selesai bro…!
echo Tekan Enter untuk Keluar
echo *************************************************************
echo.
pause > nul
cls

pause > nul

Advertisement

Next
This is the most recent post.
Previous
Posting Lama

Posting Komentar

 
Top