sen1

Sunday, November 13, 2011

HOW TO RECOVER LOST DATA FRM HARD DISK






HOW TO RUN SYMBIAN APPLICATIONS ON PC



Follow these steps to run a Symbian application on your computer.
1. Download Symbian SDK from Here 2. Install the SDK and all chaintools included in the package in their default location. 3. After all packages are installed, reboot your PC. 4.Now goto Start » Program files » Nokia Developer Tools » Symbian SDK» Emulator to launch the emulator 5. Wait for the Emulator to completely load. The Emulator program will look like this when finished loading.


Monday, October 24, 2011

How to load Youtube Faster on slow connections [Tips & Tricks]


Youtube is an integral part of our lives now a days, whether we need to watch the trailer of upcoming movies or want to watch some education videos, Youtube is a place we need to be but majority of people in India are yet to have High speed connection and that's why watching video online is not a easy task for us.What i usually do is download youtube video and then watch it offline but do you know that there is another version of Youtube which will make video loads faster and with lowest possible latency.
Load YouTube video faster [tips and tricks]


Monday, May 2, 2011

Steal any one ip without any software/tool


How to steal an IP ?

1.The first thing you have to do is go to SyntaxMaster.info.

2.There you can create a free account !(The registration is really quick !)

3.Once you have registered and Confirmed you account,you can log into your "Newly Created account" !

4.Then you'll see an option "Software/Tools" on the Tab.Then click on "IP Stealer"

5. a new window will open 

