Introduction: Random IP Generator

Code:
***********************************************************
@echo off
title Rndm_IP_Gen v1.0 by The SYNer
color a
cls

:rnd1
set one=%random%
if %one% gtr 255 goto rnd1

:rnd2
set two=%random%
if %two% gtr 255 goto rnd2

:rnd3
set three=%random%
if %three% gtr 255 goto rnd3

:rnd4
set four=%random%
if %four% gtr 255 goto rnd4
echo %one%.%two%.%three%.%four%
pause >nul
goto :rnd1
***********************************************************

Copy everything between the *'s and paste into notepad and save as "Rndm_IP_Gen.bat"

Step 1: How to Use It

Its simple. Just open the file and press enter. The program will spit out a bunch of random ip adresses, but you will need to ping an adress to see if its online.