Labels

Showing posts with label simple tricks. Show all posts
Showing posts with label simple tricks. Show all posts

Saturday, 19 May 2012

Delete An "undeletable" File


Open a Command Prompt window and leave it open.
Close all open programs.
Click Start, Run and enter TASKMGR.EXE
Go to the Processes tab and End Process on Explorer.exe.
Leave Task Manager open.
Go back to the Command Prompt window and change to the directory the AVI (or other undeletable file) is located in.
At the command prompt type DEL <filename> where <filename> is the file you wish to delete.
Go back to Task Manager, click File, New Task and enter EXPLORER.EXE to restart the GUI shell.
Close Task Manager.


Or you can try this

Open Notepad.exe

Click File>Save As..>

locate the folder where ur undeletable file is

Choose 'All files' from the file type box

click once on the file u wanna delete so its name appears in the 'filename' box

put a " at the start and end of the filename
(the filename should have the extension of the undeletable file so it will overwrite it)

click save,

It should ask u to overwrite the existing file, choose yes and u can delete it as normal


Here's a manual way of doing it. I'll take this off once you put into your first post zain.

1. Start
2. Run
3. Type: command
4. To move into a directory type: cd c:\*** (The stars stand for your folder)
5. If you cannot access the folder because it has spaces for example Program Files or Kazaa Lite folder you have to do the following. instead of typing in the full folder name only take the first 6 letters then put a ~ and then 1 without spaces. Example: cd c:\progra~1\kazaal~1
6. Once your in the folder the non-deletable file it in type in dir - a list will come up with everything inside.
7. Now to delete the file type in del ***.bmp, txt, jpg, avi, etc... And if the file name has spaces you would use the special 1st 6 letters followed by a ~ and a 1 rule. Example: if your file name was bad file.bmp you would type once in the specific folder thorugh command, del badfil~1.bmp and your file should be gone. Make sure to type in the correct extension.

Cracking Zip Password Files


Tut On Cracking Zip Password Files..

