How to make Windows XP genuine

1. Open NotePad
2. Copy all the following code into the NotePad:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion]
"CurrentBuild"="1.511.1 () (Obsolete data - do not use)"
"ProductId"="55274-640-7450093-23464"
"DigitalProductId"=hex:a4,00,00,00,03,00,00,00,35,35,32,37,34,2d,36,34,30,2d,\
37,34,35,30,30,39,33,2d,32,33,34,36,34,00,2e,00,00,00,41,32,32,2d,30,30,30,\
30,31,00,00,00,00,00,00,00,62,fc,61,4c,e0,26,33,16,05,d3,54,e7,a0,de,00,00,\
00,00,00,00,49,36,c2,49,20,47,0c,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,33,33,35,30,30,00,00,00,00,00,00,00,65,10,\
00,00,74,99,dd,b0,f7,07,00,00,98,10,00,00,00,00,00,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,c4,ae,d6,1c
"LicenseInfo"=hex:e7,77,18,19,f8,08,fc,7d,e8,f0,df,12,6e,46,cb,3f,ad,b2,dd,b9,\
15,18,16,c0,bc,c3,6a,7d,4a,80,8b,31,13,37,5a,78,a2,06,c8,6b,b9,d9,dd,cc,6a,\
9c,c5,9b,77,aa,07,8d,56,6a,7c,e4

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\WPAEvents]
"OOBETimer"=hex:ff,d5,71,d6,8b,6a,8d,6f,d5,33,93,fd

3. On left side of Save Dialogue box, click on "DESKTOP"
4. On bottom of Save Dialogue box, find something written "text Documents (txt)", click on it and click All Files.
5. Type the file Name as WIN.REG
6. Close notepad and open desktop
7. Double click on file, Win, thats now on your desktop. [it will have a green broken cuboid icon]
8. Click Yes and then Click OK.

IT WILL WORK NO CHANCE OF VIRUS OR ANYTHING AND MICROSOFT IS LAME!
Also works on SP3 and that PE editions, who didnt fail validation a year back, but now do...

send fake sms to your friends

Let us get into the method to send fake SMS to your friends:
1. Go to SMSGlobal site and register for an account.
SMSGlobal allows you to send 25 SMS by default. If you want to send 100 more SMS, enter “WPRESS” (without quotes) in “Promo code” field. Thus, using this promo code, you can send a total of 125 SMS.
Note: You don’t have to fill and “Affiliate code” field. Leave it blank.
2. You will get a text message informing you about the password. Use this password to login to your account.
3. Hit on “Send SMS to Number” to see:


4. Enter the details as follows:
Send SMS To: Your friend’s number whom you want to send fake SMS.
Sender ID From: The number from whom the SMS will appear to be sent. The number to be spoofed. Replace your number with any other number.
Message: Type your message content.
You can leave other fields untouched.
Note: For Indian friends, make sure you add “91″ before sender and receiver numbers. This is a necessary for efficient working of this hack.
5. Now, hit on “Send SMS” button and your friend will receive the fake SMS which you have sent. Cheers!!!
Note: Do not misuse this mobile hack as it can put you in problems. Use it for fun!!!

Use any sim in any usb modem

Every One its not possible to use any sim in a modem without unlocking. For that you have to Pay.
But dont worry with the following trick you can do it for free :-)

Step by step instruction:

1. Insert SIM in Modem




2. Modem show invalid SIM, just ignore it and close modem software.

3. Start NOKIA PC suite.

4. Go to Nokia pc suite connect to internet option.



5. Go to Configure. Select your data card modem,and make all operator apn setting as like when we use Nokia mobile connection.
Eg:- Apn for Airtel – airtelgprs.com




6. Finish set up.

7. Now connect to internet through PC suite.



8. Wow your net is connected without unlocking the modem.

How to lock a Folder without software

We all know about the many folder lock software which are available on huge internet market. But they all are not much successful because of memory management but also if any of your friend just uninstall the soft then your all files will be open or will be currept.
Todays i am going to share a creation which can hide a folder without software.
Now whats new in this.
Ok let read out the features :P

Features

  • Free of Cost
  • Only a simple script it is
  • fast access
  • The special thing is, if you lock a folder with this and make the files hide. Then even DOS will be failed to seach your files ;)
Yeah i know the last feature is much more intersting.
Now how to use this creation.

Steps:

1. Open notepad and paste the following code in it.
2. Change the password in code.

On following ( Type your password here )
Enter your password here.

3. Save the notepad as: Locker.bat
4. At first time start it will create folder with Locker automatically for u.
5. After creation of Locker folder again click on the Locker.bat
6. It will ask.press Y then Locker folder will be disappeared.
7. Again to get it click on locker.bat. and give ur password u will get the folder again.


Code:

cls
@ECHO OFF
title Folder Locker
if EXIST "Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure u want to Lock the folder(Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Locker "Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}"
attrib +h +s "Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%==type your password here goto FAIL
attrib -h -s "Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}"
ren "Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End
11/19/07
*Anki Srivastava
See the 13th line from below.
It is as follow

if NOT %pass%==type your password here goto FAIL

Enjoy Friends keep yourself updated for more this type of creations :)

 

Alexa Rank

Our Recent Visitors