6. So you just give this URL " 
to your victim (Please DO NOT use this because I'll get the IP then.The URL is different for each and every account !)


Sunday, April 17, 2011

INSTALL XP IN 10 MINUTES


Now, this tip will be very helpful for those who frequently install windows xp operating system. Normally OS installation takes around 40 minutes to complete, but through this trick you can now save 10-15 minutes. This simple tricks goes this way.

1. Boot through Windows XP CD.
2. After all the files are completely loaded, you get the option to select the partition. Select “c”.
3. Now Format the partition, whether it is normal or quick with NTFS or FAT
4. Once the formatting is completed, All the setup files required for installation are copied. Restart your system by pressing Enter.
Now, here begins the Simple trick to save 10-15 minutes.
5. After rebooting, you get a screen where it takes 40 minutes to complete or finalize the OS installation.
6. Now, Press SHIFT + F10 Key -> This opens command prompt.
7. Enter “Taskmgr” at the command prompt window. This will open Task Manager.
8. Click the Process Tab, here we find a process called Setup.exe -> Right Click on Setup.exe -> Set Priority -> Select High or Above Normal. Initially it will be Normal.
Thats it, no more work to do. Relax your self and see how fast the installation process completes.


REPAIR MISSING FILE IN XP


If you see this following message on windows startup
-------------------------------------------------------------------------------
windows could not start because the following file is missing or corrupt:
\windows\sytem32\config\system

you can attempt to repair this file by starting windows setup using the orginal setup CD-rom.
Selet "r" a the first sreen to start repair
-------------------------------------------------------------------------------

It very easy to fix the problem.
do not format your partition or install Windows XP. Just follow my instruction

1. Boot up from the WindowsXP CD (use the original instead the slipstream version).
2. in the screen "Welcome to Setup" press R to start the Recovery Console > press "R"
3. enter number to select your WindowsXP installed drive >press Enter.
4. enter Administrator password >press Enter
5. you will see command promt "c:\windows>" then type the command like bellow
6. c:\windows>cd \system32\config\ >press Enter
c:\windows\system32\config>del system press Enter
c:\windows\system32\config>del software press Enter
c:\windows\system32\config>del sam press Enter
c:\windows\system32\config>del security press Enter
c:\windows\system32\config>del default press Enter
c:\windows\system32\config>cd .. press Enter
c:\windows\system32>cd .. press Enter
c:\windows>cd repair press Enter
c:\windows\repair> copy system c:\windows\system32\config press Enter
c:\windows\repair> copy software c:\windows\system32\config press Enter
c:\windows\repair> copy sam c:\windows\system32\config press Enter
c:\windows\repair> copy security c:\windows\system32\config press Enter
c:\windows\repair> copy default c:\windows\system32\config press Enter
c:\windows\repair>EXIT press Enter

The computer will restart. the problem fixed!!!


MAKE YOUR PIRATED WINDOW XP GENUINE ORIGINAL


HERE IS THE EASY WAY TO MAKE WINDOW XP GENUINE


1. start

2. run

3. regedit

4. HKEY_LOCAL_MACHINE

5. software

6. microsoft

7. windows NT

8. current version

9. WPAEvents

0. double click 00BETimer

1. select all and delete

2. FF D5 71 D6 8B 6A 8D 6F D5 33 93 FD

3. right click on WPAEvents

4. permissions

5. system

6. deny full control

7. apply

8. yes

9. ok


PAUSE THE TRIAL PERIOD OF UNREGSTRD SOFTWARE


Using this software you can run your trial software forever.


Friday, April 15, 2011

CREATE PASSWORD PROTECTED FOLDER WITHOUT ANY SOFTWARE


Quote:
@ECHO OFF
title Folder Personal
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Personal 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 Personal "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK

echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%==pwd123 HERE goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Personal
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Personal
echo Personal created successfully
goto End
:End
Now here is what you need to do:

Just copy the above code and paste it into Notepad. Save it by giving it any name you choose. Assuming, the file is called secret.txt, change the extension to ‘.bat‘ so that the new name becomes secret.bat. What you get is a batch file. You could actually save one step by saving the file in Notepad directly as secret.bat by enclosing the file name like this: “secret.bat” . This batch file is the one that you need.
You can edit this batch file to change the folder name and the password. To change the name of the folder that is created, change the ‘Personal’ (in bold in the above code) to any another name you choose.
Likewise change the ‘pwd123′ (in red in the code) to anything else to change the password.

Now let’s see how to use it. Place the file in the location where you would like to create your protected folder. Run the batch file by double clicking on it. This will create a folder named Personal in the same location as the batch file. You can now open this folder and place any files in it. Once you are finished, run the batch file again. You will be asked whether you want to lock the folder. Entry ‘Y’ (for Yes) and hit Enter. The folder becomes invisible. To retrieve the folder, run the batch file again. You will be prompted to enter the password. Enter the password, hit enter and voila! the folder appears


Important: The batch file acts like a key to open the locked folder. So once you have created and locked a folder, do not keep the batch file in the same location since anybody can open the batch file and view your password. So I would suggest that you keep the batch file in a separate and safe place or better still keep it on your pen drive or flash drive. That way when you want to open the folder just copy the batch file to the location where you have your protected folder and run it.

I did check it before posting it here. If you have any problem with it [like not working], then the problem is with the straight double quotes used in the code in this post. Once you copy the code you would also need to change each of the double quotes with your keyboard double quotes.


Thursday, August 12, 2010

ACTIVATE NEW SIM CARD within 1minute-NO NEED TO WAIT


ACTIVATE NEW SIM CARD within 1minute-NO NEED TO WAIT
Activate Sim Cards
instantly with this trick
Hi. Guys now i am here to tell u a
trick to activate a new sim in a
minute.

.
.
. THIS
WILL WORK PERFECTLY IN ALL
SIMS.THIS WORKED PERFECTLY
IN MY NEW RELIANCE SIM.SO I
AM POSTING IT HERE.THIS MIGHT
BE HELPFUL FOR RETAILERS FOR
INSTANT ACTIVATION OF SIM
CARDS. .
.
.
.
.so herez the trick.When u buy
any new sim . The shopkeeper
will tell u to wait few hours to
get the sim activated.
.
.when u purchase a new sim
card u will get two or three
papers in which u have to fill the
details.
.
.check the page in which your
mobile number is written.and
near your number you can see
SR NUMBER.[serial number]
.
.
. IF YOU WANT INSTANT
ACTIVATION THEN INSERT SIM
IN YOUR MOBILE AND DIAL THE
SR NUMBER TWO TIMES. .
.
.
.tHaTs all..your sim card'll be
activated within one minute..


 

Sandhu TV infotainment Copyright © 2009-2012 DMCA registered site, Ghaint theme is Designed by Rupi sandhu