Author~ZerOcOoL~

Hello Visitors,
Contact me for any queries regarding this blog--->>
Add to Technorati Favorites

Showing posts with label New Tips and Tricks. Show all posts




Why would you want to force your computer to display a Blue Screen of Death?

If Ctrl-Alt-Del doesn’t work (known to geeks the world over as the three-finger salute), then a forced BSOD is your last resort. It’s kind of like pulling the plug, but slightly less harsh and much more likely to impress your nerd friends.

Steps :

  1. Open the Registry Editor. ( Start >> Run >> type "regedit" >> Press Enter )
  2. Naviaget to HKEY_LOCAL_MACHINE, then SYSTEM, then CurrentControlSet, then Services, then i8042prt, then Parameters (for the geeks, HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\i8042prt\Parameters).
  3. Click Edit -> New -> DWORD Value or DWORD (32-bit) Value.
  4. Call the new value (without the quotes) "CrashOnCtrlScroll".
  5. Change the value to 1 (0x00000001)
  6. Close the Registry Editor and restart your computer.
  7. Hold down the right Control key then press the Scroll Lock key twice, then a blue screen should pop up.
An alternate way to make Vista crash would be to simply use

Following the steps below you can have the 'SafeBoot' option at the boot menu of Windows XP :




1. Open a command prompt

2. Copy the current c:\boot.ini to another name (just in case)

3. With your favorite text editor, edit c:\boot.ini

4. Copy then edit the current boot line to another line. For example:

multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Micro soft Windows XP Professional" /fastdetect

might copy and then change to:

multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Micro soft Windows XP Professional Safeboot" /fastdetect

5. Start MSCONFIG

6. Click on the BOOT.INI tab

7. Highlight the second line with the additional name of Safeboot

8. Check the /SAFEBOOT box with option you want

Play Pranks On Your Friends And Scare Them!!!

Prank 1:----Ask Them To visit This Website---

http://funnypage.vndv.com/index.html

Its just a site with 150 pop ups....waste their time...!!!




------------------------------------------------------------------------------------------------------------



Prank 2:-----Send This File To Them & Ask Them To Run Below File-------

To Download---->>Click Here!

After They Open It Tell Them You Have Full Control Over Their PC......



-----------------------------------------------------------------------------------------------------------



Prank 3:-----Send This File To Them & Ask Them To Run Below File------

To Download------->>Click Here!

When They'll Open It...There CD ROM Will Come Out And will Go in number of times

Note to Stop:-open task manager & in process end this--->>wscript.vbs









In This Example We Are Converting .exe TO .jpeg


1. Firstly, create a new folder and make sure that the options 'show hidden files' is checked and ‘hide extensions for known file types’ is unchecked.
Basically what u need is to see hidden files and see the extension of all your files on

your pc.

