Friday, July 31, 2009

Just make your habit to read emails!!!!!!!

We receive disturbing mails in our mail box. These spam mails are nothing but the advertisements we receive from advertisers. Do u know, when we click on those ads the person belonging to that ad is paid in dollars.
We don't receive a single penny for reading those ads.Forget about the money, they don't even thank us, non sense, isn't it?





But now we will be paid for reading emails. We just have to register with an ad medium called rupeemail.com. No need to invest anything. We will be paid in indian rupees.
Not only this we will be paid extra if we invite someone say our family members, friends etc. So keep earning , no hard work, no investment, just spare some amount of time.
No, no only 10 minutes a day. Can u, if not, then slap yourself.
OK, then just join it now>>>>>>>>>>
Try these also

sendmoreinfo



I HIGHLY RECOMMEND you to use separate email id for joining this paid to read email section

Wednesday, July 29, 2009

Get paid for your OPINION



We can earn by just taking surveys in which we will be given a link to a website we have to visit it and write some comments for that website it takes not more than 5 minutes to do that.
Really if u want to earn, first open a pay pal account its free while registration when it asks for credit card details just cancel it and u have created a paypal account all earnings will be credited to ur paypal account and you can redeem the money through your bank account.
Click the above image to Register for freeee

All rights reserved. © Content copyrighted. ©

Monday, June 29, 2009

Get paid for every SMS you receive

Believe it or not its really surprising that you will be paid for receiving sms on your cell phone

Get 20 paise everytime you receive sms on your phone
Get 10 paise if your friend receive sms
Get 5 paise if your friend's friend receive sms

click here to sign up its totally freeeeeeeeeeeeeee!!!!
register your mobile there and start earning
dont miss it..............
 All rights reserved!© Content copyrighted. ©

Create Password Protected Folder (Folder-Lock)


There are always some things which we don't want others to see in our Computer, Example:private photos, secret documents etc. So we need to hide them. Just attributing the Folder which includes these Files as HIDDEN does not serve this purpose because these days every person knows to view Hidden files. So why not Password protect this Folder? We do get Folder-Lock applications for Download on Internet but they offer only trial versions for free. So, Today I will give a tutorial on Creating a Password Protected folder in Windows.

Just open Notepad and copy the following code given in Red colour in it.

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%==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


Do not forget to change the "YOUR PASSWORD HERE" text by the password which you want to set for your Locker.
Now save this file WHERE YOU WANT THE PASSWORD PROTECTED FOLDER as "locker.bat". A folder named Locker will appear in the same directory.(Refresh if it does not appear)

Click on the locker.bat file and it will ask you for the password for your Locker(Not for the first time, Second time onwards). You need to give the same password which you gave while writing the BAT file in Notepad.(Remember password is case sensitive) Now you can save any data in this Locker folder. After saving the data again click on the locker.bat file. It will ask you weather you want to lock this folder. Type y if you want to lock it or n if you don't want to lock it.

You can use the locker.bat file to unlock this folder as explained above. Have fun locking your documents in your password protected folder. Ask your queries in Comments and Don't forget to tell weather you liked this trick or no.

(Note: BAT files can be edited in Notepad so any Computer savvy person might get to know your password through the locker.bat file. So it is advised that you HIDE the locker.bat file. You don't need to hide the Locker folder because it is Hidden by Default)