Skip to main content

How To Create a Antivirus with notepad?

The main functioning of Antivirus is to detect and remove harmful or unwanted files which may slowdown your computer and windows. But if you don’t have enough time to download any best antivirus. Then simply use this trick to make your own antivirus.This antivirus scan by using command prompt and delete unwanted files automatically.
computer_virus


Open your Notepad and paste this given code 

@echo off
title Antivirus
echo Antivirus
echo created by your name
:start
IF EXIST virus.bat goto infected
IF NOT EXIST virus.bat goto clean
cd C:\Windows\system32
:infected
echo WARNING VIRUS DETECTED!
del virus.bat
pause
goto start
:clean
echo System secure!
pause
exit

Now save your file with
softwareforfre.bat and select “All files”




Comments

Popular posts from this blog

The Android Best OS Android OREO 8.0 Top 10 AMAZING Features

Welcome Back Guy, I'm here with a new video, in this video I'm going to show you Top 10 Features of Android 8.0 Oreo Don't forget to Subscribe My Channel Which is Guy Perfect & Press the Bell Icon for More Exciting Video Coming Soon!! Like this video And Don't forget to share it with others. Upload by Guy Perfect.The Link is Down below. If you like this post 1+ this

EEPROM (Electrically Erasable Programmable Read-Only Memory)

EEPROM also written E 2 PROM and pronounced "e-e-prom", "double-e prom", "e-squared", or simply "e-prom") stands for E lectrically E rasable P rogrammable R ead- O nly M emory and is a type of non-volatile memory used in computers and other electronic devices to store small amounts of data that must be saved when power is removed, e.g., calibration tables or device configuration. Unlike bytes in most other kinds of non-volatile memory, individual bytes in a traditional EEPROM can be independently read, erased, and re-written. When larger amounts of static data are to be stored (such as in USB flash drives) a specific type of EEPROM such as flash memory is more economical than traditional EEPROM devices. EEPROMs are organized as arrays of floating-gate transistors. An EPROM usually must be removed from the device for erasing and programming, whereas EEPROMs can be programmed and erased in-circuit, by applying special programming sign...