2. Paste a copy of your exe file on the new created folder. let's say it's called server.exe
(that's why you need the extension of files showing, cause you need to see it to change it)

3. Now you’re going to rename this server.exe to whatever you want, let’s say for example picture.jpeg

4. Windows is going to warn you if you really want to change this extension from exe to jpeg, click YES.

5. Now create a shortcut of this picture.jpeg in the same folder.

6. Now that you have a shortcut, rename it to whatever you want, for example, me.jpeg.

7. Go to properties (on file me.jpeg) and now you need to do some changes there.

8. First of all delete all the text on field START IN and leave it empty.

9. Then on field TARGET you need to write the path to open the other file (the server renamed picture.jpeg) so
u
have to write this: "C:\WINDOWS\system32\cmd.exe" /c picture.jpeg (note the ")

10. The last field, c picture.jpeg is always the name of the first file. If you called the first file soccer.avi you
gotta write C:\WINDOWS\system32\cmd.exe /c soccer.avi got it?

11. So what you’re doing is when someone clicks on me.jpeg, a cmd will execute the other file picture.jpeg and the
server will run.

12. On that file me.jpeg (shortcut), go to properties and you have an option to change the icon. click that and a
new window will pop up and u have to write this: %SystemRoot%\system32\SHELL32.dll . Then press OK.

13. You can set the properties HIDDEN for the first file (picture.jpeg) if you think it’s better to get a connection
from someone.

14. But don’t forget one thing, these 2 files must always be together in the same folder and to get connected
to someone they must click on the shortcut created not on the first file. So rename the files to whatever you want
considering the person and the knowledge they have on this matter.

15. For me for example I always want the shortcut showing first so can be the first file to be opened.
So I rename the server to picture2.jpeg and the shortcut to picture 1.jpeg. This way the shortcut will show up first.
If you set hidden properties to the server (picture.jpeg) then u don’t have to bother with this detail but I’m warning
you, the hidden file will always show up inside of a zip file or rar.

16. So the best way to send these files together to someone is compress them into zip or rar.

17. inside the RAR or ZIP file you can see the files properties and even after all this work you can see that the
shortcut is recognized like a shortcut but hopefully the person you sent this too doesn’t know that and is going to
open it.

Just Follow The Steps Given Below:-

Click start


Then

click run

type in code:

telnet 193.202.115.241

wait few time n watch

If u want personal chat vid a friend
you don't need to download any yahoo messenger
All you need is your friends IP address and Command Prompt.
Firstly, open Notepad and enter:

@echo off
:A
Cls
echo MESSENGER
set /p n=User:
set /p m=Message:
net send %n% %m%
Pause
Goto A


Now save this as "Messenger.bat". Open the .bat file and in Command
Prompt you should see:
MESSENGER
User:
After "User" type the IP address of the computer you want to contact.
After this, you should see this:
Message:
Now type in the message you wish to send.Before you press "Enter" it should look like this:
MESSENGER
User:27.196.391.193
Message: Hi
Now all you need to do is press "Enter" n start chatting...




Instrcuctions:

*paste the below given code in notepad
*Save as "AnyFileName".vbs
*Run the file
*Enjoy!!!

CODE:

Dim userInput

userInput = InputBox("Type below anything to hear you PC speak it!")

Set Sapi = Wscript.CreateObject("SAPI.SpVoice")

Sapi.speak userInput

Make Your Keyboards Light Blink In Interesting Pattern!!!



Instrcuctions:

*paste any of the two codes(given below) in notepad
*Save as "AnyFileName".vbs
*Run the file
*to stop, launch task manager and then under "Processes" end wscript.exe


Try both the scripts both r different.......enjoy !!!!!!!!!!

For Disco Light-->>CODE 1:

Set wshShell =wscript.CreateObject("WScript.Shell")

do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop


For chain light pattern-->>CODE 2:

Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 200
wshshell.sendkeys "{CAPSLOCK}"
wscript.sleep 100
wshshell.sendkeys "{NUMLOCK}"
wscript.sleep 50
wshshell.sendkeys "{SCROLLLOCK}"
loop

Wanna make your windows look like Mac......

Preview>>>



Download :->Flyakite OSX 3.5

courtsey:- http://osx.portraitofakite.com/

Just follow the steps given below:

1.Download VLC Media Player and install it.




2.Run VLC media player,go to Settings->preferences->Interface->Main interfaces,then click on wxWidgets.Remove the tick on "Taskbar" and put a tick on "Systray icon".


3.Now go to Video->Output Modules->DirectX.On the bottom right put a tick on advanced options check box.You will now see some options.Put a tick on "Enable Wallpaper Mode ".

4.Now,select playlist and put a check or tick on "Repeat current item ".

5.Press the Save button.Now close the Vlc player and run it again(to save the settings permanently).

6.Now play any video you would like to set as Wallpaper.Right click on the video and click on "Wallpaper".The video would be set as your wallpaper!!!!



Since you have checked the option "repeat current item ",the selected video will play on continuously.It will start again when finished.VLC player will remain in your system tray.If you wish to remove the wallpaper simply close the player and you will get back your original wallpaper.



(In case you want to undo all the setting changes and go back to VLC default setting just press the reset all" button......)



It seems to work for me so i thought u people would like it too.......

1. Start Regedit

2. Go to HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \ CurrentVersion \ Policies \ Explorer

3. Add a DWORD and give it a name of NoViewContextMenu

4. Give it a value of 1

5. Reboot

1) Right click on an empty space on your desktop.

2) Go to New=>shortcuts,then type

shutdown -s -t 3600

Here the number represents the number of seconds before shutdown.

3) Click on next

4) Name it shutdown.exe and click on finish.

5) Right click on an empty space on your desktop.

6) Go to New=>shortcuts,then type

shutdown -a

7) Click on next

8) Name it stopshutdown.exe and then click on finsih.

Now you have two exe files , double click on shutdown.exe to start the auto shutdown countdown , double click on stopshutdown.exe to stop the shutdown process.

SHUTDOWN ENEMY'S PC FORCEFULLY READ IT
ok guys EXCELLENT TRICK !!!!!!
with this trick u can make ur OPPONENT'S PC SHUTDOWN.
read CAREFULLLY its very easy and excellent.


SHUTDOWN OPPONENT'S PC FORCEFULLY.

how it runs- you make a shutdown exe and make ur enemy run.

and it happen in 4 EASY STEPS---->>

*************** START ****************


1)OPEN NOTEPAD

2)WRITE SHUTDOWN -S (SHUTDOWN(SPACEBAR)-S)

3)SAVE IT WITH NAME SHUTDOWN.BAT (BAT STANDS FOR BATCH FILE--NEED NOT TO GET INTO THIS CRAP JUST DO AS I ASK)

4)SEND THE SAVED FILE TO UR FRIEND AND ASK HIM TO RUN IT.(VIA ANY MASSENGER(YAHOO,MSN,IRC,EYEBALL,ETC ETC ETC ANYYYYY)OR EMAIL HIM THIS SAVED .BAT FILE.

***************THATS IT FINISHED***************


OK NOW AS SOON AS UR FRIEND OR ENEMY WILL RUN IT HIS PC WILL SHUTDOWN,WITH THE COUNTDOWN STARTING FROM 30 SEC

Welcome To Compu-Ware
IP,country, operating system detecter

Enter your email address:

Delivered by FeedBurner

Followers