What is FZC? FZC is a program that cracks zip files (zip is a method of compressing multiple files into one smaller file) that are password-protected (which means you're gonna need a password to open the zip file and extract files out of it). You can get it anywhere - just use a search engine such as altavista.com.
FZC uses multiple methods of cracking - bruteforce (guessing passwords systematically until the program gets it) or wordlist attacks (otherwise known as dictionary attacks. Instead of just guessing passwords systematically, the program takes passwords out of a "wordlist", which is a text file that contains possible passwords. You can get lots of wordlists at www.theargon.com.).
FZC can be used in order to achieve two different goals: you can either use it to recover a lost zip password which you used to remember but somehow forgot, or to crack zip passwords which you're not supposed to have. So like every tool, this one can be used for good and for evil.
The first thing I want to say is that reading this tutorial... is the easy way to learn how to use this program, but after reading this part of how to use the FZC you should go and check the texts that come with that program and read them all. You are also going to see the phrase "check name.txt" often in this text. These files should be in FZC's directory. They contain more information about FZC.
FZC is a good password recovery tool, because it's very fast and also support resuming so you don't have to keep the computer turned on until you get the password, like it used to be some years ago with older cracking programs. You would probably always get the password unless the password is longer than 32 chars (a char is a character, which can be anything - a number, a lowercase or undercase letter or a symbol such as ! or &) because 32 chars is the maximum value that FZC will accept, but it doesn't really matter, because in order to bruteforce a password with 32 chars you'll need to be at least immortal..heehhe.. to see the time that FZC takes with bruteforce just open the Bforce.txt file, which contains such information.
FZC supports brute-force attacks, as well as wordlist attacks. While brute-force attacks don't require you to have anything, wordlist attacks require you to have wordlists, which you can get from www.theargon.com. There are wordlists in various languages, various topics or just miscellaneous wordlists. The bigger the wordlist is, the more chances you have to crack the password.
Now that you have a good wordlist, just get FZC working on the locked zip file, grab a drink, lie down and wait... and wait... and wait...and have good thoughts like "In wordlist mode I'm gonna get the password in minutes" or something like this... you start doing all this and remember "Hey this guy started with all this bullshit and didn't say how I can start a wordlist attack!..." So please wait just a little more, read this tutorial 'till the end and you can do all this "bullshit".

We need to keep in mind that are some people might choose some really weird passwords (for example: 'e8t7@$^%*gfh), which are harder to crack and are certainly impossible to crack (unless you have some weird wordlist). If you have a bad luck and you got such a file, having a 200MB list won't help you anymore. Instead, you'll have to use a different type of attack. If you are a person that gives up at the first sign of failure, stop being like that or you won't get anywhere. What you need to do in such a situation is to put aside your sweet xxx MB's list and start using the Brute Force attack.
If you have some sort of a really fast and new computer and you're afraid that you won't be able to use your computer's power to the fullest because the zip cracker doesn't support this kind of technology, it's your lucky day! FZC has multiple settings for all sorts of hardware, and will automatically select the best method.

Now that we've gone through all the theoretical stuff, let's get to the actual commands.


--------------------------------------------------------------------------------
Bruteforce
--------------------------------------------------------------------------------


The command line you'll need to use for using brute force is:

fzc -mb -nzFile.zip -lChr Lenght -cType of chars

Now if you read the bforce.txt that comes with fzc you'll find the description of how works Chr Lenght and the Type of chars, but hey, I'm gonna explain this too. Why not, right?... (but remember look at the bforce.txt too)

For Chr Lenght you can use 4 kind of switches...

-> You can use range -> 4-6 :it would brute force from 4 Chr passwors to 6 chr passwords
-> You can use just one lenght -> 5 :it would just brute force using passwords with 5 chars
-> You can use also the all number -> 0 :it would start brute forcing from passwords with lenght 0 to lenght 32, even if you are crazy i don't think that you would do this.... if you are thinking in doing this get a live...
-> You can use the + sign with a number -> 3+ :in this case it would brute force from passwords with lenght 3 to passwords with 32 chars of lenght, almost like the last option...

For the Type of chars we have 5 switches they are:

-> a for using lowercase letters
-> A for using uppercase letters
-> ! for using simbols (check the Bforce.txt if you want to see what simbols)
-> s for using space
-> 1 for using numbers


Example:
If you want to find a password with lowercase and numbers by brute force you would just do something like:

fzc -mb -nzTest.zip -l4-7 -ca1

This would try all combinations from passwords with 4 chars of lenght till 7 chars, but just using numbers and lowercase.

*****
hint
*****

You should never start the first brute force attack to a file using all the chars switches, first just try lowercase, then uppercase, then uppercase with number then lowercase with numbers, just do like this because you can get lucky and find the password much faster, if this doesn't work just prepare your brain and start with a brute force that would take a lot of time. With a combination like lowercase, uppercase, special chars and numbers.


--------------------------------------------------------------------------------
Wordlis
--------------------------------------------------------------------------------

Like I said in the bottom and like you should be thinking now, the wordlist is the most powerfull mode in this program. Using this mode, you can choose between 3 modes, where each one do some changes to the text that is in the wordlist, I'm not going to say what each mode does to the words, for knowing that just check the file wlist.txt, the only thing I'm going to tell you is that the best mode to get passwords is mode 3, but it takes longer time too.
To start a wordlist attak you'll do something like.

fzc -mwMode number -nzFile.zip -nwWordlist

Where:

Mode number is 1, 2 or 3 just check wlist.txt to see the changes in each mode.
File.zip is the filename and Wordlist is the name of the wordlist that you want to use. Remember that if the file or the wordlist isn't in the same directory of FZC you'll need to give the all path.

You can add other switches to that line like -fLine where you define in which line will FZC start reading, and the -lChar Length where it will just be read the words in that char length, the switche works like in bruteforce mode.
So if you something like

fzc -mw1 -nztest.zip -nwMywordlist.txt -f50 -l9+

FZC would just start reading at line 50 and would just read with length >= to 9.

Example:

If you want to crack a file called myfile.zip using the "theargonlistserver1.txt" wordlist, selecting mode 3, and you wanted FZC to start reading at line 50 you would do:

fzc -mw3 -nzmyfile.zip -nwtheargonlistserver1.txt -f50


--------------------------------------------------------------------------------
Resuming
--------------------------------------------------------------------------------

Other good feature in FZC is that FZC supports resuming. If you need to shutdown your computer and FZC is running you just need to press the ESC key, and fzc will stop. Now if you are using a brute force attack the current status will be saved in a file called resume.fzc but if you are using a wordlist it will say to you in what line it ended (you can find the line in the file fzc.log too).
To resume the bruteforce attack you just need to do:

fzc -mr

And the bruteforce attack will start from the place where it stopped when you pressed the ESC key.
But if you want to resume a wordlist attack you'll need to start a new wordlist attack, saying where it's gonna start. So if you ended the attack to the file.zip in line 100 using wordlist.txt in mode 3 to resume you'll type

fzc -mw3 -nzfile.zip -nwwordlist.txt -f100

Doing this FZC would start in line 100, since the others 99 lines where already checked in an earlier FZC session.


Well, it looks like I covered most of what you need to know. I certainly hope it helped you... don't forget to read the files that come with the program

Change Text on XP Start Button


A very simple trick that changer yours XP start button to your customized test.

Step 1 - Modify Explorer.exe File

In order to make the changes, the file explorer.exe located at C:\Windows needs to be edited. Since explorer.exe is a binary file it requires a special editor. For purposes of this article I have used Resource Hacker. Resource HackerTM is a freeware utility to view, modify, rename, add, delete and extract resources in 32bit Windows executables and resource files (*.res). It incorporates an internal resource script compiler and decompiler and works on Microsoft Windows 95/98/ME, Windows NT, Windows 2000 and Windows XP operating systems.

get this from h**p://delphi.icm.edu.pl/ftp/tools/ResHack.zip

The first step is to make a backup copy of the file explorer.exe located at C:\Windows\explorer. Place it in a folder somewhere on your hard drive where it will be safe. Start Resource Hacker and open explorer.exe located at C:\Windows\explorer.exe.

The category we are going to be using is "String Table". Expand it by clicking the plus sign then navigate down to and expand string 37 followed by highlighting 1033. If you are using the Classic Layout rather than the XP Layout, use number 38. The right hand pane will display the stringtable. We’re going to modify item 578, currently showing the word “start” just as it displays on the current Start button.

There is no magic here. Just double click on the word “start” so that it’s highlighted, making sure the quotation marks are not part of the highlight. They need to remain in place, surrounding the new text that you’ll type. Go ahead and type your new entry. In my case I used Click Me!

You’ll notice that after the new text string has been entered the Compile Script button that was grayed out is now active. I won’t get into what’s involved in compiling a script, but suffice it to say it’s going to make this exercise worthwhile. Click Compile Script and then save the altered file using the Save As command on the File Menu. Do not use the Save command – Make sure to use the Save As command and choose a name for the file. Save the newly named file to C:\Windows.


Step 2 – Modify the Registry

!!!make a backup of your registry before making changes!!!

Now that the modified explorer.exe has been created it’s necessary to modify the registry so the file will be recognized when the user logs on to the system. If you don’t know how to access the registry I’m not sure this article is for you, but just in case it’s a temporary memory lapse, go to Start (soon to be something else) Run and type regedit in the Open field. Navigate to:

HKEY_LOCAL_MACHINE\ SOFTWARE\ Microsoft\ Windows NT\ CurrentVersion\ Winlogon

In the right pane, double click the "Shell" entry to open the Edit String dialog box. In Value data: line, enter the name that was used to save the modified explorer.exe file. Click OK.

Close Registry Editor and either log off the system and log back in, or reboot the entire system if that’s your preference. If all went as planned you should see your new Start button with the revised text.[/b] 

Boot Winxp Fast


Boot your Winxp Fast

Follow the following steps

1. Open notepad.exe, type "del c:\windows\prefetch\ntosboot-*.* /q" (without the quotes) & save  as     "ntosboot.bat" in c:\
2. From the Start menu, select "Run..." & type "gpedit.msc".
3. Double click "Windows Settings" under "Computer Configuration" and double click again on "Shutdown" in the right window.
4. In the new window, click "add", "Browse", locate your "ntosboot.bat" file & click "Open".
5. Click "OK", "Apply" & "OK" once again to exit.
6. From the Start menu, select "Run..." & type "devmgmt.msc".
7. Double click on "IDE ATA/ATAPI controllers"
8. Right click on "Primary IDE Channel" and select "Properties".
9. Select the "Advanced Settings" tab then on the device or 1 that doesn't have 'device type' greyed out select 'none' instead of 'autodetect' & click "OK".
10. Right click on "Secondary IDE channel", select "Properties" and repeat step 9.
11. Reboot your computer.

Thursday, 17 May 2012

Compress 1GB File to 10MB with KGB Archiver

KGB Archiver is an opensource software which can compress 1 GB file to 10 MB file. This software  is based on PAQ6 algorithm which has AES-256 powerful encryption. KGB archiver is available for Linux and Windows both. 
This software case too much time to compress a file as we can see that the compression ratio is very hign. But the time depends on the size of file being compressed. File compressed with KGB Arciver can only be decompressed with this tool only. If you are compressing any file with KGB archiver and sending the comprssed file to your friends then he must have KBG archiver installed on his computer to decompress the file.
Note: Some of you may not feel happy after reading this not. Because this tool can not compress video files. This tool can only compress 




Features of KGB Archiver: These are some features of this cool compression software.

  • Supports native .kgb files and .zip files
  • AES-256 Encryption
  • Able to create self-extracting archives.
  • Multilanguage supports like Arabic, German, Greek, Japanese, Spanish many more.
  • Unicode is supported in both User Interface and File Systems.
  • An Explorer shell extension is available for the windows version.
  • Make Password protected compressed file.

Download your Facebook albums with Photograbber

Facebook the largest social network is a virtual world where people spend more time than real world. We all use it to share our daily experience, photos, videos and everything we think. We can easily create albums and create photos with friends. 
Sometimes we need to download all the photos in our system. Although, Facebook has given an option to download all Facebook data including status and comments. But what if we only want to download photos. There are some nice tools which can help. PhotoGrabber is also a nice tool to download photos from Facebook.


Follow these steps:

  • Download PhotoGrabber Desktop client. It is available for windows or MAC.
  • Signin with your Facebook account and allow this application to access account.
  • Now you will see your album listed on the application.
  • select the album you want to download and hit the download begin button.
  • Downloading will start within few seconds.

How to access any deleted and unavailable photo on facebook

Facebook is the largest social network with more than 800 millions users. Users always want to see the pics of other persons and search for the scripts which could allow them to see the unavailable pic of other users. Sometimes we miss some pics which are now deleted by the users. But Facebook photos can be seen even after the deletion. And you can see the private pics of other users.


How to see deleted pics on Facebook
Like other big websites, Facebook also uses CDN service to distribute static content on various servers. This makes website fast. This CDN is the way by which we can access those pics on facebook which were deleted by the users month ago. If you want to know how to hack facebook account read my older post.


Follow these steps:
First of all select a photo to start your experiment.
Now right click on the photo and click on "copy image URL". Paste this address on notepad and save.
Now delete the photo. After the deletion, try to access the photo. You will see something link this.


Now copy the link address from the notepad which we have saved and then open the link in browser. You will see the photo which you have deleted few moments back and was unavalable to see.


How it works?? This is possible because facebook use CDN. When we delete a photo from the facebook, it is deleted by the facebook database and server. But various copies of the photo are distributed on the CDN servers which are still there. As facebook uses a long tome caching so these photos are available on those servers for months.


How to see unauthorized pic: One day one of my friend paste a link of a photo which was available to him but not to me. I want to see that photo but has no way. Here was my solution to see the that photo. I asked him to "copy image URL" and paste on the chat. By this URL i was able to see the photo on my browser while i was not authorize to see the photo.


How it works?? When we open a photo on facebook, its URL looks like this:
https://www.facebook.com/photo.php?fbid=somenumber&set=o.somenumber &type=1&ref=nf


Here facebook restricts us by the the fbid. Facebook checks whether we are authorize to see the photo or not. When we see the photo by image URL, it looks something like this.
https://fbcdn-sphotos-a.akamaihd.net/hphotos-ak-ash4/s320x320/431527_316797435048428_100001545211364_864180_547497944_n.jpg
With this link, we see the photo direct from the server with its original location. So there is no restriction on the photo now.

Tips to protect Facebook account from hackers

Facebook, the social networking website or we can say our virtual world. Most of the people live more in this virtual world than their real world. We share our photos, moods and thoughts with our friends. But with the increase in use of Facebook, Hackers are also very active and they always try to hack innocent people's facebook account.


Many people do not care about their Facebook account security. According to them, "There is no loss to me if my facebook account is hacked." But they easily forget that they also have some of their private information. And if there is no private information, the account represents you. These are the people who never care about their account security and then request me to help in getting back their facebook account because some one is using it and doing abusive things. 


Why should you always try to protect your account: Facebook is your online identity. If you account is hacked, you will have to face following problems:
1. Now someone else is living your life in Facebook. All the abusive and criminals activities done by hacker will represent you.
2. He will ruin your reputation.
3. Your private photos can be misused in porn industry.
4. Your personal data wil be sold to the internet marketing firms
5. If you are a girl, then i do not think i have to explain the problem.


Myths about facebook hacking: Some people think that hackers have some nice hacking tools which easily gra their passwords. So they can not do any thing to protect their account. There is not a single percent truth in this. No tool exists which can grab your password. Yeah some hackers use facebook security services as a security bug to take over your facebook account. But facebook has given so many ways to recover facebook account. You are never going to lose your facebook account if you will follow all the security points which i am goinf to describe in this post.
Most of the time hackers use phishing and keyloggers to hack facebook account. Protection against these attacks are easy.


Read: How to access any deleted and unavailable photo on facebook

Security settings for facebook:
1. Hide your primary Email account and phone number from your profile. This should only be visible to you. It should not be available to your friends too.
To do this click on your name on the top navigation bar and go to your time line. Now click on About to open your profile info. Here scroll down to contact info and click on Edit. Here you will see some icons with a down arrow key in front of each info. click on drop down in front of emails to change it to "only me." 


You must hide your email id and phone number and change the visibility to "only me" option.
Hackers can use your email id and phone number to perform phising attack.
2. Go to "Account settings" and then Security tab. Turn on "Secure Browsing". Click on Edit to enable the setting.
Enable "login notifications." This wil help you to know the unauthorize activity each time your account has been tried to access by you or someone else.
3. Add your phone number as a recovery option. This is the best way to recover the password.
4. Use a good Antivirus and internet security to protect system from keyloggers and trojans. Most of the internet security tools also warns against phishing page.
5. Regular update your browser and windows for latest patches. Updated browsers has inbuilt security tools which protects against malicious downloads and phishing links.
6. Avoid clicking on suspicious links and spams on Facebook. There are various type of scams running on the Facebook which attracts users by many offers. 
7. For girls, avoid adding strange smart boys.. profile pics can be fake. And if added any, never reveal your personal information such as address, phone number, about family and some other which can cause a trouble for you. Because many fake boys started blackmailing girls by saying that they will mail chats to her father or post pics on public websites.


These are some facebook security tips which must follow in order to protect your facebooka account.

Wednesday, 16 May 2012

Cool wondow tricks - it starts notepad with automatic typing

 You can send it to your friend to make a fun. This one is also w funny script which will open the notepad and start typing in it automatically. You can set the message it will type. Send it to your friendas a ghost of computer which will do anything on computer.


Type the script given below in notepad and save as Ghost.vbs and send to friend.


Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "This is a Virus. You have been infected."
loop

How to speed up copy speed in windows





This post is about a nice software which gives you a better experience in copy paste in windows. This tool has a lot of features and improves the speed of copy. The name of the tool is WinMend.


WinMend File Copy is a free and excellent batch file copy tool. Based on extensive testing, and by constantly maximizing the potential of the operating system, WinMend File Copy developed a unique key technique that makes up for the inadequacy of the system’s default copy functionality and increases the speed of file copy to be 3 times of the system default. It can resume the interrupted replication and display a list of failed files, such as files occupied by other applications. It is the best help you can ever get to speed up system backup. Supports Language: English, Hungarian, Russian, Vietnames.


Features:

1. High-Speed Copy
2. Copying Resume
3. Error List
4. Three Copy Modes
5. Suspend COpy


Download Here:
http://www.winmend.com/file-copy/

create a shortcut for locking the Computer Screen in Windows 7

There are many tricks to lock the computer screen but the most popular and fastest way is to use shortcuts. win+L is the shortcut to lock the screen. You can also use mouse to lock the screen
This is an alternate way to lock the computer screen in windows 7.


Steps:
1: Right-click on the desktop. point to new, then shortcuts.


2: Now type rundll32.exe user32.dll, LockWorkStation in the location box and click next


3: then give the name to this shortcut. Click on the Finish button.  


Now you can use this shortcut to lock the computer screen

how to display text message during windows startup

You can add a text message during windows startup as a messag to users who use your computer in absense of you. i haev tested this trick on windows xp, vista and 7. It works fine on all these versions of operating systems.


Follow these message.

  1. GO to run, type "regedit" and press enter
  2. Navigate toHKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Current Version\Policies\System and double-click on legalnoticecaption
  3. In the Value data field enter header what you want.
  4. Then double-click on legalnoticetext And in the Value data field enter in the message you want to display and click OK.
  5. Now reboot your system to see the effet. 

How to show lyrics in windows media player

Windows media player is the default media player for windows system. And it is available in all flavors of windows. You can almost all popular audio and video formats in this player.
Think if you can see the lyrics of a song too in the player. Now you do not need to search for the lyrics and then download on the system to read it. You can add a small plugin to your system to show the lyrics in windows media player.


Download this plugin from the link
http://www.lyricsplugin.com/download/lyricsplugin-wmplayer.php
After the installation of the plugin, open windows media player. Now, start playing any song and change the view mode to Now Playing, press Ctrl+3 to enable so. Now, you will see the lyrics of the song you are playing on the screen

How to extract data from a Web Page into an Excel Spreadsheet

Do you know? you can extract the data of a website into a excel spreadsheet. This feature is very useful when you found some useful data on a webpage and you want to save it into your system. You can save Google search results, your bank ministatments and other records with just a mouse clicks.


To import a webpage into excel sheet click on  Data and then go it Get External Data group. In this you will find an option "From Web". Click on this and  then "From Web".


There is another way of doing this in which you do not need to open Microsoft excel each time to import a webpage. 
Open Internet Explorer and then navigate to the website you want to import. Then right click on the page where you will find an option to "Export to Excel"


Once the data is inside Excel, you can do all sort of complex things like conditional formatting, sorting, create charts, etc. If you set the data auto-refresh, Excel will update the worksheet whenever the source web page changes.

Integrate your location into your Windows 7 computer without GPS

In Windows 7, Microsoft introduced some cool features. Integrate your location into your Windows 7 is one of those features.  Windows 7 has a built-in framework for sensors that is only just now getting some developer love.
Follow the steps to enable this 


Download GeoSense from the link http://geosenseforwindows.com/
and install it.
Now go to the control panel, select "Hardware and Sound," then "Enable location and Other Sensors." 


Tick the box next to GeoSense, then click "Apply." 
To view more information about the Geosense Location Sensor, change its description, change who can access the sensor, and to uninstall Geosense, click on > Geosense Location Sensor.
Now that the sensor is enabled, you can use it with location-aware applications.

Set permanent delete on delete key

DEL key is used for delete and file and send it to the recycle bin in windows. Recycle is used to recover those files which have been deleted accidently. But most of the people do not use only delete button to delete files. They use shift+ del to delete the file permanent. For those people, it is better to set permanent delete on DEL key. Thus they do not need to press shift+ del key to delete a file permanently.


Follow these steps:

  • Click on start and then run.
  • Type gpedit.msc in the box and press enter. It will open a group policy window. 
  • Navigate to the User Configuration - >Administrative Templates
  •   >Windows Components>Windows Explorer
  • In the right side settings menu double click--Donot move deleted file to Recycle bin.
  • >click OK.

Now you have done. Delete the file anytime and it will not go to the recycle bin

Add a Recycle Bin to your USB Flash Drive

We all use USB flash drives to carry our data with us. We also use these flash drive to work on other people's computer. While working on other computers using your own usb flash drive, if you delete a file it will be sent to the windows's recycle bin. What if you wish to recover that file when you are not on the same system. Sometimes, this type of conditions can be panic. 
Having a recycle bin in your flash drive is a nice idea which will store all the data deleted from the flash drive.
iBin is a nice tool which create a different recycle bin in your flash drive. Download this file and put it in the flash drive. When you are working on some other person's computer, Run the ibin.exe file from the flash drive. Now delete files by pressing theWindows Key + Delete. Remember the shortcut keys. It is important When this shortcut key is pressed, any deleted file will be sent to the Flash Drive Recycle Bin instead of the Windows Recycle Bin. 
If you press delete button only. files will be sent to the window's recycle bin. So it is important to take care of the shortcut keys.
You can access all deleted files inside the iBin folder in Flash drive. You can also access those files by opening the iBin container folder to display a window like the one shown above.

How to run Google searches from addresss bar in Internet Explorer

In Internet Explorer, Bing is the default search. But Google search is better than Bing. But there is no option to change it and add Google as default search from address bar of Internet Explorer. So we have to go to Google.com to search from Google. But we can do some registry hacks to add Google as a default address bar search in Internet Explorer.


Before trying these steps, backup your registry


Follow these steps to add Google searches to addresss bar in Internet Explorer
  • Click on start, and then on Run.
  • Type REGEDIT and press enter to open registry editor.
  • Now go to HKEY_CURRENT_USER -->Software -->Microsoft -->Internet Explorer -->SearchUrl
  • Double-click (Default) and type in the value:http://home.microsoft.com/access/autosearch.asp?p=%s
  • Click OK
  • Double-click provider and type in the value. If provider is not listed, make the key yourself.gogl
  • Now Click OK
  • Back on the left side, click once on Main and Double-click on AutoSearch and type in a value of 4.
  • Now Close the registry editor 

Start Internet explorer. And try a search direct from the address bar of internet explorer.


If you are not sure how to edit the registry, you can use the following code.


Windows Registry Editor Version 5.00


[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchUrl]
@=”http://home.microsoft.com/access/autosearch.asp?p=%s”
“provider”=”gogl”


[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]
“AutoSearch”=dword:00000004


Save the file as google.reg. 


To add these information to registry to Windows, click YES to enter the information into the registry.

BLOG AUTHORS