<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:georss="http://www.georss.org/georss" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0"><id>tag:blogger.com,1999:blog-3727464234422052205</id><updated>2010-01-24T08:12:38.048-08:00</updated><title type="text">GadGet - ARENA</title><subtitle type="html">Get updates on latest gadgets and gizmos, tips &amp; tricks ,upcoming gadgets</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://gadarena.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://gadarena.blogspot.com/" /><link rel="next" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default?start-index=26&amp;max-results=25" /><author><name>Anonymous</name><email>noreply@blogger.com</email></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>136</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/Gadget-Arena" /><feedburner:info uri="gadget-arena" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>Gadget-Arena</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><entry><id>tag:blogger.com,1999:blog-3727464234422052205.post-2866246926535421573</id><published>2007-08-26T00:04:00.001-07:00</published><updated>2007-08-26T00:04:55.189-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tutorials" /><category scheme="http://www.blogger.com/atom/ns#" term="Tips 'n' Tricks" /><title type="text">Translating Binary to Text: The Hard Way</title><content type="html">A Tutorial for those willing to Learn&lt;br /&gt;&lt;br /&gt;Contents&lt;br /&gt;1. Introduction&lt;br /&gt;2. The Binary System&lt;br /&gt;3. Converting Binary to ASCII (Text)&lt;br /&gt;&lt;br /&gt;Introduction:&lt;br /&gt;We’ve all seen binary code. We’ve come to think of them as a bunch of ones and zeroes in long strings…&lt;br /&gt;010010101010101001101011&lt;br /&gt;&lt;br /&gt;But these ones and zeroes can also represent decimal numbers. First off, I will show you how to read these numbers as the decimal numbers we’re used to in our daily life. Then, I will show you how to use those numbers and your keypad to translate them into text. Note that your computer doesn’t use the decimal system, so technically, when it converts binary to text, it doesn’t go through the process I will show you. This is just a divertive way of explaining you how the binary system works.&lt;br /&gt;&lt;br /&gt;The Binary System:&lt;br /&gt;Here’s a simple example of binary:&lt;br /&gt;10101&lt;br /&gt;&lt;br /&gt;Let’s think of the example above as empty slots:&lt;br /&gt;_ _ _ _ _&lt;br /&gt;&lt;br /&gt;First off, you read binary from right-to-left. It’s just the way it’s designed. The first slot from the right represents a value of one, the second from the right a value of two, the third from the right a value of four, the fourth from the right a value of eight, the fifth from the right a value of sixteen, and the cycle continues by multiples of 2. This will never change.&lt;br /&gt;&lt;br /&gt;By putting a 1 or a 0 in those slots you are either saying you want to corresponding value that’s attached to that slot or you don’t. A 1 means yes, and a 0 means no. For example, putting a zero in the first slot from the right, but a 1 in the second slot from the right means you want a two, but not a one:&lt;br /&gt;_ _ _ 1 0&lt;br /&gt;&lt;br /&gt;As such, the number above equals to a decimal value of two.&lt;br /&gt;&lt;br /&gt;As an example, let’s say you want to represent eight in binary form. Well, thinking about the slots, you want the first slot to be 0 because you don’t want a one, you want the second slot to also be 0 because you don’t want a two, you want the third slot to also to be 0 because you don’t want a four, but you want the fifth slot to be 1 because you want a value of eight. As such, eight in binary form is:&lt;br /&gt;1 0 0 0 (or simply 1000 without those underlines)&lt;br /&gt;&lt;br /&gt;Now it is important to note that the amount of zeroes that precede the first value of one from the left is unimportant. So for example:&lt;br /&gt;1 0 0 0 is the same as 0 0 0 1 0 0 0 (1000 = 000100)&lt;br /&gt;&lt;br /&gt;To get it cleared up, here’s another example:&lt;br /&gt;0 1 is the same as 1&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Exercises: What do the following equal in decimal terms?&lt;br /&gt;a) 100&lt;br /&gt;b] 000100&lt;br /&gt;c) 100000&lt;br /&gt;d) 0010&lt;br /&gt;&lt;br /&gt;Answers:&lt;br /&gt;a) 4&lt;br /&gt;b] 4&lt;br /&gt;c) 32&lt;br /&gt;d) 2&lt;br /&gt;&lt;br /&gt;If you got the answers above right, then you pretty much understand the basics of binary.&lt;br /&gt;Let’s now understand how to get the corresponding decimal values to the numbers which are not multiples of 2.&lt;br /&gt;&lt;br /&gt;To get the total value of a binary number, add the values corresponding to each slot. So, for example, three in binary would be:&lt;br /&gt;11&lt;br /&gt;&lt;br /&gt;The above corresponds to three because if you add the total values of all the slots, that is to say a one from the slot to the right, and a two from the second slot to the right, then it equals three.&lt;br /&gt;&lt;br /&gt;As another example, let’s say you want to represent 5 in binary terms. Then you would need a value of one to be added to a value of four, and you would not want a value of two:&lt;br /&gt;101 [Reading from the right: 1(one) + 0(two) + 1(four) = five]&lt;br /&gt;&lt;br /&gt;Here’s an additional example:&lt;br /&gt;001011 [Reading from the right: 1(one) + 1(two) + 0(four) + 1(eight) + 0(sixteen) + 0(thirty-two) = eleven)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Exercises: What do the following equal in decimal terms?&lt;br /&gt;a) 11011&lt;br /&gt;b] 110&lt;br /&gt;c) 010101&lt;br /&gt;d) 10110&lt;br /&gt;&lt;br /&gt;Answers:&lt;br /&gt;a) 27&lt;br /&gt;b] 6&lt;br /&gt;c) 21&lt;br /&gt;d) 22&lt;br /&gt;&lt;br /&gt;If you got the above questions correct [without cheating], then you essentially understand the binary system. Understanding the binary system was the hard part. What follows is pretty easy.&lt;br /&gt;&lt;br /&gt;3. Converting Binary to ASCII (Text)&lt;br /&gt;ASCII is essentially the letters, numbers and symbols that are stored in our computers through the use of fonts. When the keyboard relays the buttons you pressed, it sends in a code which is then converted to the ASCII equivalent of “k” or “5” or whatever key you pressed.&lt;br /&gt;&lt;br /&gt;Here’s an example of a message “hidden” in binary text:&lt;br /&gt;0100100001100101011011000110110001101111&lt;br /&gt;&lt;br /&gt;Now there are only so many letters, numbers and symbols stored for ASCII. Having sets of 8 digits for their binary equivalent is more than enough to represent all of these letters and the like. As such, all strings that represent text like in the above are separated into bits of 8 for simplicity:&lt;br /&gt;01001000 01100101 01101100 01101100 01101111&lt;br /&gt;&lt;br /&gt;Okay, so our example message was separated into 8 digit strings. The decimal value for each of these strings in the example was calculated for you.&lt;br /&gt;01001000 = 72&lt;br /&gt;01100101 = 101&lt;br /&gt;01101100 = 108&lt;br /&gt;01101100 = 108&lt;br /&gt;01101111 = 111&lt;br /&gt;&lt;br /&gt;The result was 72,101,108,108,111. Now, there is something called the ASCII table. It essentially corresponds to the binary numbers from yore to the equivalent letters/symbols/numbers. But since we found the decimal values of these binary strings, we can use a major shortcut.&lt;br /&gt;&lt;br /&gt;By pressing ALT + [The Number], you will get the ASCII equivalent of that number. For example, by pressing the ALT key and at then (while keeping it down) the numbers 72 in any text editor, you will get the corresponding “H” to show up.&lt;br /&gt;&lt;br /&gt;Let’s do so for the entire example message:&lt;br /&gt;72 = H&lt;br /&gt;101 = e&lt;br /&gt;108 = l&lt;br /&gt;108 = l&lt;br /&gt;111 = o&lt;br /&gt;&lt;br /&gt;So the entire “hidden” message translates to “Hello”.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Exercise: Decode the following message&lt;br /&gt;010000110110111101101110011001110111001001100001011101000111010101101100011000010111010001&lt;br /&gt;101001011011110110111001110011 00100001&lt;br /&gt;&lt;br /&gt;Hint: The first step on your way to decoding the message (separated into bytes for you)&lt;br /&gt;01000011 01101111 01101110 01100111 01110010 01100001 01110100 01110101 01101100 01100001 01110100 01101001 01101111 01101110 01110011 00100001&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;PS. Please note that this is the information as I've come to understand it. As such, it's somewhat easier to understand, but it may not necessarily be accurate. In other words, if another source contradicts what has been indicated here, that source is probably right. This text was completely written up by me, with no other sources for aid. If you wish to distribute this text, feel free to do so, but I would appreciate it if you contacted me first.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3727464234422052205-2866246926535421573?l=gadarena.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://gadarena.blogspot.com/feeds/2866246926535421573/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=3727464234422052205&amp;postID=2866246926535421573" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/2866246926535421573" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/2866246926535421573" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Gadget-Arena/~3/zB-6FeRy5kI/translating-binary-to-text-hard-way.html" title="Translating Binary to Text: The Hard Way" /><author><name>The - Solipsist</name><uri>http://www.blogger.com/profile/06237678519848576241</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="06454995248712704911" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">2</thr:total><feedburner:origLink>http://gadarena.blogspot.com/2007/08/translating-binary-to-text-hard-way.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-3727464234422052205.post-5233128033498923974</id><published>2007-08-26T00:02:00.000-07:00</published><updated>2007-08-26T00:03:44.497-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Windows Tips and Tricks" /><title type="text">Run Commands</title><content type="html">Run Commands:&lt;br /&gt;&lt;br /&gt;Quote:&lt;br /&gt;compmgmt.msc - Computer management&lt;br /&gt;devmgmt.msc - Device manager&lt;br /&gt;diskmgmt.msc - Disk management&lt;br /&gt;dfrg.msc - Disk defrag&lt;br /&gt;eventvwr.msc - Event viewer&lt;br /&gt;fsmgmt.msc - Shared folders&lt;br /&gt;gpedit.msc - Group policies&lt;br /&gt;lusrmgr.msc - Local users and groups&lt;br /&gt;perfmon.msc - Performance monitor&lt;br /&gt;rsop.msc - Resultant set of policies&lt;br /&gt;secpol.msc - Local security settings&lt;br /&gt;services.msc - Various Services&lt;br /&gt;msconfig - System Configuration Utility&lt;br /&gt;regedit - Registry Editor&lt;br /&gt;msinfo32 _ System Information&lt;br /&gt;sysedit _ System Edit&lt;br /&gt;win.ini _ windows loading information(also system.ini)&lt;br /&gt;winver _ Shows current version of windows&lt;br /&gt;mailto: _ Opens default email client&lt;br /&gt;command _ Opens command prompt&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Run Commands to access the control panel:&lt;br /&gt;&lt;br /&gt;Quote:&lt;br /&gt;Add/Remove Programs control appwiz.cpl&lt;br /&gt;Date/Time Properties control timedate.cpl&lt;br /&gt;Display Properties control desk.cpl&lt;br /&gt;FindFast control findfast.cpl&lt;br /&gt;Fonts Folder control fonts&lt;br /&gt;Internet Properties control inetcpl.cpl&lt;br /&gt;Keyboard Properties control main.cpl keyboard&lt;br /&gt;Mouse Properties control main.cpl&lt;br /&gt;Multimedia Properties control mmsys.cpl&lt;br /&gt;Network Properties control netcpl.cpl&lt;br /&gt;Password Properties control password.cpl&lt;br /&gt;Printers Folder control printers&lt;br /&gt;Sound Properties control mmsys.cpl sounds&lt;br /&gt;System Properties control sysdm.cpl&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Command Prompt:&lt;br /&gt;&lt;br /&gt;Quote:&lt;br /&gt;ANSI.SYS Defines functions that change display graphics, control cursor movement, and reassign keys.&lt;br /&gt;APPEND Causes MS-DOS to look in other directories when editing a file or running a command.&lt;br /&gt;ARP Displays, adds, and removes arp information from network devices.&lt;br /&gt;ASSIGN Assign a drive letter to an alternate letter.&lt;br /&gt;ASSOC View the file associations.&lt;br /&gt;AT Schedule a time to execute commands or programs.&lt;br /&gt;ATMADM Lists connections and addresses seen by Windows ATM call manager.&lt;br /&gt;ATTRIB Display and change file attributes.&lt;br /&gt;BATCH Recovery console command that executes a series of commands in a file.&lt;br /&gt;BOOTCFG Recovery console command that allows a user to view, modify, and rebuild the boot.ini&lt;br /&gt;BREAK Enable / disable CTRL + C feature.&lt;br /&gt;CACLS View and modify file ACL's.&lt;br /&gt;CALL Calls a batch file from another batch file.&lt;br /&gt;CD Changes directories.&lt;br /&gt;CHCP Supplement the International keyboard and character set information.&lt;br /&gt;CHDIR Changes directories.&lt;br /&gt;CHKDSK Check the hard disk drive running FAT for errors.&lt;br /&gt;CHKNTFS Check the hard disk drive running NTFS for errors.&lt;br /&gt;CHOICE Specify a listing of multiple options within a batch file.&lt;br /&gt;CLS Clears the screen.&lt;br /&gt;CMD Opens the command interpreter.&lt;br /&gt;COLOR Easily change the foreground and background color of the MS-DOS window.&lt;br /&gt;COMP Compares files.&lt;br /&gt;COMPACT Compresses and uncompress files.&lt;br /&gt;CONTROL Open control panel icons from the MS-DOS prompt.&lt;br /&gt;CONVERT Convert FAT to NTFS.&lt;br /&gt;COPY Copy one or more files to an alternate location.&lt;br /&gt;CTTY Change the computers input/output devices.&lt;br /&gt;DATE View or change the systems date.&lt;br /&gt;DEBUG Debug utility to create assembly programs to modify hardware settings.&lt;br /&gt;DEFRAG Re-arrange the hard disk drive to help with loading programs.&lt;br /&gt;DEL Deletes one or more files.&lt;br /&gt;DELETE Recovery console command that deletes a file.&lt;br /&gt;DELTREE Deletes one or more files and/or directories.&lt;br /&gt;DIR List the contents of one or more directory.&lt;br /&gt;DISABLE Recovery console command that disables Windows system services or drivers.&lt;br /&gt;DISKCOMP Compare a disk with another disk.&lt;br /&gt;DISKCOPY Copy the contents of one disk and place them on another disk.&lt;br /&gt;DOSKEY Command to view and execute commands that have been run in the past.&lt;br /&gt;DOSSHELL A GUI to help with early MS-DOS users.&lt;br /&gt;DRIVPARM Enables overwrite of original device drivers.&lt;br /&gt;ECHO Displays messages and enables and disables echo.&lt;br /&gt;EDIT View and edit files.&lt;br /&gt;EDLIN View and edit files.&lt;br /&gt;EMM386 Load extended Memory Manager.&lt;br /&gt;ENABLE Recovery console command to enable a disable service or driver.&lt;br /&gt;ENDLOCAL Stops the localization of the environment changes enabled by the setlocal command.&lt;br /&gt;ERASE Erase files from computer.&lt;br /&gt;EXIT Exit from the command interpreter.&lt;br /&gt;EXPAND Expand a M*cros*ft Windows file back to it's original format.&lt;br /&gt;EXTRACT Extract files from the M*cros*ft Windows cabinets.&lt;br /&gt;FASTHELP Displays a listing of MS-DOS commands and information about them.&lt;br /&gt;FC Compare files.&lt;br /&gt;FDISK Utility used to create partitions on the hard disk drive.&lt;br /&gt;FIND Search for text within a file.&lt;br /&gt;FINDSTR Searches for a string of text within a file.&lt;br /&gt;FIXBOOT Writes a new boot sector.&lt;br /&gt;FIXMBR Writes a new boot record to a disk drive.&lt;br /&gt;FOR Boolean used in batch files.&lt;br /&gt;FORMAT Command to erase and prepare a disk drive.&lt;br /&gt;FTP Command to connect and operate on a FTP server.&lt;br /&gt;FTYPE Displays or modifies file types used in file extension associations.&lt;br /&gt;GOTO Moves a batch file to a specific label or location.&lt;br /&gt;GRAFTABL Show extended characters in graphics mode.&lt;br /&gt;HELP Display a listing of commands and brief explanation.&lt;br /&gt;IF Allows for batch files to perform conditional processing.&lt;br /&gt;IFSHLP.SYS 32-bit file manager.&lt;br /&gt;IPCONFIG Network command to view network adapter settings and assigned values.&lt;br /&gt;KEYB Change layout of keyboard.&lt;br /&gt;LABEL Change the label of a disk drive.&lt;br /&gt;LH Load a device driver in to high memory.&lt;br /&gt;LISTSVC Recovery console command that displays the services and drivers.&lt;br /&gt;LOADFIX Load a program above the first 64k.&lt;br /&gt;LOADHIGH Load a device driver in to high memory.&lt;br /&gt;LOCK Lock the hard disk drive.&lt;br /&gt;LOGON Recovery console command to list installations and enable administrator login.&lt;br /&gt;MAP Displays the device name of a drive.&lt;br /&gt;MD Command to create a new directory.&lt;br /&gt;MEM Display memory on system.&lt;br /&gt;MKDIR Command to create a new directory.&lt;br /&gt;MODE Modify the port or display settings.&lt;br /&gt;MORE Display one page at a time.&lt;br /&gt;MOVE Move one or more files from one directory to another directory.&lt;br /&gt;MSAV Early M*cros*ft Virus scanner.&lt;br /&gt;MSD Diagnostics utility.&lt;br /&gt;MSCDEX Utility used to load and provide access to the CD-ROM.&lt;br /&gt;NBTSTAT Displays protocol statistics and current TCP/IP connections using NBT&lt;br /&gt;NET Update, fix, or view the network or network settings&lt;br /&gt;NETSH Configure dynamic and static network information from MS-DOS.&lt;br /&gt;NETSTAT Display the TCP/IP network protocol statistics and information.&lt;br /&gt;NLSFUNC Load country specific information.&lt;br /&gt;NSLOOKUP Look up an IP address of a domain or host on a network.&lt;br /&gt;PATH View and modify the computers path location.&lt;br /&gt;PATHPING View and locate locations of network latency.&lt;br /&gt;PAUSE Command used in batch files to stop the processing of a command.&lt;br /&gt;PING Test / send information to another network computer or network device.&lt;br /&gt;POPD Changes to the directory or network path stored by the pushd command.&lt;br /&gt;POWER Conserve power with computer portables.&lt;br /&gt;PRINT Prints data to a printer port.&lt;br /&gt;PROMPT View and change the MS-DOS prompt.&lt;br /&gt;PUSHD Stores a directory or network path in memory so it can be returned to at any time.&lt;br /&gt;QBASIC Open the QBasic.&lt;br /&gt;RD Removes an empty directory.&lt;br /&gt;REN Renames a file or directory.&lt;br /&gt;RENAME Renames a file or directory.&lt;br /&gt;RMDIR Removes an empty directory.&lt;br /&gt;ROUTE View and configure windows network route tables.&lt;br /&gt;RUNAS Enables a user to execute a program on another computer.&lt;br /&gt;SCANDISK Run the scandisk utility.&lt;br /&gt;SCANREG Scan registry and recover registry from errors.&lt;br /&gt;SET Change one variable or string to another.&lt;br /&gt;SETLOCAL Enables local environments to be changed without affecting anything else.&lt;br /&gt;SETVER Change MS-DOS version to trick older MS-DOS programs.&lt;br /&gt;SHARE Installs support for file sharing and locking capabilities.&lt;br /&gt;SHIFT Changes the position of replaceable parameters in a batch program.&lt;br /&gt;SHUTDOWN Shutdown the computer from the MS-DOS prompt.&lt;br /&gt;SMARTDRV Create a disk cache in conventional memory or extended memory.&lt;br /&gt;SORT Sorts the input and displays the output to the screen.&lt;br /&gt;START Start a separate window in Windows from the MS-DOS prompt.&lt;br /&gt;SUBST Substitute a folder on your computer for another drive letter.&lt;br /&gt;SWITCHES Remove add functions from MS-DOS.&lt;br /&gt;SYS Transfer system files to disk drive.&lt;br /&gt;TELNET Telnet to another computer / device from the prompt.&lt;br /&gt;TIME View or modify the system time.&lt;br /&gt;TITLE Change the title of their MS-DOS window.&lt;br /&gt;TRACERT Visually view a network packets route across a network.&lt;br /&gt;TREE View a visual tree of the hard disk drive.&lt;br /&gt;TYPE Display the contents of a file.&lt;br /&gt;UNDELETE Undelete a file that has been deleted.&lt;br /&gt;UNFORMAT Unformat a hard disk drive.&lt;br /&gt;UNLOCK Unlock a disk drive.&lt;br /&gt;VER Display the version information.&lt;br /&gt;VERIFY Enables or disables the feature to determine if files have been written properly.&lt;br /&gt;VOL Displays the volume information about the designated drive.&lt;br /&gt;XCOPY Copy multiple files, directories, and/or drives from one location to another.&lt;br /&gt;TRUENAME When placed before a file, will display the whole directory in which it exists&lt;br /&gt;TASKKILL It allows you to kill those unneeded or locked up applications&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Windows XP Shortcuts:&lt;br /&gt;&lt;br /&gt;Quote:&lt;br /&gt;ALT+- (ALT+hyphen) Displays the Multiple Document Interface (MDI) child window's System menu&lt;br /&gt;ALT+ENTER View properties for the selected item&lt;br /&gt;ALT+ESC Cycle through items in the order they were opened&lt;br /&gt;ALT+F4 Close the active item, or quit the active program&lt;br /&gt;ALT+SPACEBAR Display the System menu for the active window&lt;br /&gt;ALT+TAB Switch between open items&lt;br /&gt;ALT+Underlined letter Display the corresponding menu&lt;br /&gt;BACKSPACE View the folder one level up in My Computer or Windows Explorer&lt;br /&gt;CTRL+A Select all&lt;br /&gt;CTRL+B Bold&lt;br /&gt;CTRL+C Copy&lt;br /&gt;CTRL+I Italics&lt;br /&gt;CTRL+O Open an item&lt;br /&gt;CTRL+U Underline&lt;br /&gt;CTRL+V Paste&lt;br /&gt;CTRL+X Cut&lt;br /&gt;CTRL+Z Undo&lt;br /&gt;CTRL+F4 Close the active document&lt;br /&gt;CTRL while dragging Copy selected item&lt;br /&gt;CTRL+SHIFT while dragging Create shortcut to selected iteM&lt;br /&gt;CTRL+RIGHT ARROW Move the insertion point to the beginning of the next word&lt;br /&gt;CTRL+LEFT ARROW Move the insertion point to the beginning of the previous word&lt;br /&gt;CTRL+DOWN ARROW Move the insertion point to the beginning of the next paragraph&lt;br /&gt;CTRL+UP ARROW Move the insertion point to the beginning of the previous paragraph&lt;br /&gt;SHIFT+DELETE Delete selected item permanently without placing the item in the Recycle Bin&lt;br /&gt;ESC Cancel the current task&lt;br /&gt;F1 Displays Help&lt;br /&gt;F2 Rename selected item&lt;br /&gt;F3 Search for a file or folder&lt;br /&gt;F4 Display the Address bar list in My Computer or Windows Explorer&lt;br /&gt;F5 Refresh the active window&lt;br /&gt;F6 Cycle through screen elements in a window or on the desktop&lt;br /&gt;F10 Activate the menu bar in the active program&lt;br /&gt;SHIFT+F10 Display the shortcut menu for the selected item&lt;br /&gt;CTRL+ESC Display the Start menu&lt;br /&gt;SHIFT+CTRL+ESC Launches Task Manager&lt;br /&gt;SHIFT when you insert a CD Prevent the CD from automatically playing&lt;br /&gt;WIN Display or hide the Start menu&lt;br /&gt;WIN+BREAK Display the System Properties dialog box&lt;br /&gt;WIN+D Minimizes all Windows and shows the Desktop&lt;br /&gt;WIN+E Open Windows Explorer&lt;br /&gt;WIN+F Search for a file or folder&lt;br /&gt;WIN+F+CTRL Search for computers&lt;br /&gt;WIN+L Locks the desktop&lt;br /&gt;WIN+M Minimize or restore all windows&lt;br /&gt;WIN+R Open the Run dialog box&lt;br /&gt;WIN+TAB Switch between open items&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Windows Explorer Shortcuts:&lt;br /&gt;&lt;br /&gt;Quote:&lt;br /&gt;ALT+SPACEBAR - Display the current window’s system menu&lt;br /&gt;SHIFT+F10 - Display the item's context menu&lt;br /&gt;CTRL+ESC - Display the Start menu&lt;br /&gt;ALT+TAB - Switch to the window you last used&lt;br /&gt;ALT+F4 - Close the current window or quit&lt;br /&gt;CTRL+A - Select all items&lt;br /&gt;CTRL+X - Cut selected item(s)&lt;br /&gt;CTRL+C - Copy selected item(s)&lt;br /&gt;CTRL+V - Paste item(s)&lt;br /&gt;CTRL+Z - Undo last action&lt;br /&gt;CTRL+(+) - Automatically resize the columns in the right hand pane&lt;br /&gt;TAB - Move forward through options&lt;br /&gt;ALT+RIGHT ARROW - Move forward to a previous view&lt;br /&gt;ALT+LEFT ARROW - Move backward to a previous view&lt;br /&gt;SHIFT+DELETE - Delete an item immediately&lt;br /&gt;BACKSPACE - View the folder one level up&lt;br /&gt;ALT+ENTER - View an item’s properties&lt;br /&gt;F10 - Activate the menu bar in programs&lt;br /&gt;F6 - Switch between left and right panes&lt;br /&gt;F5 - Refresh window contents&lt;br /&gt;F3 - Display Find application&lt;br /&gt;F2 - Rename selected item&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Internet Explorer Shortcuts:&lt;br /&gt;&lt;br /&gt;Quote:&lt;br /&gt;CTRL+A - Select all items on the current page&lt;br /&gt;CTRL+D - Add the current page to your Favorites&lt;br /&gt;CTRL+E - Open the Search bar&lt;br /&gt;CTRL+F - Find on this page&lt;br /&gt;CTRL+H - Open the History bar&lt;br /&gt;CTRL+I - Open the Favorites bar&lt;br /&gt;CTRL+N - Open a new window&lt;br /&gt;CTRL+O - Go to a new location&lt;br /&gt;CTRL+P - Print the current page or active frame&lt;br /&gt;CTRL+S - Save the current page&lt;br /&gt;CTRL+W - Close current browser window&lt;br /&gt;CTRL+ENTER - Adds the http://www. (url) .com&lt;br /&gt;SHIFT+CLICK - Open link in new window&lt;br /&gt;BACKSPACE - Go to the previous page&lt;br /&gt;ALT+HOME - Go to your Home page&lt;br /&gt;HOME - Move to the beginning of a document&lt;br /&gt;TAB - Move forward through items on a page&lt;br /&gt;END - Move to the end of a document&lt;br /&gt;ESC - Stop downloading a page&lt;br /&gt;F11 - Toggle full-screen view&lt;br /&gt;F5 - Refresh the current page&lt;br /&gt;F4 - Display list of typed addresses&lt;br /&gt;F6 - Change Address bar and page focus&lt;br /&gt;ALT+RIGHT ARROW - Go to the next page&lt;br /&gt;SHIFT+CTRL+TAB - Move back between frames&lt;br /&gt;SHIFT+F10 - Display a shortcut menu for a link&lt;br /&gt;SHIFT+TAB - Move back through the items on a page&lt;br /&gt;CTRL+TAB - Move forward between frames&lt;br /&gt;CTRL+C - Copy selected items to the clipboard&lt;br /&gt;CTRL+V - Insert contents of the clipboard&lt;br /&gt;ENTER - Activate a selected link&lt;br /&gt;HOME - Move to the beginning of a document&lt;br /&gt;END - Move to the end of a document&lt;br /&gt;F1 - Display Internet Explorer Help&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3727464234422052205-5233128033498923974?l=gadarena.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://gadarena.blogspot.com/feeds/5233128033498923974/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=3727464234422052205&amp;postID=5233128033498923974" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/5233128033498923974" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/5233128033498923974" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Gadget-Arena/~3/G7w6ITm7IXM/run-commands.html" title="Run Commands" /><author><name>The - Solipsist</name><uri>http://www.blogger.com/profile/06237678519848576241</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="06454995248712704911" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://gadarena.blogspot.com/2007/08/run-commands.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-3727464234422052205.post-6229331216373976979</id><published>2007-08-26T00:01:00.000-07:00</published><updated>2007-08-26T00:02:05.706-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tutorials" /><category scheme="http://www.blogger.com/atom/ns#" term="Internet Tips and TRICKS" /><category scheme="http://www.blogger.com/atom/ns#" term="Windows Tips and Tricks" /><title type="text">How to do a high Quality DivX rip</title><content type="html">First and foremost, go to&lt;br /&gt;&lt;br /&gt;http://www.doom9.org&lt;br /&gt;&lt;br /&gt;and go to their downloads section.&lt;br /&gt;get the following files:&lt;br /&gt;under Audio:&lt;br /&gt;Besweet&lt;br /&gt;Besweet GUI&lt;br /&gt;&lt;br /&gt;Under Codecs:&lt;br /&gt;DivX 5.2.1 Pro&lt;br /&gt;&lt;br /&gt;Under Divx/Mpeg-4 encoders:&lt;br /&gt;Nandub 1.0RC2&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;then get this:&lt;br /&gt;http://www.dvd-digest.tv/downloads/files/virtualdub/vdub_pack-145.exe&lt;br /&gt;alternatively, get any version of virtualdub that includes mp3 support.&lt;br /&gt;&lt;br /&gt;these are all the required tools, there are ways with fewer items, but they produce very inferior outputs. Besides, after you get used to it, the whole process is really easy.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Okay, first and foremost, pull out Nandub. This is the step that takes the longest, as well as where you will make most of your decisions. I am going to assume that you are making a 1 cd rip. If you do what is in this faq, there won't be much reason to do anything else. Twisted Evil&lt;br /&gt;&lt;br /&gt;First of all, run Nandub . It will pop up a dialogue box, and want to know if you are making a new project or resuming an old. New, of course. Give it a name and tell fairuse where you want it to store its data. Fairuse is about to rip the entire movie to your harddrive(nice if you want to go rent a movie and return it the next day).&lt;br /&gt;&lt;br /&gt;Then it will ask for your DVD drive with a dvd in it. give it. Then, select which video stream you want. This is usually pretty obvious as the movie stream is the one that is an hour or so long. If there are two of these, check out the other tags. which languages and so on. worst case senario is that you have to trial and error. but that is rare. choose the long stream and hit next.&lt;br /&gt;&lt;br /&gt;This is where Nandub rips everything to your hard drive. depending on the speed of various components in your computer, and the length of the movie, this could take a while. let it finish. and then move on.&lt;br /&gt;&lt;br /&gt;Once all that is done, the really important screen pops up. this is where you set resolutions and video length. first, cut off the ending credits with the slider, but DO NOT mess with the beginning, as the sound and video frames need to start at the same point for sync. Then hit auto set for the cropping region, this is usually just fine. Then decide whether or not you want subtitles, which would be the subpicture stream. When you're done, hit next.&lt;br /&gt;&lt;br /&gt;Set the field mode to IVTC. This will give you better quality for size, as it runs at 24 frames instead of 30, due to the nature of divx, there won't be any noticeable difference in quality, but 6 less frames to deal with each second(and to store data for) really add up. Besides this is the correct mode for all movies anyway. NExt.&lt;br /&gt;&lt;br /&gt;This is where you set FINAL file size, including audio, for 1 cd rip, set to 690, for 2, set to double that. Then follow the directions they give you and choose a final resolution that has between a 120:1 and 150:1 (if possible, sometimes the movie is compression ratio. NEXT!&lt;br /&gt;&lt;br /&gt;This screen is where you determine quality. The autoadd button is usefull, and will give you decent quality, with 4 encodings. What this does is encode the movie 4 times, and then mix the frames to creat the final encoding, with the most efficient possible encoding for each frame. which is how we get bad ass quality for a single cd. I usually go for 8 encodings, as on my athlon 1600+ this rarely takes more than 8 hours to do, so I just go to sleep, wake up, and its done.&lt;br /&gt;&lt;br /&gt;Then add the audio encoding that you want.&lt;br /&gt;&lt;br /&gt;Hit next.&lt;br /&gt;And let the bastard fly. Depending on what you set, and your computer, this could take from a few hours to a few days. CPU's of 1.2Ghz+ are nice right about here. You can do stuff while this is going on, but it makes things take much longer.&lt;br /&gt;&lt;br /&gt;In the end you will have a bunch of encodings in the folder you specified at the beginning, the 4+ you chose and the final. You will also have an AC3 stream. Take the final AVI and toss it someplace to await the rest of the audio work you have to do, and you can erase the other encodings, freeing up a few gigs in the process of space.&lt;br /&gt;&lt;br /&gt;NEXT: AUDIO&lt;br /&gt;&lt;br /&gt;Ok, this is where Besweet comes in.&lt;br /&gt;&lt;br /&gt;Extract BeSweet and the GUI into the same folder. Now Run the GUI.&lt;br /&gt;&lt;br /&gt;At the top there are three fields. One for BeSweet which you should point at the besweet.exe that you should have unzipped to the same directory you are running the Gui from, A field for the AC3 stream, which is in the folder where you sent the encoded video from Fairuse, and an output mp3. The output mp3 has to be an existing file, so make a text file, rename it (yourmovie).mp3 and just say yeah, its cool to change the extension and make things weird. besweet will overwrite it so don't worry. point the third field at that file. The default values for stuff should be fine. but to make sure go to Azid 1(on the left) and select stereo, and then go to Lame 2 and select constant bit rate, and 128(assuming that is what you want). then click on besweet again, and finally, click on AC3 to MP3.&lt;br /&gt;&lt;br /&gt;Let the bastard fly.&lt;br /&gt;&lt;br /&gt;Now. When its done you should have an mp3 that is the entire soundtrack for the movie. This is where virtualdub comes in. run the virtualdub mp3 version. go to File:open video file and select the final encoding that you had from way back. Then go to audio and select mp3 audio. it will ask you for the file, give it the mp3. Go to audio again and make sure direct stream copy is selected. Then go to video and make sure that direct stream copy is also selected. Finally go to file again and SAVE AVI. give it a file name and let the bastard fly. This final file is your movie. Beautiful and glorious. Congratulations, its a DivX rip. Aren't you proud. burn to cd, and give copies to all your friends.&lt;br /&gt;&lt;br /&gt;Note: These is a RIP&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3727464234422052205-6229331216373976979?l=gadarena.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://gadarena.blogspot.com/feeds/6229331216373976979/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=3727464234422052205&amp;postID=6229331216373976979" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/6229331216373976979" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/6229331216373976979" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Gadget-Arena/~3/ol9DKzIAdmE/how-to-do-high-quality-divx-rip.html" title="How to do a high Quality DivX rip" /><author><name>The - Solipsist</name><uri>http://www.blogger.com/profile/06237678519848576241</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="06454995248712704911" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://gadarena.blogspot.com/2007/08/how-to-do-high-quality-divx-rip.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-3727464234422052205.post-6979759809431069089</id><published>2007-08-26T00:00:00.001-07:00</published><updated>2007-08-26T00:00:48.673-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tutorials" /><category scheme="http://www.blogger.com/atom/ns#" term="Tips 'n' Tricks" /><category scheme="http://www.blogger.com/atom/ns#" term="Internet Tips and TRICKS" /><title type="text">Find MP3's Real Quick</title><content type="html">Another good way of finding MP3s (or other formats) is using Google and typing the following:&lt;br /&gt;&lt;br /&gt;parent + directory + mp3 + OR + wma+ #dido#&lt;br /&gt;&lt;br /&gt;Replace #dido# by whatever artist you wish to find, for example:&lt;br /&gt;&lt;br /&gt;parent + directory + mp3 + OR + wma+ #Lamb#&lt;br /&gt;&lt;br /&gt;You should get plenty of dirs with MP3s or WMA files (you could add OGG, etc, to the query). Cheers.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3727464234422052205-6979759809431069089?l=gadarena.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://gadarena.blogspot.com/feeds/6979759809431069089/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=3727464234422052205&amp;postID=6979759809431069089" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/6979759809431069089" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/6979759809431069089" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Gadget-Arena/~3/XQguKBnoA2I/find-mp3s-real-quick.html" title="Find MP3's Real Quick" /><author><name>The - Solipsist</name><uri>http://www.blogger.com/profile/06237678519848576241</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="06454995248712704911" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://gadarena.blogspot.com/2007/08/find-mp3s-real-quick.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-3727464234422052205.post-7585484796918973048</id><published>2007-08-25T23:59:00.001-07:00</published><updated>2007-08-25T23:59:53.256-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tutorials" /><category scheme="http://www.blogger.com/atom/ns#" term="Internet Tips and TRICKS" /><title type="text">Warez Definations</title><content type="html">ISO:&lt;br /&gt;A file that is created from an image of a CD. You can make an iso yourself with a program such as Adaptec Easy CD Creator, or you can burn an ISO file to a CD-R to create a copy of a CD.&lt;br /&gt;&lt;br /&gt;Bin/cue files:&lt;br /&gt;These are also used to create an image of a CD. Most people burn these with CdrWin or Fireburner. The .bin file contains all the data for the cd, the .cue file is just a small file in text format telling the software exactly how to burn the data onto the CD.&lt;br /&gt;&lt;br /&gt;MP3:&lt;br /&gt;Don't know what these are? What cave have you been you living in? This is a format used to compress music files. You can create your own by encoding .wav files ripped from audio CDs. There are many free players that will play mp3s for you (see the Winamp tutorial)&lt;br /&gt;&lt;br /&gt;Ace files:&lt;br /&gt;These are used to compress/archive data. Use WinAce to decompress them, or to make your own. The normal format for ace files is to have .ace, .c01, .c01, etc.&lt;br /&gt;&lt;br /&gt;Rar files:&lt;br /&gt;Another compression/archive format. This is most commonly used on iso or bin files in order to split them up into smaller files (15 MB is the norm). Winrar and many other utilities can decompress these. Rar files are usually in the format .rar, .r01, .r02, etc. But don't be surprised if you don't see a .rar file. Just open up winrar and point it to .r01. You also may see them packed as .001, .002, etc. (maybe with a .rar, maybe not)&lt;br /&gt;&lt;br /&gt;Pub:&lt;br /&gt;This is an FTP that has left on anonymous access. Many are owned by large companies, so they have a lot of bandwidth. This makes it possible for one person to send files there and many people can download them at once =) These are found by scanning ranges of ips (see the FTP tutorial). Just remember, like the name says, these are public. Just because you upload something there or make directories with your name does not make it 'your pub'. At the same time, realize that if you come across a pub with another person/groups stuff on it that it may be in use to build other pubs from - so don't ruin it for many people by deleting stuff you find there. For more on this, go read some posts on our Bulletin Board.&lt;br /&gt;&lt;br /&gt;Proxy:&lt;br /&gt;A system that is set up to forward packets... There are many different kinds, check out the proxy tutorial for more info. Basically, a proxy server helps cover up your tracks because you connect to remote computers through the proxy. Think of it as the condom of the Internet&lt;br /&gt;&lt;br /&gt;SFV Files/ CRC Checks:&lt;br /&gt;SFV files contain information about files that they accompany. You can preform a CRC check on the files using a program such as WinSFV. This compares the information in the SFV file to the file itself. If the information doesn't match, then the file was probably messed up in transfer somehow.. try downloading it again, from a different source if possible.&lt;br /&gt;&lt;br /&gt;0-Day:&lt;br /&gt;Latest software releases.&lt;br /&gt;&lt;br /&gt;0-Sec:&lt;br /&gt;Same as above, although the period of time between ripping a game or application and it appearing on a warez site is even shorter.&lt;br /&gt;&lt;br /&gt;Ace File:&lt;br /&gt;The first file in a series of compressed archives (the one you double click on to decompress all the files at once).&lt;br /&gt;&lt;br /&gt;Active List:&lt;br /&gt;Similar to a mailing list, but uses ICQ to send instant messages to subscribers.&lt;br /&gt;&lt;br /&gt;Alpha:&lt;br /&gt;Software receives this label when it is in the very early stages of development. Usually full of bugs, so don't touch it with a barge pole.&lt;br /&gt;&lt;br /&gt;Anti-Leech:&lt;br /&gt;A system which uses cgi scripts to prevent people stealing links and then taking the credit for uploading the files.&lt;br /&gt;&lt;br /&gt;Appz:&lt;br /&gt;Short for applications. For example Flash 5 or GoLie 5.5.&lt;br /&gt;&lt;br /&gt;ASF File:&lt;br /&gt;The worst quality movie file format (still pretty good though), much smaller in size than dat or mpg.&lt;br /&gt;&lt;br /&gt;Banner Site:&lt;br /&gt;Password and username restricted FTP site. To get the correct login details you must click on several banners.&lt;br /&gt;&lt;br /&gt;Beta:&lt;br /&gt;An acronym for Business Software Alliance, an organisation who are responsible for enforcing anti-piracy litigation. Similar groups in charge of controlling software "theft" include the SIIA, SPA and ELSPA.&lt;br /&gt;&lt;br /&gt;BSOD:&lt;br /&gt;Many people read about BSODs on bulletin boards and think that they're being insulted, but there is no need to get paranoid. It is actually an acronym for "Blue Screen Of Death". These can occur for a multitude of reasons (old Bill likes to keep us guessing!) and are the bane of PC user's lives.&lt;br /&gt;&lt;br /&gt;Bulletin Board:&lt;br /&gt;A virtual meeting place on the web similar to a chat room except that it isn't in real time. One person leaves a message then others come along, read it and add a reply. Each new discussion is called a new topic or thread and has it's own link. Whenever a new topic is created the older topics are pushed one place downwards in the list. When someone replies to an older topic it is brought back to the top of the list.&lt;br /&gt;&lt;br /&gt;C?? File:&lt;br /&gt;File extension that indicates that a file is part of an .ace or .rar series of compressed files.&lt;br /&gt;&lt;br /&gt;Cgi Scripts:&lt;br /&gt;These are referrers which are used in url’s. When you click on a link with a ?cgi reference you are directed to a sponsor’s website or an anti-leech protected file.&lt;br /&gt;&lt;br /&gt;Cookie:&lt;br /&gt;A tiny text file (usually less than 1kb), which is stored on your hard drive when you visit a web site. These are used to remember who you are so that you can access members only areas on the site without having to type in a password every time or to retain your personalised settings so that they are available the next time you visit.&lt;br /&gt;&lt;br /&gt;Courier:&lt;br /&gt;Someone who is involved in the logistics of delivering new releases directly from the release groups themselves to FTP sites.&lt;br /&gt;&lt;br /&gt;Crack:&lt;br /&gt;A tiny executable file that is used to transform a shareware program into the full version. Also used to remove any copy protection from the main executable of games (this will already have been done in "ripped" warez games).&lt;br /&gt;&lt;br /&gt;CRC Error:&lt;br /&gt;These can occur when you try to decompress a file that has become corrupt during the downloading process, usually as a result of too much resuming.&lt;br /&gt;&lt;br /&gt;Credits:&lt;br /&gt;The amount of data you are permitted to download from a ratio site. The more credits you have the more software you are allowed to download.&lt;br /&gt;&lt;br /&gt;DAP:&lt;br /&gt;A quick way of referring to "Download Accelerator Plus", a free download manager that claims to speed up file transfers by up to three hundred per cent. It works by making multiple connections to the same file and is paid for by revolving advertising banners.Also supports resume. **EDITOR'S PICK**&lt;br /&gt;&lt;br /&gt;DAT File:&lt;br /&gt;File format used for movies, identical in quality and size to mpg as far as I can tell.&lt;br /&gt;&lt;br /&gt;DC:&lt;br /&gt;The lazy way of referring to the Dreamcast, Sega's latest console incarnation.&lt;br /&gt;&lt;br /&gt;Decompression:&lt;br /&gt;Unpacking many files that have been stored in a single archive.&lt;br /&gt;&lt;br /&gt;Distro:&lt;br /&gt;A concise means of referring to a distribution FTP site. These are huge storage areas which act as a springboard for the transfer of new releases. Their whereabouts are never public disclosed to aid their survival rate. You can think of them as the initial source from which warez emanates.&lt;br /&gt;&lt;br /&gt;Direct Downloads&lt;br /&gt;Links to actual files rather than other warez sites or pages. These are usually gathered together from many different sites and put on one page for your convenience.&lt;br /&gt;&lt;br /&gt;DivX:&lt;br /&gt;Movies ripped from a DVD using the DivX video codecs. Can be played back using Media Player.&lt;br /&gt;&lt;br /&gt;DIZ File:&lt;br /&gt;Short for description. Very brief text file found in warez archives stating the title of the software, the number of files that makes up the set and the group who released it.&lt;br /&gt;&lt;br /&gt;Download (or DL):&lt;br /&gt;Copying files from a web server or FTP site to your computer using a modem.&lt;br /&gt;&lt;br /&gt;Emulator:&lt;br /&gt;An application that simulates another computer system or console using your PC.&lt;br /&gt;&lt;br /&gt;FAQ:&lt;br /&gt;Stands for Frequently Asked Questions.&lt;br /&gt;&lt;br /&gt;FAW:&lt;br /&gt;Abbreviation for "Files Anywhere", a popular, free web storage service.&lt;br /&gt;&lt;br /&gt;File Transfer Protocol (FTP):&lt;br /&gt;The method used to transfer files from one computer to another using a modem.&lt;br /&gt;&lt;br /&gt;Flaming:&lt;br /&gt;A general net term for "verbally" attacking someone. This can be done via email, bulletin board, chat room or any medium which involves communication across the web.&lt;br /&gt;&lt;br /&gt;Freedrive:&lt;br /&gt;Virtual hard drive storage area on the web. Free to join and anything and everything can be uploaded or downloaded.&lt;br /&gt;&lt;br /&gt;Freeware:&lt;br /&gt;Unrestricted software that is downloaded from the net and is completely free to use. Often paid for using advertising.&lt;br /&gt;&lt;br /&gt;FTP Client / Browser:&lt;br /&gt;A program used to access, upload and download data from FTP sites.&lt;br /&gt;&lt;br /&gt;Fxp:&lt;br /&gt;The art of transferring data from one Ftp site to another using the connection speed of the slower of the two computers.&lt;br /&gt;&lt;br /&gt;Gamez:&lt;br /&gt;Pretty self-explanatory this one.&lt;br /&gt;&lt;br /&gt;Getright:&lt;br /&gt;One of the best download managers available.&lt;br /&gt;&lt;br /&gt;Gold:&lt;br /&gt;A piece of software is said to have gone gold when the final version is complete and it is ready to ship to the public.&lt;br /&gt;&lt;br /&gt;Gozilla:&lt;br /&gt;Another excellent download manager.&lt;br /&gt;&lt;br /&gt;Hacking:&lt;br /&gt;Gaining access to a remote computer without the authorisation to do so. Usually for the purposes of stealing confidential information or the malicious destruction of data.&lt;br /&gt;&lt;br /&gt;Hammering:&lt;br /&gt;Repeatedly trying to access an FTP site using an FTP client or download manager.&lt;br /&gt;&lt;br /&gt;HTTP:&lt;br /&gt;Stands for "Hypertext Transfer Protocol". The method you use to view a web page. Always comes before the address of a website in your Url bar.&lt;br /&gt;&lt;br /&gt;ICQ:&lt;br /&gt;Derives from the term "I Seek You" and is used for real time chat and transferring files over the internet.&lt;br /&gt;&lt;br /&gt;IP Address:&lt;br /&gt;A series of numbers separated by dots used to identify your computer on the Internet.&lt;br /&gt;&lt;br /&gt;IRC:&lt;br /&gt;Stands for "Instant Relay Chat". Used for real time chat and transferring files over the Internet.&lt;br /&gt;&lt;br /&gt;ISO:&lt;br /&gt;An exact copy of an original CD, all the multimedia bits and pieces are uncut and therefore they are extremely large and awkward to download.&lt;br /&gt;&lt;br /&gt;Java:&lt;br /&gt;Html scripts used to add functionality to or bring web pages alive. These include animation (such as the title graphic on my main page), menus, chat rooms, buttons, pop ups and so on.&lt;br /&gt;&lt;br /&gt;Key Generator:&lt;br /&gt;A tiny executable program that is capable of creating a serial number from a specified username. These are specific to particular applications or utilities, so a serial number created with one key generator will only work for the program for which the key generator was developed.&lt;br /&gt;&lt;br /&gt;Lamer:&lt;br /&gt;An annoying and overused general derogatory term used to insult/put down anyone and everything.&lt;br /&gt;&lt;br /&gt;Leeching:&lt;br /&gt;Downloading files without giving anything back in return or copying other people’s links.&lt;br /&gt;&lt;br /&gt;Mirror:&lt;br /&gt;An exact copy of a web site that is stored on a different server. Using multiple locations for warez sites allows the site to be accessed using a different address if the main site is deleted.&lt;br /&gt;&lt;br /&gt;Modchip:&lt;br /&gt;Very common website sponsor found on warez sites. They don’t mind their banners being used on illegal software sites because their products are one of the “grey areas” of the law. Modchips are small pieces of electronic circuitry which allow copied games to be played on your Playstation. If a Playstation has been fitted with a Modchip it is said to have been "chipped".&lt;br /&gt;&lt;br /&gt;MP3 File:&lt;br /&gt;Compressed music file format. Average track size is between 3 and 4 meg compared to 40-ish meg in wav format.&lt;br /&gt;&lt;br /&gt;MPG File:&lt;br /&gt;The best quality and largest movie file format.&lt;br /&gt;&lt;br /&gt;Multi Web Space Faker:&lt;br /&gt;A tool used to create lots of free web space accounts simultaneously.&lt;br /&gt;&lt;br /&gt;Name Zero:&lt;br /&gt;An organisation that offers free website domain names. The main drawbacks are that you have to put up with a very bulky banner residing at the bottom of your page and the fact that you never actually own your chosen address.&lt;br /&gt;&lt;br /&gt;NFO File:&lt;br /&gt;Short for info or information. Basic text file containing all the important details relating to a particular release, such as number of files, release date, copy protection system, installation instructions etc.&lt;br /&gt;&lt;br /&gt;Nuked:&lt;br /&gt;A release is said to be nuked if it is completely unplayable. Usually when this happens another group re-releases the particular game, although fixes do sometimes follow on to rescue the game from trash can.&lt;br /&gt;&lt;br /&gt;OEM:&lt;br /&gt;An acronym for Original Equipment Manufacturer. OEM software products are repackaged versions of the full retail product. They are often re-branded to suit the needs of the particular vender and are much more reasonable priced because they lack excessive packaging and a hard copy of the manual.&lt;br /&gt;&lt;br /&gt;OST:&lt;br /&gt;Not strictly a warez term this one, but one that you are likely to come across while searching for MP3 music. It stands for original soundtrack (movie music).&lt;br /&gt;&lt;br /&gt;Patch:&lt;br /&gt;We all know games and applications aren't perfect. When they are released we would hope that they have been thoroughly tested for bugs and incompatibility problems, but you can guarantee that many of these will still slip through the quality control net. Once the program is released to the general public, the bug reports start to flood in. A patch is a downloadable executive file which takes these reports into account and attempts to incorporate all the fixes for these known problems. A patch can resolve incompatibility problems, prevent crashes or improve the performance of a piece of software.&lt;br /&gt;&lt;br /&gt;Piracy:&lt;br /&gt;The replication and distribution of videos or computer software.&lt;br /&gt;&lt;br /&gt;Pop-ups:&lt;br /&gt;Irritating browser windows that open automatically when you visit a warez site. Usually contain voting portals or porn sites.&lt;br /&gt;&lt;br /&gt;Port:&lt;br /&gt;A port is a term used when referring to FTP sites and is an essential extension of the address used to access them. If the port number of an FTP site isn't specified the default setting of 21 will automatically be used.&lt;br /&gt;&lt;br /&gt;Pron:&lt;br /&gt;A long time ago in a galaxy far, far away someone posted a request for porn on a bulletin board, only, because of a typing error what he ended up asking for was "pron". Since then this has become a bit of a running joke and so it is now deliberately misspelled.&lt;br /&gt;&lt;br /&gt;Proxy:&lt;br /&gt;A third party server which acts as an anonymous go between whenever you request a web page or contact a remote server. The message from your computer is first sent through the proxy server before being relayed to the final destination so that it appears as though the request has come from the IP address of the proxy server rather than you. Used when you wish to maintain your privacy on the net or speed up your connection (much more detailed info on this subject in the "more tips" section).&lt;br /&gt;&lt;br /&gt;Psx:&lt;br /&gt;A quick way of referring to the Sony Playstation.&lt;br /&gt;&lt;br /&gt;Pub:&lt;br /&gt;A free for all FTP site where anonymous access is permitted.&lt;br /&gt;&lt;br /&gt;Pub Scanner:&lt;br /&gt;Someone who scours the net for anonymous access FTP sites which permit the creation and deletion of files. These are then exploited by uploading software for others to share.&lt;br /&gt;&lt;br /&gt;Pub Stealer:&lt;br /&gt;Someone who posts the IP address of a public FTP site which they themselves have not built. Some pub stealers justify this by claiming that the elitism of private FXP groups discriminates against those people who do not have access, yet others simply post other people's work to try to claim the credit for themselves. Either way though, pub stealers are despised by the FXP groups and praised by those who would otherwise not have access to them.&lt;br /&gt;&lt;br /&gt;Rar File:&lt;br /&gt;The first file in a series of compressed archives (the one you double click on to decompress all the files at once). Usually decompressed using a program called Winrar.&lt;br /&gt;&lt;br /&gt;Release Groups:&lt;br /&gt;A group of people who are involved in cracking and / or ripping software and then repackaging it into easily downloadable segments.&lt;br /&gt;&lt;br /&gt;Ratio:&lt;br /&gt;Two numbers separated by a semi-colon. Indicates how much data you must upload to an FTP site before you are permitted to download anything.&lt;br /&gt;&lt;br /&gt;Reg File:&lt;br /&gt;Tiny file that adds essential configuration details into the registry.&lt;br /&gt;&lt;br /&gt;Resume:&lt;br /&gt;The ability to stop and start downloading / uploading a file whenever you choose without having to start from the beginning again.&lt;br /&gt;&lt;br /&gt;Rip:&lt;br /&gt;Software that has had all the non-essential gubbins removed to reduce its size. Videos and music are always the first casualties.&lt;br /&gt;&lt;br /&gt;Raped:&lt;br /&gt;A release is branded with this term if it has been damaged beyond repair during the ripping process.&lt;br /&gt;&lt;br /&gt;RM File:&lt;br /&gt;Shorthand for Real Media, a file format used to encode video sequences, which can only be played back using the "Real Player". Video clips produced using this format are not of the highest quality, but do have the advantage of a small file size.&lt;br /&gt;&lt;br /&gt;ROM:&lt;br /&gt;Games which are designed for other platforms, but are played on the PC using an emulator.&lt;br /&gt;&lt;br /&gt;Serial:&lt;br /&gt;A valid username and password that is saved as a basic text file and is used to register a shareware program and therefore remove all the restrictions.&lt;br /&gt;&lt;br /&gt;Shareware:&lt;br /&gt;Try before you buy software downloaded from the net.&lt;br /&gt;&lt;br /&gt;Spam:&lt;br /&gt;Unsolicited junk e-mail. Supposedly stands for "Stupid Person's Annoying Message".&lt;br /&gt;&lt;br /&gt;Sponsor:&lt;br /&gt;To make some money webmasters can place adverts on their sites. Each time you click on these adverts or banners they get paid a few cents for bringing potential customers to the sponsors website.&lt;br /&gt;&lt;br /&gt;Surfer Friendly (SF):&lt;br /&gt;Surfer friendly sites supposedly have no blind links, pop-ups or porn banners. Don't be fooled by this label though as some sites will tell you fibs to get you to visit them.&lt;br /&gt;&lt;br /&gt;Sys Op:&lt;br /&gt;The person who has the responsibility for running the computer from which an FTP site has been established. When warez is uploaded to public FTP sites and then suddenly goes "Missing In Action" you can often lay the blame at the door of the Sys Op who has an obligation to make sure his/her server stays within the boundaries of the law (i.e. warez free).&lt;br /&gt;&lt;br /&gt;Top List:&lt;br /&gt;Chart which lists in rank order the best warez sites. Worked out on the basis of votes.&lt;br /&gt;&lt;br /&gt;Trading:&lt;br /&gt;Swapping warez, file for file via FTP, ICQ etc. Not usually approved of by the real warez community who believe that warez should be freely distributed. To put it simply, it is not the "warez way".&lt;br /&gt;&lt;br /&gt;Trainer:&lt;br /&gt;A small, executable program which sits in your taskbar while you play a game. Hotkeys are associated with cheat commands so that when they are pressed you are given extra ammo, weapons, lives or the ability to toggle between invincible/mortal modes etc etc.&lt;br /&gt;&lt;br /&gt;Trojans:&lt;br /&gt;Nasty virus like attachments which can be merged with executable files. These are tiny so are unlikely to arouse suspicion. When run they allow a hacker to access your computer and wreak havoc. Can occasionally be found in warez files.&lt;br /&gt;&lt;br /&gt;UBB:&lt;br /&gt;Shorthand for Ultimate Bulletin Board, currently the most popular script used for creating warez bulletin boards.&lt;br /&gt;&lt;br /&gt;UBB Hacks:&lt;br /&gt;This term falsely gives the impression that something destructive or malicious is involved, but when you hear people talking about a hack in the context of bulletin boards they are simply referring to code which helps to improve the functionality of a board. For example a "thread hack" would effect the way in which individual threads look and operate.&lt;br /&gt;&lt;br /&gt;Undeletable Pub:&lt;br /&gt;An anonymous access, public FTP site where the permission attributes are set to allow uploads and downloads, but do not permit deletion.&lt;br /&gt;&lt;br /&gt;Unzip:&lt;br /&gt;Unpacking or decompressing many files that have been stored in a single archive. Technically only used when talking about zip files.&lt;br /&gt;&lt;br /&gt;Upload:&lt;br /&gt;Copying files from your computer to a web server or FTP site using a modem.&lt;br /&gt;&lt;br /&gt;URL:&lt;br /&gt;Stands for "Uniform Resource Locator". The web site address you type into your browser.&lt;br /&gt;&lt;br /&gt;Voting:&lt;br /&gt;Members of the warez scene are very keen to reach the number one slot of top lists such as Voodoo, Top 60 etc. and will therefore encourage you to vote for their site to improve their position and get the credit they deserve (or not as the case may be!).&lt;br /&gt;Warez:&lt;br /&gt;Full version software that is uploaded to the internet and is available for free download.&lt;br /&gt;&lt;br /&gt;Warez Board:&lt;br /&gt;Bulletin board used by the warez community to share links and discuss anything related to warez.&lt;br /&gt;&lt;br /&gt;Winace:&lt;br /&gt;Another utility used for decompressing all the common archive formats. Not great in my opinion. See below for a better one.&lt;br /&gt;&lt;br /&gt;Winrar:&lt;br /&gt;Utility used for decompressing .rar files and much more.&lt;br /&gt;&lt;br /&gt;Winzip:&lt;br /&gt;An essential tool used to decompress warez files.&lt;br /&gt;&lt;br /&gt;Zip:&lt;br /&gt;A common compression format used to store warez .&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3727464234422052205-7585484796918973048?l=gadarena.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://gadarena.blogspot.com/feeds/7585484796918973048/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=3727464234422052205&amp;postID=7585484796918973048" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/7585484796918973048" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/7585484796918973048" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Gadget-Arena/~3/Quqr9iB9fFY/warez-definations.html" title="Warez Definations" /><author><name>The - Solipsist</name><uri>http://www.blogger.com/profile/06237678519848576241</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="06454995248712704911" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://gadarena.blogspot.com/2007/08/warez-definations.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-3727464234422052205.post-4082822759212475305</id><published>2007-08-25T23:57:00.000-07:00</published><updated>2007-08-25T23:58:56.132-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tutorials" /><category scheme="http://www.blogger.com/atom/ns#" term="Tips 'n' Tricks" /><category scheme="http://www.blogger.com/atom/ns#" term="Windows Tips and Tricks" /><title type="text">How To Make An Animted Logo, the easy way</title><content type="html">Things you will need:&lt;br /&gt;QUOTE&lt;br /&gt;1. Photoshop or Paintshop (any versions)&lt;br /&gt;2. Xara3D 5.xx&lt;br /&gt;3. Jasc animation shop 3.xx&lt;br /&gt;4. DUH!! A pic you want as a logo LOL&lt;br /&gt;&lt;br /&gt;Things you MIGHT need:&lt;br /&gt;      1. a computer&lt;br /&gt;      2. Internet connection&lt;br /&gt;      3. consciousness&lt;br /&gt;      4. corn on the cob&lt;br /&gt;&lt;br /&gt;Here they are for your convinience:&lt;br /&gt;Adobe Photoshop CS v8.0                thanx to TheCollector&lt;br /&gt;http://www.shareordie.com/index.php?showto...85&amp;hl=Photoshop&lt;br /&gt;&lt;br /&gt;Jasc Paint Shop Pro 9.0 Retail        thanx to arclite&lt;br /&gt;http://www.shareordie.com/index.php?showto...&amp;hl=Jasc&amp;amp;st=100&lt;br /&gt;&lt;br /&gt;Xara3D 5.02                            thanx to Zabref&lt;br /&gt;http://www.shareordie.com/index.php?showtopic=6512&amp;hl=XARA&lt;br /&gt;&lt;br /&gt;Jasc Animation Shop 3.11              thanx to sev7en&lt;br /&gt;http://www.shareordie.com/index.php?showtopic=34928&amp;hl=&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Steps:&lt;br /&gt;1. Using your photo editor fix/touch up you pic/logo to your liking….too easy(example bellow)&lt;br /&gt;user posted image&lt;br /&gt;&lt;br /&gt;2. Save it some where easy to find, for example “C:\pictures” or “C:\Windows\thecenterofhell\system\system32\system64\system128\???” although I don’t recommend the second one.&lt;br /&gt;&lt;br /&gt;3.Open Xara3D 5.xx, press “Alt+T” or click on the “T” button on the LEFT PANEL erase all of the text in the window that pops up then press ok.&lt;br /&gt;user posted image&lt;br /&gt;user posted image&lt;br /&gt;&lt;br /&gt;4. Press “Alt+U” or click on the yellow “U” surrounded in gray on the LEFT PANEL, check the “button” box and select a desire button type and leave this option window open you will need it again.&lt;br /&gt;user posted image&lt;br /&gt;&lt;br /&gt;5. Press the “At+X” or click the black “X” on the LEFT PANEL, click “load texture” in the pop up window, find the picture you made/adjusted and highlight it then click open or just double-click it. Use the “size, x, y, angle” sliders to adjust the picture or “texture” and in the “button options” windows use the “stretch, corners”(corners, only if using this option you can adjust) to adjust the button size.&lt;br /&gt;user posted image&lt;br /&gt;&lt;br /&gt;6. Press “Alt+A” or click the black “A” on the LEFT PANEL with what looks like to me is a half-halo with an arrow tip!? Anyway, here is a quick rundown on what the options here do: (BY THE WAY TO ACTIVATE OR “PREVIEW ANIMATION” PRESS “Ctrl+spacebar”).&lt;br /&gt;user posted image&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;     A. Frames per cycle: This is the number of frames for each complete cycle through the animation sequence. The greater the number of frames the smoother the animation. The drawback is that the file is bigger - this is a big disadvantage for web graphics. You may need to try different values to get the best results.&lt;br /&gt;     B. Frames per second: The animation speed. Slow speeds can give jerky movement. High speeds can also give jerky movement as the program displaying the animation may not be able to keep up. Again you may need to try different values.&lt;br /&gt;     C. Pause: This pauses the first frame before continuing the rest of the animation. Type in a value in centiseconds (1/100ths of a second) - a 2 second pause is 200 cs. Note that this applies only to the first frame; use Frames per cycle and Frames per second to control the overall speed of the animation.&lt;br /&gt;     D. Loop Value: Unchecked is Infinite, Any other value see for yourself. Lmao&lt;br /&gt;     E. Loop: This lets you specify how many times the animation should repeat itself. Note that some browsers take any value other than 1 to mean 'loop forever'. Therefore, your animation either plays once or forever.&lt;br /&gt;     F. Style: This controls the type of animation:&lt;br /&gt;Rotate 1 rotates all the text as one;    Rotate 2 rotates each character. (Buttons have a single Rotate option.) Rotate text/Rotate lights - select whether you want the text to rotate or the lights or both. You cannot rotate the shadow as this would create very large files. Direction - selects the direction of rotation.&lt;br /&gt;&lt;br /&gt;Swing options: Swing 1 swings all the text as one; Swing 2 swings each character. (Buttons have a single Swing option.) Angle - how much you want the heading to swing.&lt;br /&gt;&lt;br /&gt;Pulsate options: Pulsate 1 pulsates all the text as one; Pulsate 2 pulsates each character. (Buttons have a single Pulsate option.) Minimum text size - how far back to pulsate the text. Shrink+Grow &amp; Grow+Shrink - only have an effect if you Pause the animation. These options select the starting point for the animation (maximum or minimum.)&lt;br /&gt;&lt;br /&gt;      Fade options: Fade in - the heading emerges from the background color. Fade out - the heading merges into the  background color.   SO AFTER PICKING ONE………………..&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;7. On the top left go to FILE&gt;&gt;&gt;EXPORT ANIMATION or press “Ctrl+Shift+X” and save in desired location.&lt;br /&gt;user posted image&lt;br /&gt;&lt;br /&gt;8. When the next window pops up (Export as animated gif save location then options): Experiment with each one to get it right, but remember the SoD rules about Siggys and Avatars.&lt;br /&gt;user posted image&lt;br /&gt;user posted image&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Because Animated GIFs can be quite large, you may find that a 16 or 32 color, optimized palette per frame, produces the best results for the smallest file size. However you might need to experiment.&lt;br /&gt;Dithering always makes GIFs look better, but also makes them larger. When outputting at 256 colors you may find that there is no need to turn dithering on.&lt;br /&gt;Current Window Size lets you export just the area surrounding the text (Crop on) or the entire window area (Crop off.)&lt;br /&gt;User Defined lets you specify the dimensions of the bitmap.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3727464234422052205-4082822759212475305?l=gadarena.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://gadarena.blogspot.com/feeds/4082822759212475305/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=3727464234422052205&amp;postID=4082822759212475305" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/4082822759212475305" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/4082822759212475305" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Gadget-Arena/~3/FwA7D3bqf3k/how-to-make-animted-logo-easy-way.html" title="How To Make An Animted Logo, the easy way" /><author><name>The - Solipsist</name><uri>http://www.blogger.com/profile/06237678519848576241</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="06454995248712704911" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://gadarena.blogspot.com/2007/08/how-to-make-animted-logo-easy-way.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-3727464234422052205.post-3073400382593193644</id><published>2007-08-25T23:51:00.000-07:00</published><updated>2007-08-25T23:55:57.615-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tutorials" /><category scheme="http://www.blogger.com/atom/ns#" term="Internet Tips and TRICKS" /><title type="text">20 Great Google Secrets</title><content type="html">&lt;span style="color: rgb(0, 204, 204);font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;source : &lt;a href="http://www.pcmag.com/article2/0,4149,1306756,00.asp"&gt;pcmag&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Google is clearly the best general-purpose search engine on the Web (see&lt;br /&gt;&lt;br /&gt;www.pcmag.com/searchengines&lt;br /&gt;&lt;br /&gt;But most people don't use it to its best advantage. Do you just plug in a keyword or two and hope for the best? That may be the quickest way to search, but with more than 3 billion pages in Google's index, it's still a struggle to pare results to a manageable number.&lt;br /&gt;&lt;br /&gt;But Google is an remarkably powerful tool that can ease and enhance your Internet exploration. Google's search options go beyond simple keywords, the Web, and even its own programmers. Let's look at some of Google's lesser-known options.&lt;br /&gt;&lt;br /&gt;Syntax Search Tricks&lt;br /&gt;&lt;br /&gt;Using a special syntax is a way to tell Google that you want to restrict your searches to certain elements or characteristics of Web pages. Google has a fairly complete list of its syntax elements at&lt;br /&gt;&lt;br /&gt;www.google.com/help/operators.html&lt;br /&gt;&lt;br /&gt;. Here are some advanced operators that can help narrow down your search results.&lt;br /&gt;&lt;br /&gt;Intitle: at the beginning of a query word or phrase (intitle:"Three Blind Mice") restricts your search results to just the titles of Web pages.&lt;br /&gt;&lt;br /&gt;Intext: does the opposite of intitle:, searching only the body text, ignoring titles, links, and so forth. Intext: is perfect when what you're searching for might commonly appear in URLs. If you're looking for the term HTML, for example, and you don't want to get results such as&lt;br /&gt;&lt;br /&gt;www.mysite.com/index.html&lt;br /&gt;&lt;br /&gt;, you can enter intext:html.&lt;br /&gt;&lt;br /&gt;Link: lets you see which pages are linking to your Web page or to another page you're interested in. For example, try typing in&lt;br /&gt;&lt;br /&gt;link:http://www.pcmag.com&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Try using site: (which restricts results to top-level domains) with intitle: to find certain types of pages. For example, get scholarly pages about Mark Twain by searching for intitle:"Mark Twain"site:edu. Experiment with mixing various elements; you'll develop several strategies for finding the stuff you want more effectively. The site: command is very helpful as an alternative to the mediocre search engines built into many sites.&lt;br /&gt;&lt;br /&gt;Swiss Army Google&lt;br /&gt;&lt;br /&gt;Google has a number of services that can help you accomplish tasks you may never have thought to use Google for. For example, the new calculator feature&lt;br /&gt;&lt;br /&gt;(www.google.com/help/features.html#calculator)&lt;br /&gt;&lt;br /&gt;lets you do both math and a variety of conversions from the search box. For extra fun, try the query "Answer to life the universe and everything."&lt;br /&gt;&lt;br /&gt;Let Google help you figure out whether you've got the right spelling—and the right word—for your search. Enter a misspelled word or phrase into the query box (try "thre blund mise") and Google may suggest a proper spelling. This doesn't always succeed; it works best when the word you're searching for can be found in a dictionary. Once you search for a properly spelled word, look at the results page, which repeats your query. (If you're searching for "three blind mice," underneath the search window will appear a statement such as Searched the web for "three blind mice.") You'll discover that you can click on each word in your search phrase and get a definition from a dictionary.&lt;br /&gt;&lt;br /&gt;Suppose you want to contact someone and don't have his phone number handy. Google can help you with that, too. Just enter a name, city, and state. (The city is optional, but you must enter a state.) If a phone number matches the listing, you'll see it at the top of the search results along with a map link to the address. If you'd rather restrict your results, use rphonebook: for residential listings or bphonebook: for business listings. If you'd rather use a search form for business phone listings, try Yellow Search&lt;br /&gt;&lt;br /&gt;(www.buzztoolbox.com/google/yellowsearch.shtml).&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Extended Googling&lt;br /&gt;&lt;br /&gt;Google offers several services that give you a head start in focusing your search. Google Groups&lt;br /&gt;&lt;br /&gt;(http://groups.google.com)&lt;br /&gt;&lt;br /&gt;indexes literally millions of messages from decades of discussion on Usenet. Google even helps you with your shopping via two tools: Froogle&lt;br /&gt;CODE&lt;br /&gt;(http://froogle.google.com),&lt;br /&gt;&lt;br /&gt;which indexes products from online stores, and Google Catalogs&lt;br /&gt;CODE&lt;br /&gt;(http://catalogs.google.com),&lt;br /&gt;&lt;br /&gt;which features products from more 6,000 paper catalogs in a searchable index. And this only scratches the surface. You can get a complete list of Google's tools and services at&lt;br /&gt;&lt;br /&gt;www.google.com/options/index.html&lt;br /&gt;&lt;br /&gt;You're probably used to using Google in your browser. But have you ever thought of using Google outside your browser?&lt;br /&gt;&lt;br /&gt;Google Alert&lt;br /&gt;&lt;br /&gt;(www.googlealert.com)&lt;br /&gt;&lt;br /&gt;monitors your search terms and e-mails you information about new additions to Google's Web index. (Google Alert is not affiliated with Google; it uses Google's Web services API to perform its searches.) If you're more interested in news stories than general Web content, check out the beta version of Google News Alerts&lt;br /&gt;&lt;br /&gt;(www.google.com/newsalerts).&lt;br /&gt;&lt;br /&gt;This service (which is affiliated with Google) will monitor up to 50 news queries per e-mail address and send you information about news stories that match your query. (Hint: Use the intitle: and source: syntax elements with Google News to limit the number of alerts you get.)&lt;br /&gt;&lt;br /&gt;Google on the telephone? Yup. This service is brought to you by the folks at Google Labs&lt;br /&gt;&lt;br /&gt;(http://labs.google.com),&lt;br /&gt;&lt;br /&gt;a place for experimental Google ideas and features (which may come and go, so what's there at this writing might not be there when you decide to check it out). With Google Voice Search&lt;br /&gt;&lt;br /&gt;(http://labs1.google.com/gvs.html),&lt;br /&gt;&lt;br /&gt;you dial the Voice Search phone number, speak your keywords, and then click on the indicated link. Every time you say a new search term, the results page will refresh with your new query (you must have JavaScript enabled for this to work). Remember, this service is still in an experimental phase, so don't expect 100 percent success.&lt;br /&gt;&lt;br /&gt;In 2002, Google released the Google API (application programming interface), a way for programmers to access Google's search engine results without violating the Google Terms of Service. A lot of people have created useful (and occasionally not-so-useful but interesting) applications not available from Google itself, such as Google Alert. For many applications, you'll need an API key, which is available free from&lt;br /&gt;CODE&lt;br /&gt;www.google.com/apis&lt;br /&gt;&lt;br /&gt;. See the figures for two more examples, and visit&lt;br /&gt;&lt;br /&gt;www.pcmag.com/solutions&lt;br /&gt;&lt;br /&gt;for more.&lt;br /&gt;&lt;br /&gt;Thanks to its many different search properties, Google goes far beyond a regular search engine. Give the tricks in this article a try. You'll be amazed at how many different ways Google can improve your Internet searching.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Online Extra: More Google Tips&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Here are a few more clever ways to tweak your Google searches.&lt;br /&gt;&lt;br /&gt;Search Within a Timeframe&lt;br /&gt;&lt;br /&gt;Daterange: (start date–end date). You can restrict your searches to pages that were indexed within a certain time period. Daterange: searches by when Google indexed a page, not when the page itself was created. This operator can help you ensure that results will have fresh content (by using recent dates), or you can use it to avoid a topic's current-news blizzard and concentrate only on older results. Daterange: is actually more useful if you go elsewhere to take advantage of it, because daterange: requires Julian dates, not standard Gregorian dates. You can find converters on the Web (such as&lt;br /&gt;&lt;br /&gt;CODE&lt;br /&gt;http://aa.usno.navy.mil/data/docs/JulianDate.html&lt;br /&gt;&lt;br /&gt;excl.gif No Active Links, Read the Rules - Edit by Ninja excl.gif&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;), but an easier way is to do a Google daterange: search by filling in a form at&lt;br /&gt;&lt;br /&gt;www.researchbuzz.com/toolbox/goofresh.shtml or www.faganfinder.com/engines/google.shtml&lt;br /&gt;&lt;br /&gt;. If one special syntax element is good, two must be better, right? Sometimes. Though some operators can't be mixed (you can't use the link: operator with anything else) many can be, quickly narrowing your results to a less overwhelming number.&lt;br /&gt;&lt;br /&gt;More Google API Applications&lt;br /&gt;&lt;br /&gt;Staggernation.com offers three tools based on the Google API. The Google API Web Search by Host (GAWSH) lists the Web hosts of the results for a given query&lt;br /&gt;&lt;br /&gt;(www.staggernation.com/gawsh/).&lt;br /&gt;&lt;br /&gt;When you click on the triangle next to each host, you get a list of results for that host. The Google API Relation Browsing Outliner (GARBO) is a little more complicated: You enter a URL and choose whether you want pages that related to the URL or linked to the URL&lt;br /&gt;&lt;br /&gt;(www.staggernation.com/garbo/).&lt;br /&gt;&lt;br /&gt;Click on the triangle next to an URL to get a list of pages linked or related to that particular URL. CapeMail is an e-mail search application that allows you to send an e-mail to google@capeclear.com with the text of your query in the subject line and get the first ten results for that query back. Maybe it's not something you'd do every day, but if your cell phone does e-mail and doesn't do Web browsing, this is a very handy address to know.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3727464234422052205-3073400382593193644?l=gadarena.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://gadarena.blogspot.com/feeds/3073400382593193644/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=3727464234422052205&amp;postID=3073400382593193644" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/3073400382593193644" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/3073400382593193644" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Gadget-Arena/~3/kbLqns_2NFE/20-great-google-secrets.html" title="20 Great Google Secrets" /><author><name>The - Solipsist</name><uri>http://www.blogger.com/profile/06237678519848576241</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="06454995248712704911" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><feedburner:origLink>http://gadarena.blogspot.com/2007/08/20-great-google-secrets.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-3727464234422052205.post-625484831526108555</id><published>2007-03-22T07:33:00.002-07:00</published><updated>2007-03-22T07:37:50.016-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tips 'n' Tricks" /><category scheme="http://www.blogger.com/atom/ns#" term="Windows Tips and Tricks" /><title type="text">Turn off system beeps</title><content type="html">&lt;p class="Titre-PersGauche"&gt;&lt;a name="_Toc8024222"&gt;&lt;/a&gt;&lt;a name="_Toc7968520"&gt;&lt;/a&gt;&lt;a name="_Toc7968285"&gt;&lt;/a&gt;&lt;a name="_Toc7967577"&gt;&lt;/a&gt;&lt;a name="_Toc7967527"&gt;&lt;/a&gt;&lt;a name="_Toc7383816"&gt;&lt;/a&gt;&lt;a name="_Toc7383767"&gt;&lt;/a&gt;&lt;a name="_Toc7383117"&gt;&lt;/a&gt;&lt;a name="_Toc7383068"&gt;&lt;/a&gt;&lt;a name="_Toc7340388"&gt;&lt;/a&gt;&lt;a name="_Toc7340224"&gt;&lt;/a&gt;&lt;a name="_Toc7339451"&gt;&lt;/a&gt;&lt;a name="_Toc7337264"&gt;&lt;/a&gt;&lt;a name="_Toc7337202"&gt;&lt;/a&gt;&lt;a name="_Toc7209316"&gt;&lt;/a&gt;&lt;a name="_Toc7209267"&gt;&lt;/a&gt;&lt;a name="_Toc7209204"&gt;&lt;/a&gt;&lt;a name="_Toc7207659"&gt;&lt;/a&gt;&lt;a name="_Toc7207593"&gt;&lt;/a&gt;&lt;a name="_Toc7206259"&gt;&lt;/a&gt;&lt;a name="_Toc7206124"&gt;&lt;/a&gt;&lt;a name="_Toc7205751"&gt;&lt;/a&gt;&lt;a name="_Toc7205701"&gt;&lt;/a&gt;&lt;a name="_Toc7203871"&gt;&lt;/a&gt;&lt;a name="_Toc7168282"&gt;&lt;/a&gt;&lt;a name="_Toc7167920"&gt;&lt;/a&gt;&lt;a name="_Toc7097054"&gt;&lt;/a&gt;&lt;a name="_Toc6992488"&gt;&lt;/a&gt;&lt;a name="_Toc6990711"&gt;&lt;/a&gt;&lt;a name="_Toc6989773"&gt;&lt;/a&gt;&lt;a name="_Toc6989689"&gt;&lt;/a&gt;&lt;a name="_Toc6849467"&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span lang="FR-CA"&gt;Turn off system beeps&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span lang="FR-CA"&gt; &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;If those beeps annoy you there is a way to turn them off &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;Start Regedit. Navigate to&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;table class="MsoNormalTable" style="border: medium none ; border-collapse: collapse;" border="1" cellpadding="0" cellspacing="0"&gt;  &lt;tbody&gt;&lt;tr style=""&gt;   &lt;td style="border: 1pt solid windowtext; padding: 0in 3.5pt; width: 439pt;" valign="top" width="585"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;HKEY_CURRENT_USER\Control Panel\Sound&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;Once there, locate Beep on the list on the right. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;Right click on it and select Modify &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;Change the value equal to no &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;Reboot your computer and the beeps will be gone! &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;&lt;span style=""&gt; &lt;/span&gt;-----------------------------------------------------------------------------------------&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyTextIndent" style="text-indent: 0in;"&gt;&lt;span lang="FR-CA"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3727464234422052205-625484831526108555?l=gadarena.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://gadarena.blogspot.com/feeds/625484831526108555/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=3727464234422052205&amp;postID=625484831526108555" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/625484831526108555" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/625484831526108555" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Gadget-Arena/~3/OBPwOY4y1iE/turn-off-system-beeps.html" title="Turn off system beeps" /><author><name>tarun</name><uri>http://www.blogger.com/profile/02034684433842420822</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="03921320420472692759" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://gadarena.blogspot.com/2007/03/turn-off-system-beeps.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-3727464234422052205.post-7987533743228295485</id><published>2007-03-22T07:33:00.001-07:00</published><updated>2007-03-22T07:37:50.017-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tips 'n' Tricks" /><category scheme="http://www.blogger.com/atom/ns#" term="Windows Tips and Tricks" /><title type="text">Display message on startup</title><content type="html">&lt;p class="Titre-PersGauche"&gt;&lt;a name="_Toc8024221"&gt;&lt;/a&gt;&lt;a name="_Toc7968519"&gt;&lt;/a&gt;&lt;a name="_Toc7968284"&gt;&lt;/a&gt;&lt;a name="_Toc7967576"&gt;&lt;/a&gt;&lt;a name="_Toc7967526"&gt;&lt;/a&gt;&lt;a name="_Toc7383815"&gt;&lt;/a&gt;&lt;a name="_Toc7383766"&gt;&lt;/a&gt;&lt;a name="_Toc7383116"&gt;&lt;/a&gt;&lt;a name="_Toc7383067"&gt;&lt;/a&gt;&lt;a name="_Toc7340387"&gt;&lt;/a&gt;&lt;a name="_Toc7340223"&gt;&lt;/a&gt;&lt;a name="_Toc7339450"&gt;&lt;/a&gt;&lt;a name="_Toc7337263"&gt;&lt;/a&gt;&lt;a name="_Toc7337201"&gt;&lt;/a&gt;&lt;a name="_Toc7209315"&gt;&lt;/a&gt;&lt;a name="_Toc7209266"&gt;&lt;/a&gt;&lt;a name="_Toc7209203"&gt;&lt;/a&gt;&lt;a name="_Toc7207658"&gt;&lt;/a&gt;&lt;a name="_Toc7207592"&gt;&lt;/a&gt;&lt;a name="_Toc7206258"&gt;&lt;/a&gt;&lt;a name="_Toc7206123"&gt;&lt;/a&gt;&lt;a name="_Toc7205750"&gt;&lt;/a&gt;&lt;a name="_Toc7205700"&gt;&lt;/a&gt;&lt;a name="_Toc7203870"&gt;&lt;/a&gt;&lt;a name="_Toc7168281"&gt;&lt;/a&gt;&lt;a name="_Toc7167919"&gt;&lt;/a&gt;&lt;a name="_Toc7097053"&gt;&lt;/a&gt;&lt;a name="_Toc6992487"&gt;&lt;/a&gt;&lt;a name="_Toc6990710"&gt;&lt;/a&gt;&lt;a name="_Toc6989772"&gt;&lt;/a&gt;&lt;a name="_Toc6989688"&gt;&lt;/a&gt;&lt;a name="_Toc6849466"&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span lang="FR-CA"&gt;Display message on startup&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span lang="FR-CA"&gt; &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;If you would like to display a legal message or any other message in a pop-up window when windows starts : &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;Navigate to&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;table class="MsoNormalTable" style="border: medium none ; border-collapse: collapse;" border="1" cellpadding="0" cellspacing="0"&gt;  &lt;tbody&gt;&lt;tr style=""&gt;   &lt;td style="border: 1pt solid windowtext; padding: 0in 3.5pt; width: 439pt;" valign="top" width="585"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsNT\CurrentVersion\Winlogon   &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt;  &lt;p class="MsoNormal" style="margin-top: 6pt;"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;Modify the key legalnoticecaption with what you want to name the window. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;Modify the key legalnoticetext with what you want the window to say. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;Reboot.. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;&lt;span style=""&gt; &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;-----------------------------------------------------------------------------------------&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3727464234422052205-7987533743228295485?l=gadarena.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://gadarena.blogspot.com/feeds/7987533743228295485/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=3727464234422052205&amp;postID=7987533743228295485" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/7987533743228295485" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/7987533743228295485" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Gadget-Arena/~3/P99byzX5lnE/display-message-on-startup.html" title="Display message on startup" /><author><name>tarun</name><uri>http://www.blogger.com/profile/02034684433842420822</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="03921320420472692759" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://gadarena.blogspot.com/2007/03/display-message-on-startup.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-3727464234422052205.post-4647686364662840245</id><published>2007-03-22T07:32:00.001-07:00</published><updated>2007-03-22T07:37:50.018-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tips 'n' Tricks" /><category scheme="http://www.blogger.com/atom/ns#" term="Windows Tips and Tricks" /><title type="text">Disable or Adjust Taskbar Grouping</title><content type="html">&lt;p class="Titre-PersGauche"&gt;&lt;a name="_Toc8024217"&gt;&lt;/a&gt;&lt;a name="_Toc7968515"&gt;&lt;/a&gt;&lt;a name="_Toc7968280"&gt;&lt;/a&gt;&lt;a name="_Toc7967572"&gt;&lt;/a&gt;&lt;a name="_Toc7967522"&gt;&lt;/a&gt;&lt;a name="_Toc7383811"&gt;&lt;/a&gt;&lt;a name="_Toc7383762"&gt;&lt;/a&gt;&lt;a name="_Toc7383112"&gt;&lt;/a&gt;&lt;a name="_Toc7383063"&gt;&lt;/a&gt;&lt;a name="_Toc7340383"&gt;&lt;/a&gt;&lt;a name="_Toc7340218"&gt;&lt;/a&gt;&lt;a name="_Toc7339438"&gt;&lt;/a&gt;&lt;a name="_Toc7337250"&gt;&lt;/a&gt;&lt;a name="_Toc7337188"&gt;&lt;/a&gt;&lt;a name="_Toc7209303"&gt;&lt;/a&gt;&lt;a name="_Toc7209254"&gt;&lt;/a&gt;&lt;a name="_Toc7209191"&gt;&lt;/a&gt;&lt;a name="_Toc7207646"&gt;&lt;/a&gt;&lt;a name="_Toc7207580"&gt;&lt;/a&gt;&lt;a name="_Toc7206247"&gt;&lt;/a&gt;&lt;a name="_Toc7206112"&gt;&lt;/a&gt;&lt;a name="_Toc7205739"&gt;&lt;/a&gt;&lt;a name="_Toc7205689"&gt;&lt;/a&gt;&lt;a name="_Toc7203866"&gt;&lt;/a&gt;&lt;a name="_Toc7168277"&gt;&lt;/a&gt;&lt;a name="_Toc7167915"&gt;&lt;/a&gt;&lt;a name="_Toc7097049"&gt;&lt;/a&gt;&lt;a name="_Toc6992483"&gt;&lt;/a&gt;&lt;a name="_Toc6990706"&gt;&lt;/a&gt;&lt;a name="_Toc6989768"&gt;&lt;/a&gt;&lt;a name="_Toc6989684"&gt;&lt;/a&gt;&lt;a name="_Toc6849462"&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span lang="FR-CA"&gt;Disable or Adjust Taskbar Grouping&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span lang="FR-CA"&gt; &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyTextIndent" style="margin-bottom: 0.25in; text-indent: 0in; line-height: normal;"&gt;&lt;span lang="FR-CA"&gt;Right Click on the Taskbar. Choose Properties . Untick Group similar taskbar buttons&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyTextIndent" style="text-indent: 0in;"&gt;&lt;a name="_Toc7340219"&gt;&lt;span lang="FR-CA"&gt;-------------------------------------------------------------------------------------------&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3727464234422052205-4647686364662840245?l=gadarena.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://gadarena.blogspot.com/feeds/4647686364662840245/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=3727464234422052205&amp;postID=4647686364662840245" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/4647686364662840245" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/4647686364662840245" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Gadget-Arena/~3/ALcR0Maeetk/disable-or-adjust-taskbar-grouping.html" title="Disable or Adjust Taskbar Grouping" /><author><name>tarun</name><uri>http://www.blogger.com/profile/02034684433842420822</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="03921320420472692759" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://gadarena.blogspot.com/2007/03/disable-or-adjust-taskbar-grouping.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-3727464234422052205.post-3647903785895622016</id><published>2007-03-22T07:31:00.005-07:00</published><updated>2007-03-22T07:37:50.020-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tips 'n' Tricks" /><category scheme="http://www.blogger.com/atom/ns#" term="Windows Tips and Tricks" /><title type="text">Create a shortcut to lock computer</title><content type="html">&lt;p class="Titre-PersGauche"&gt;&lt;a name="_Toc8024210"&gt;&lt;/a&gt;&lt;a name="_Toc7968508"&gt;&lt;/a&gt;&lt;a name="_Toc7968273"&gt;&lt;/a&gt;&lt;a name="_Toc7967565"&gt;&lt;/a&gt;&lt;a name="_Toc7967515"&gt;&lt;/a&gt;&lt;a name="_Toc7383804"&gt;&lt;/a&gt;&lt;a name="_Toc7383755"&gt;&lt;/a&gt;&lt;a name="_Toc7383105"&gt;&lt;/a&gt;&lt;a name="_Toc7383056"&gt;&lt;/a&gt;&lt;a name="_Toc7340376"&gt;&lt;/a&gt;&lt;a name="_Toc7340211"&gt;&lt;/a&gt;&lt;a name="_Toc7339440"&gt;&lt;/a&gt;&lt;a name="_Toc7337252"&gt;&lt;/a&gt;&lt;a name="_Toc7337190"&gt;&lt;/a&gt;&lt;a name="_Toc7209305"&gt;&lt;/a&gt;&lt;a name="_Toc7209256"&gt;&lt;/a&gt;&lt;a name="_Toc7209193"&gt;&lt;/a&gt;&lt;a name="_Toc7207648"&gt;&lt;/a&gt;&lt;a name="_Toc7207582"&gt;&lt;/a&gt;&lt;a name="_Toc7206249"&gt;&lt;/a&gt;&lt;a name="_Toc7206114"&gt;&lt;/a&gt;&lt;a name="_Toc7205741"&gt;&lt;/a&gt;&lt;a name="_Toc7205691"&gt;&lt;/a&gt;&lt;a name="_Toc7203873"&gt;&lt;/a&gt;&lt;a name="_Toc7168284"&gt;&lt;/a&gt;&lt;a name="_Toc7167922"&gt;&lt;/a&gt;&lt;a name="_Toc7097056"&gt;&lt;/a&gt;&lt;a name="_Toc6992490"&gt;&lt;/a&gt;&lt;a name="_Toc6990713"&gt;&lt;/a&gt;&lt;a name="_Toc6989775"&gt;&lt;/a&gt;&lt;a name="_Toc6989691"&gt;&lt;/a&gt;&lt;a name="_Toc6849469"&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span lang="FR-CA"&gt;Create a shortcut to lock computer&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;Right click on desktop and select new -&gt; shortcut. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;h5&gt;&lt;span lang="FR-CA"&gt;Then copy and paste this in the program location box&lt;/span&gt;&lt;/h5&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;b&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;rundll32.exe user32.dll,LockWorkStation&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;Click next and enter a name for you shortcut and then click finish. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;Now you can copy and paste that shortcut anywhere you want on your computer. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyTextIndent" style="text-indent: 0in;"&gt;&lt;span lang="FR-CA"&gt;&lt;span style=""&gt; &lt;/span&gt;-----------------------------------------------------------------------------------------&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3727464234422052205-3647903785895622016?l=gadarena.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://gadarena.blogspot.com/feeds/3647903785895622016/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=3727464234422052205&amp;postID=3647903785895622016" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/3647903785895622016" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/3647903785895622016" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Gadget-Arena/~3/h_p-dNA5UzY/create-shortcut-to-lock-computer.html" title="Create a shortcut to lock computer" /><author><name>tarun</name><uri>http://www.blogger.com/profile/02034684433842420822</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="03921320420472692759" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://gadarena.blogspot.com/2007/03/create-shortcut-to-lock-computer.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-3727464234422052205.post-1903881143090806428</id><published>2007-03-22T07:31:00.003-07:00</published><updated>2007-03-22T07:37:50.021-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tips 'n' Tricks" /><category scheme="http://www.blogger.com/atom/ns#" term="Windows Tips and Tricks" /><title type="text">Create your own popup menu in the taskbar</title><content type="html">&lt;p class="Titre-PersGauche"&gt;&lt;a name="_Toc8024208"&gt;&lt;/a&gt;&lt;a name="_Toc7968506"&gt;&lt;/a&gt;&lt;a name="_Toc7968271"&gt;&lt;/a&gt;&lt;a name="_Toc7967563"&gt;&lt;/a&gt;&lt;a name="_Toc7967513"&gt;&lt;/a&gt;&lt;a name="_Toc7383802"&gt;&lt;/a&gt;&lt;a name="_Toc7383753"&gt;&lt;/a&gt;&lt;a name="_Toc7383103"&gt;&lt;/a&gt;&lt;a name="_Toc7383054"&gt;&lt;/a&gt;&lt;a name="_Toc7340374"&gt;&lt;/a&gt;&lt;a name="_Toc7340208"&gt;&lt;/a&gt;&lt;a name="_Toc7339437"&gt;&lt;/a&gt;&lt;a name="_Toc7337249"&gt;&lt;/a&gt;&lt;a name="_Toc7337187"&gt;&lt;/a&gt;&lt;a name="_Toc7209302"&gt;&lt;/a&gt;&lt;a name="_Toc7209253"&gt;&lt;/a&gt;&lt;a name="_Toc7209190"&gt;&lt;/a&gt;&lt;a name="_Toc7207645"&gt;&lt;/a&gt;&lt;a name="_Toc7207579"&gt;&lt;/a&gt;&lt;a name="_Toc7206246"&gt;&lt;/a&gt;&lt;a name="_Toc7206111"&gt;&lt;/a&gt;&lt;a name="_Toc7205738"&gt;&lt;/a&gt;&lt;a name="_Toc7205688"&gt;&lt;/a&gt;&lt;a name="_Toc7203855"&gt;&lt;/a&gt;&lt;a name="_Toc7168266"&gt;&lt;/a&gt;&lt;a name="_Toc7167904"&gt;&lt;/a&gt;&lt;a name="_Toc7097038"&gt;&lt;/a&gt;&lt;a name="_Toc6992472"&gt;&lt;/a&gt;&lt;a name="_Toc6990695"&gt;&lt;/a&gt;&lt;a name="_Toc6989757"&gt;&lt;/a&gt;&lt;a name="_Toc6989673"&gt;&lt;/a&gt;&lt;a name="_Toc6849451"&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span lang="FR-CA"&gt;Create your own popup menu in the &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span lang="FR-CA"&gt;taskbar&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span lang="FR-CA"&gt; &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;You can create your own popup window other than START MENU in the taskbar.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;Put all the shortcuts to the applications that you want to popup in a folder . &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyTextIndent" style="text-indent: 0in;"&gt;&lt;a name="_Toc7340209"&gt;&lt;span lang="FR-CA"&gt;Then you right click on taskbar -&gt;toolbars -&gt;new toolbar -&gt; and select the folder&lt;/span&gt;&lt;/a&gt;&lt;span lang="FR-CA"&gt; &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyTextIndent" style="text-indent: 0in;"&gt;&lt;span lang="FR-CA"&gt;-----------------------------------------------------------------------------------------&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3727464234422052205-1903881143090806428?l=gadarena.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://gadarena.blogspot.com/feeds/1903881143090806428/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=3727464234422052205&amp;postID=1903881143090806428" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/1903881143090806428" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/1903881143090806428" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Gadget-Arena/~3/hvFw6R0IzOI/create-your-own-popup-menu-in-taskbar.html" title="Create your own popup menu in the taskbar" /><author><name>tarun</name><uri>http://www.blogger.com/profile/02034684433842420822</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="03921320420472692759" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://gadarena.blogspot.com/2007/03/create-your-own-popup-menu-in-taskbar.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-3727464234422052205.post-7950735149640495988</id><published>2007-03-22T07:31:00.001-07:00</published><updated>2007-03-22T07:37:50.022-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tips 'n' Tricks" /><category scheme="http://www.blogger.com/atom/ns#" term="Windows Tips and Tricks" /><title type="text">Show hidden files</title><content type="html">&lt;p class="Titre-PersGauche"&gt;&lt;a name="_Toc8024207"&gt;&lt;/a&gt;&lt;a name="_Toc7968505"&gt;&lt;/a&gt;&lt;a name="_Toc7968270"&gt;&lt;/a&gt;&lt;a name="_Toc7967562"&gt;&lt;/a&gt;&lt;a name="_Toc7967512"&gt;&lt;/a&gt;&lt;a name="_Toc7383801"&gt;&lt;/a&gt;&lt;a name="_Toc7383752"&gt;&lt;/a&gt;&lt;a name="_Toc7383102"&gt;&lt;/a&gt;&lt;a name="_Toc7383053"&gt;&lt;/a&gt;&lt;a name="_Toc7340373"&gt;&lt;/a&gt;&lt;a name="_Toc7340207"&gt;&lt;/a&gt;&lt;a name="_Toc7339436"&gt;&lt;/a&gt;&lt;a name="_Toc7337248"&gt;&lt;/a&gt;&lt;a name="_Toc7337186"&gt;&lt;/a&gt;&lt;a name="_Toc7209301"&gt;&lt;/a&gt;&lt;a name="_Toc7209252"&gt;&lt;/a&gt;&lt;a name="_Toc7209189"&gt;&lt;/a&gt;&lt;a name="_Toc7207644"&gt;&lt;/a&gt;&lt;a name="_Toc7207578"&gt;&lt;/a&gt;&lt;a name="_Toc7206245"&gt;&lt;/a&gt;&lt;a name="_Toc7206110"&gt;&lt;/a&gt;&lt;a name="_Toc7205737"&gt;&lt;/a&gt;&lt;a name="_Toc7205687"&gt;&lt;/a&gt;&lt;a name="_Toc7203854"&gt;&lt;/a&gt;&lt;a name="_Toc7168265"&gt;&lt;/a&gt;&lt;a name="_Toc7167903"&gt;&lt;/a&gt;&lt;a name="_Toc7097037"&gt;&lt;/a&gt;&lt;a name="_Toc6992471"&gt;&lt;/a&gt;&lt;a name="_Toc6990693"&gt;&lt;/a&gt;&lt;a name="_Toc6989755"&gt;&lt;/a&gt;&lt;a name="_Toc6989671"&gt;&lt;/a&gt;&lt;a name="_Toc6849449"&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span lang="FR-CA"&gt;Show hidden files&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;In any folder that contains files. Click on the tools menu and select folder options. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;Then click on the view tab. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;Locate where it lists Hidden files and folders and select Show hidden files and folders. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;Click OK. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;-------------------------------------------------------------------------------------------&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3727464234422052205-7950735149640495988?l=gadarena.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://gadarena.blogspot.com/feeds/7950735149640495988/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=3727464234422052205&amp;postID=7950735149640495988" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/7950735149640495988" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/7950735149640495988" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Gadget-Arena/~3/lhFWQiczIJo/show-hidden-files.html" title="Show hidden files" /><author><name>tarun</name><uri>http://www.blogger.com/profile/02034684433842420822</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="03921320420472692759" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://gadarena.blogspot.com/2007/03/show-hidden-files.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-3727464234422052205.post-6394709942821116980</id><published>2007-03-22T07:30:00.004-07:00</published><updated>2007-03-22T07:37:50.024-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tips 'n' Tricks" /><category scheme="http://www.blogger.com/atom/ns#" term="Windows Tips and Tricks" /><title type="text">Remove Shared Doc's from My Computer</title><content type="html">&lt;p class="Titre-PersGauche"&gt;&lt;a name="_Toc8024206"&gt;&lt;/a&gt;&lt;a name="_Toc7968504"&gt;&lt;/a&gt;&lt;a name="_Toc7968269"&gt;&lt;/a&gt;&lt;a name="_Toc7967561"&gt;&lt;/a&gt;&lt;a name="_Toc7967511"&gt;&lt;/a&gt;&lt;a name="_Toc7383800"&gt;&lt;/a&gt;&lt;a name="_Toc7383751"&gt;&lt;/a&gt;&lt;a name="_Toc7383101"&gt;&lt;/a&gt;&lt;a name="_Toc7383052"&gt;&lt;/a&gt;&lt;a name="_Toc7340372"&gt;&lt;/a&gt;&lt;a name="_Toc7340206"&gt;&lt;/a&gt;&lt;a name="_Toc7339434"&gt;&lt;/a&gt;&lt;a name="_Toc7337247"&gt;&lt;/a&gt;&lt;a name="_Toc7337185"&gt;&lt;/a&gt;&lt;a name="_Toc7209300"&gt;&lt;/a&gt;&lt;a name="_Toc7209251"&gt;&lt;/a&gt;&lt;a name="_Toc7209188"&gt;&lt;/a&gt;&lt;a name="_Toc7207643"&gt;&lt;/a&gt;&lt;a name="_Toc7207577"&gt;&lt;/a&gt;&lt;a name="_Toc7206244"&gt;&lt;/a&gt;&lt;a name="_Toc7206109"&gt;&lt;/a&gt;&lt;a name="_Toc7205736"&gt;&lt;/a&gt;&lt;a name="_Toc7205686"&gt;&lt;/a&gt;&lt;a name="_Toc7203852"&gt;&lt;/a&gt;&lt;a name="_Toc7168263"&gt;&lt;/a&gt;&lt;a name="_Toc7167901"&gt;&lt;/a&gt;&lt;a name="_Toc7097035"&gt;&lt;/a&gt;&lt;a name="_Toc6992469"&gt;&lt;/a&gt;&lt;a name="_Toc6990691"&gt;&lt;/a&gt;&lt;a name="_Toc6989753"&gt;&lt;/a&gt;&lt;a name="_Toc6989669"&gt;&lt;/a&gt;&lt;a name="_Toc6849447"&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span lang="FR-CA"&gt;Remove Shared Doc's from My Computer&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p class="MsoBodyTextIndent" style="text-indent: 0in; line-height: normal;"&gt;&lt;a name="_Toc7339435"&gt;&lt;span lang="FR-CA"&gt;Start regedit&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;Navigate to&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;table class="MsoNormalTable" style="border: medium none ; border-collapse: collapse;" border="1" cellpadding="0" cellspacing="0"&gt;  &lt;tbody&gt;&lt;tr style=""&gt;   &lt;td style="border: 1pt solid windowtext; padding: 0in 3.5pt; width: 439pt;" valign="top" width="585"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;CurrentVersion\Explorer\MyComputer\NameSpace\DelegateFolders&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt;  &lt;p class="MsoNormal" style="margin-top: 6pt;"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;Locate the key {59031a47-3f72-44a7-89c5-5595fe6b30ee}. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;Right click on it and select delete. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;Reboot !&lt;span style=""&gt;  &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;&lt;span style=""&gt;  &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;-------------------------------------------------------------------------------------------&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3727464234422052205-6394709942821116980?l=gadarena.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://gadarena.blogspot.com/feeds/6394709942821116980/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=3727464234422052205&amp;postID=6394709942821116980" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/6394709942821116980" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/6394709942821116980" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Gadget-Arena/~3/31b85SMWOfg/remove-shared-docs-from-my-computer.html" title="Remove Shared Doc's from My Computer" /><author><name>tarun</name><uri>http://www.blogger.com/profile/02034684433842420822</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="03921320420472692759" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://gadarena.blogspot.com/2007/03/remove-shared-docs-from-my-computer.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-3727464234422052205.post-5000493695911684126</id><published>2007-03-22T07:30:00.003-07:00</published><updated>2007-03-22T07:37:50.025-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tips 'n' Tricks" /><category scheme="http://www.blogger.com/atom/ns#" term="Windows Tips and Tricks" /><title type="text">Users LogOn</title><content type="html">&lt;p class="Titre-PersGauche"&gt;&lt;a name="_Toc8024205"&gt;&lt;/a&gt;&lt;a name="_Toc7968503"&gt;&lt;/a&gt;&lt;a name="_Toc7968268"&gt;&lt;/a&gt;&lt;a name="_Toc7967560"&gt;&lt;/a&gt;&lt;a name="_Toc7967510"&gt;&lt;/a&gt;&lt;a name="_Toc7383799"&gt;&lt;/a&gt;&lt;a name="_Toc7383750"&gt;&lt;/a&gt;&lt;a name="_Toc7383100"&gt;&lt;/a&gt;&lt;a name="_Toc7383051"&gt;&lt;/a&gt;&lt;a name="_Toc7340371"&gt;&lt;/a&gt;&lt;a name="_Toc7340205"&gt;&lt;/a&gt;&lt;a name="_Toc7339433"&gt;&lt;/a&gt;&lt;a name="_Toc7337246"&gt;&lt;/a&gt;&lt;a name="_Toc7337184"&gt;&lt;/a&gt;&lt;a name="_Toc7209299"&gt;&lt;/a&gt;&lt;a name="_Toc7209250"&gt;&lt;/a&gt;&lt;a name="_Toc7209187"&gt;&lt;/a&gt;&lt;a name="_Toc7207642"&gt;&lt;/a&gt;&lt;a name="_Toc7207576"&gt;&lt;/a&gt;&lt;a name="_Toc7206243"&gt;&lt;/a&gt;&lt;a name="_Toc7206108"&gt;&lt;/a&gt;&lt;a name="_Toc7205735"&gt;&lt;/a&gt;&lt;a name="_Toc7205685"&gt;&lt;/a&gt;&lt;a name="_Toc7203849"&gt;&lt;/a&gt;&lt;a name="_Toc7168260"&gt;&lt;/a&gt;&lt;a name="_Toc7167898"&gt;&lt;/a&gt;&lt;a name="_Toc7097032"&gt;&lt;/a&gt;&lt;a name="_Toc6992466"&gt;&lt;/a&gt;&lt;a name="_Toc6990688"&gt;&lt;/a&gt;&lt;a name="_Toc6989750"&gt;&lt;/a&gt;&lt;a name="_Toc6989666"&gt;&lt;/a&gt;&lt;a name="_Toc6849444"&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span lang="FR-CA"&gt;Users LogOn&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;If you don't like it :&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;1. click on "Start" - then click on "Run" - and type&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;« control userpasswords2 »&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;2. click OK&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;3. On the Users tab, clear the "Users must enter a user name and password to use this computer" check box and click "Apply".&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;4. A dialog will appear that asks you what user name and password should be used to logon automatically, just click "OK".&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;Then go to Control Panel / User Accounts, and click “Change the way users log on or off”, and untick both “Use the Welcome Screen” and “Use Fast User Switching”&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;--------------------------------------------------------------------------------------------&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3727464234422052205-5000493695911684126?l=gadarena.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://gadarena.blogspot.com/feeds/5000493695911684126/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=3727464234422052205&amp;postID=5000493695911684126" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/5000493695911684126" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/5000493695911684126" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Gadget-Arena/~3/Z1ovO3qNKZU/users-logon.html" title="Users LogOn" /><author><name>tarun</name><uri>http://www.blogger.com/profile/02034684433842420822</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="03921320420472692759" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://gadarena.blogspot.com/2007/03/users-logon.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-3727464234422052205.post-5631644922842540816</id><published>2007-03-22T07:30:00.001-07:00</published><updated>2007-03-22T07:37:50.026-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tips 'n' Tricks" /><category scheme="http://www.blogger.com/atom/ns#" term="Windows Tips and Tricks" /><title type="text">Open Explorer in...</title><content type="html">&lt;p class="MsoBodyTextIndent" style="text-indent: 0in;"&gt;&lt;span lang="FR-CA"&gt;-------------------------------------------------------------------------------------------&lt;/span&gt;&lt;/p&gt;  &lt;p class="Titre-PersGauche" style="margin-bottom: 0.0001pt; line-height: normal;"&gt;&lt;a name="_Toc8024204"&gt;&lt;/a&gt;&lt;a name="_Toc7968502"&gt;&lt;/a&gt;&lt;a name="_Toc7968267"&gt;&lt;/a&gt;&lt;a name="_Toc7967559"&gt;&lt;/a&gt;&lt;a name="_Toc7967509"&gt;&lt;/a&gt;&lt;a name="_Toc7383798"&gt;&lt;/a&gt;&lt;a name="_Toc7383749"&gt;&lt;/a&gt;&lt;a name="_Toc7383099"&gt;&lt;/a&gt;&lt;a name="_Toc7383050"&gt;&lt;/a&gt;&lt;a name="_Toc7340370"&gt;&lt;/a&gt;&lt;a name="_Toc7340204"&gt;&lt;/a&gt;&lt;a name="_Toc7339432"&gt;&lt;/a&gt;&lt;a name="_Toc7337245"&gt;&lt;/a&gt;&lt;a name="_Toc7337183"&gt;&lt;/a&gt;&lt;a name="_Toc7209298"&gt;&lt;/a&gt;&lt;a name="_Toc7209249"&gt;&lt;/a&gt;&lt;a name="_Toc7209186"&gt;&lt;/a&gt;&lt;a name="_Toc7207641"&gt;&lt;/a&gt;&lt;a name="_Toc7207575"&gt;&lt;/a&gt;&lt;a name="_Toc7206242"&gt;&lt;/a&gt;&lt;a name="_Toc7206107"&gt;&lt;/a&gt;&lt;a name="_Toc7205734"&gt;&lt;/a&gt;&lt;a name="_Toc7205684"&gt;&lt;/a&gt;&lt;a name="_Toc7203846"&gt;&lt;/a&gt;&lt;a name="_Toc7168257"&gt;&lt;/a&gt;&lt;a name="_Toc7167895"&gt;&lt;/a&gt;&lt;a name="_Toc7097029"&gt;&lt;/a&gt;&lt;a name="_Toc6992463"&gt;&lt;/a&gt;&lt;a name="_Toc6990685"&gt;&lt;/a&gt;&lt;a name="_Toc6989747"&gt;&lt;/a&gt;&lt;a name="_Toc6989663"&gt;&lt;/a&gt;&lt;a name="_Toc6849442"&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span lang="FR-CA"&gt;Open Explorer in...&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p class="MsoBodyTextIndent" style="text-indent: 0in;"&gt;&lt;span lang="FR-CA"&gt;(by «Dirk Diggler»)&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyTextIndent" style="margin: 12pt 0in; text-indent: 0in; line-height: normal;"&gt;&lt;span lang="FR-CA"&gt;Right-click on your Windows Explorer icon, and write one of the following in the « target » field. This will allow Explorer to open already expanded in the folder of your choice.&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyTextIndent" style="text-align: left; text-indent: 0in; line-height: normal;" align="left"&gt;&lt;span class="bodyfont"&gt;&lt;span lang="FR-CA"&gt;1.) "My Computer" highlighted in left side with all drives visible but not expanded and C: highlighted in right side=&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyTextIndent" style="text-align: left; text-indent: 0in; line-height: normal;" align="left"&gt;&lt;span class="bodyfont"&gt;&lt;b&gt;&lt;span lang="FR-CA"&gt;%SystemRoot%\explorer.exe /e,/select,c:&lt;/span&gt;&lt;/b&gt;&lt;span lang="FR-CA"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span lang="FR-CA"&gt;&lt;br /&gt; &lt;!--[if !supportLineBreakNewLine]--&gt;&lt;br /&gt; &lt;!--[endif]--&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0in 0in 0.0001pt;"&gt;&lt;span class="bodyfont"&gt;&lt;span style="" lang="FR-CA"&gt;2.) Desktop highlighted and nothing expanded =&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span class="bodyfont"&gt;&lt;b&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;%SystemRoot%\explorer.exe /e,/n,/select,/root,c:&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span class="bodyfont"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="bodyfont"&gt;3.) All drives visible and the system drive highlighted and expanded in full screen = &lt;b&gt;%SystemRoot%\explorer.exe /e,/select&lt;/b&gt; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="bodyfont"&gt;4.) All drives visible and the system drive expanded in small screen = &lt;b&gt;%SystemRoot%\explorer.exe /e,/select,%systemroot%&lt;/b&gt; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="bodyfont"&gt;5.) Only Windows Directory visible highlighted and expanded = &lt;b&gt;%SystemRoot%\explorer.exe /e,/root,%systemroot%&lt;/b&gt; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="bodyfont"&gt;6.) All drives visible but only C: highlighted and expanded = &lt;b&gt;%SystemRoot%\explorer.exe /e, c:&lt;/b&gt; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="bodyfont"&gt;7.) Nothing expanded and My Computer highlighted in right side = &lt;b&gt;%SystemRoot%\explorer.exe /n,/e,/select,&lt;/b&gt; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="bodyfont"&gt;8.) Opens the Windows folder as a folder =&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span class="bodyfont"&gt;&lt;b&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;%SystemRoot%\explorer.exe %systemroot%&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span class="bodyfont"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="bodyfont"&gt;9.) Opens as "My Computer" = &lt;b&gt;%SystemRoot%\explorer.exe %systemroot%,&lt;/b&gt; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="bodyfont"&gt;10.)This opens the Desktop folder with "My Computer" highlighted = &lt;b&gt;%SystemRoot%\explorer.exe %systemroot%,/select,&lt;/b&gt; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="bodyfont"&gt;11.) "Desktop" highlighted in the left side and no drives visible:- &lt;/span&gt;&lt;br /&gt;&lt;span class="bodyfont"&gt;&lt;b&gt;%systemroot%\explorer.exe /e,/root,::{20D04FE0-3AEA-1069-A2D8-08002B30309D},/select&lt;/b&gt; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="bodyfont"&gt;12.) "My Computer" highlighted in left side and all drives visible but none expanded:- &lt;/span&gt;&lt;br /&gt;&lt;span class="bodyfont"&gt;&lt;b&gt;%systemroot%\explorer.exe /e,/root,::{20D04FE0-3AEA-1069-A2D8-08002B30309D}&lt;/b&gt; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="bodyfont"&gt;Many thanks to «XP Guru» for the next one:- &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="bodyfont"&gt;13.) "Desktop" in left side highlighted and "My Computer" highlighted in right side and no drives visible:- &lt;/span&gt;&lt;br /&gt;&lt;span class="bodyfont"&gt;&lt;b&gt;%systemroot%\explorer.exe /e,/select,::{20D04FE0-3AEA-1069-A2D8-08002B30309D}&lt;/b&gt;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;-------------------------------------------------------------------------------------------&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3727464234422052205-5631644922842540816?l=gadarena.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://gadarena.blogspot.com/feeds/5631644922842540816/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=3727464234422052205&amp;postID=5631644922842540816" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/5631644922842540816" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/5631644922842540816" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Gadget-Arena/~3/-Feav8ZFqik/open-explorer-in.html" title="Open Explorer in..." /><author><name>tarun</name><uri>http://www.blogger.com/profile/02034684433842420822</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="03921320420472692759" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://gadarena.blogspot.com/2007/03/open-explorer-in.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-3727464234422052205.post-3904695476219243818</id><published>2007-03-22T07:29:00.004-07:00</published><updated>2007-03-22T07:37:50.027-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tips 'n' Tricks" /><category scheme="http://www.blogger.com/atom/ns#" term="Windows Tips and Tricks" /><title type="text">Add Folders to « Save As » choice</title><content type="html">&lt;p class="Titre-PersGauche"&gt;&lt;a name="_Toc8024203"&gt;&lt;/a&gt;&lt;a name="_Toc7968501"&gt;&lt;/a&gt;&lt;a name="_Toc7968266"&gt;&lt;/a&gt;&lt;a name="_Toc7967558"&gt;&lt;/a&gt;&lt;a name="_Toc7967508"&gt;&lt;/a&gt;&lt;a name="_Toc7383797"&gt;&lt;/a&gt;&lt;a name="_Toc7383748"&gt;&lt;/a&gt;&lt;a name="_Toc7383098"&gt;&lt;/a&gt;&lt;a name="_Toc7383049"&gt;&lt;/a&gt;&lt;a name="_Toc7340369"&gt;&lt;/a&gt;&lt;a name="_Toc7340203"&gt;&lt;/a&gt;&lt;a name="_Toc7339431"&gt;&lt;/a&gt;&lt;a name="_Toc7337244"&gt;&lt;/a&gt;&lt;a name="_Toc7337182"&gt;&lt;/a&gt;&lt;a name="_Toc7209297"&gt;&lt;/a&gt;&lt;a name="_Toc7209248"&gt;&lt;/a&gt;&lt;a name="_Toc7209185"&gt;&lt;/a&gt;&lt;a name="_Toc7207640"&gt;&lt;/a&gt;&lt;a name="_Toc7207574"&gt;&lt;/a&gt;&lt;a name="_Toc7206241"&gt;&lt;/a&gt;&lt;a name="_Toc7206106"&gt;&lt;/a&gt;&lt;a name="_Toc7205733"&gt;&lt;/a&gt;&lt;a name="_Toc7205683"&gt;&lt;/a&gt;&lt;a name="_Toc7203845"&gt;&lt;/a&gt;&lt;a name="_Toc7168256"&gt;&lt;/a&gt;&lt;a name="_Toc7167894"&gt;&lt;/a&gt;&lt;a name="_Toc7097028"&gt;&lt;/a&gt;&lt;a name="_Toc6992462"&gt;&lt;/a&gt;&lt;a name="_Toc6990684"&gt;&lt;/a&gt;&lt;a name="_Toc6989746"&gt;&lt;/a&gt;&lt;a name="_Toc6989662"&gt;&lt;/a&gt;&lt;a name="_Toc6849441"&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span lang="FR-CA"&gt;Add Folders to « Save As » choice&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-bottom: 6pt; text-align: justify;"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;In WinXP Pro, just open the Group Policy (type gpedit.msc in the Run command), go to :&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-bottom: 6pt; text-align: justify;"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;User Configuration / Administrative Templates / Windows Components / Windows Explorer / Common Open File Dialog&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;and Enable the « Items Displayed in the Places Bar » option.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText2" style="margin-bottom: 6pt; text-align: justify;"&gt;&lt;span lang="FR-CA"&gt;You can set any location, and it also offers you the most commons places by only typing i.e. MyMusic, instead of the full path.&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3727464234422052205-3904695476219243818?l=gadarena.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://gadarena.blogspot.com/feeds/3904695476219243818/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=3727464234422052205&amp;postID=3904695476219243818" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/3904695476219243818" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/3904695476219243818" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Gadget-Arena/~3/SzIh9VUO75k/add-folders-to-save-as-choice.html" title="Add Folders to « Save As » choice" /><author><name>tarun</name><uri>http://www.blogger.com/profile/02034684433842420822</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="03921320420472692759" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://gadarena.blogspot.com/2007/03/add-folders-to-save-as-choice.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-3727464234422052205.post-7674509069070125449</id><published>2007-03-22T07:29:00.003-07:00</published><updated>2007-03-22T07:37:50.028-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tips 'n' Tricks" /><category scheme="http://www.blogger.com/atom/ns#" term="Windows Tips and Tricks" /><title type="text">Useful Tricks</title><content type="html">&lt;p class="Titre-Pers" style="margin-top: 0.25in;"&gt;&lt;a name="_Toc8024201"&gt;&lt;/a&gt;&lt;a name="_Toc7968499"&gt;&lt;/a&gt;&lt;a name="_Toc7968264"&gt;&lt;/a&gt;&lt;a name="_Toc7967556"&gt;&lt;/a&gt;&lt;a name="_Toc7967506"&gt;&lt;/a&gt;&lt;a name="_Toc7383795"&gt;&lt;/a&gt;&lt;a name="_Toc7383746"&gt;&lt;/a&gt;&lt;a name="_Toc7383096"&gt;&lt;/a&gt;&lt;a name="_Toc7383047"&gt;&lt;/a&gt;&lt;a name="_Toc7340367"&gt;&lt;/a&gt;&lt;a name="_Toc7340201"&gt;&lt;/a&gt;&lt;a name="_Toc7339429"&gt;&lt;/a&gt;&lt;a name="_Toc7337242"&gt;&lt;/a&gt;&lt;a name="_Toc7337180"&gt;&lt;/a&gt;&lt;a name="_Toc7209295"&gt;&lt;/a&gt;&lt;a name="_Toc7209246"&gt;&lt;/a&gt;&lt;a name="_Toc7209183"&gt;&lt;/a&gt;&lt;a name="_Toc7207638"&gt;&lt;/a&gt;&lt;a name="_Toc7207572"&gt;&lt;/a&gt;&lt;a name="_Toc7206239"&gt;&lt;/a&gt;&lt;a name="_Toc7206104"&gt;&lt;/a&gt;&lt;a name="_Toc7205731"&gt;&lt;/a&gt;&lt;a name="_Toc7205681"&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span lang="FR-CA"&gt;Useful Tricks&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p class="Titre-PersGauche" style="margin-bottom: 0.0001pt; line-height: normal;"&gt;&lt;a name="_Toc7203838"&gt;&lt;/a&gt;&lt;a name="_Toc7168249"&gt;&lt;/a&gt;&lt;a name="_Toc7167888"&gt;&lt;/a&gt;&lt;a name="_Toc7097022"&gt;&lt;/a&gt;&lt;a name="_Toc6992456"&gt;&lt;/a&gt;&lt;a name="_Toc6990678"&gt;&lt;/a&gt;&lt;a name="_Toc6989740"&gt;&lt;/a&gt;&lt;a name="_Toc6989656"&gt;&lt;/a&gt;&lt;a name="_Toc8024202"&gt;&lt;/a&gt;&lt;a name="_Toc7968500"&gt;&lt;/a&gt;&lt;a name="_Toc7968265"&gt;&lt;/a&gt;&lt;a name="_Toc7967557"&gt;&lt;/a&gt;&lt;a name="_Toc7967507"&gt;&lt;/a&gt;&lt;a name="_Toc7383796"&gt;&lt;/a&gt;&lt;a name="_Toc7383747"&gt;&lt;/a&gt;&lt;a name="_Toc7383097"&gt;&lt;/a&gt;&lt;a name="_Toc7383048"&gt;&lt;/a&gt;&lt;a name="_Toc7340368"&gt;&lt;/a&gt;&lt;a name="_Toc7340202"&gt;&lt;/a&gt;&lt;a name="_Toc7339430"&gt;&lt;/a&gt;&lt;a name="_Toc7337243"&gt;&lt;/a&gt;&lt;a name="_Toc7337181"&gt;&lt;/a&gt;&lt;a name="_Toc7209296"&gt;&lt;/a&gt;&lt;a name="_Toc7209247"&gt;&lt;/a&gt;&lt;a name="_Toc7209184"&gt;&lt;/a&gt;&lt;a name="_Toc7207639"&gt;&lt;/a&gt;&lt;a name="_Toc7207573"&gt;&lt;/a&gt;&lt;a name="_Toc7206240"&gt;&lt;/a&gt;&lt;a name="_Toc7206105"&gt;&lt;/a&gt;&lt;a name="_Toc7205732"&gt;&lt;/a&gt;&lt;a name="_Toc7205682"&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span lang="FR-CA"&gt;Add cool &amp; useful icons to your desktop&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyTextIndent" style="text-indent: 0in;"&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span lang="FR-CA"&gt;(by Perris, aka «dealer»)&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyTextIndent" style="margin-top: 0.25in; text-indent: 0in;"&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;b&gt;&lt;span lang="FR-CA"&gt;1) « Restart » button on your desktop&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;b&gt;&lt;span lang="FR-CA"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;1. Create a shortcut (Right-click on desktop, select New &gt; Shortcut).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;2. For location, type the following:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.25in;"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;shutdown -r -t 0&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;3. Click Next, enter a name for the shortcut ("Restart" is appropriate), and click Fini&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyTextIndent" style="margin-top: 0.25in; text-indent: 0in;"&gt;&lt;a name="_Toc7203839"&gt;&lt;/a&gt;&lt;a name="_Toc7168250"&gt;&lt;/a&gt;&lt;a name="_Toc7167889"&gt;&lt;/a&gt;&lt;a name="_Toc7097023"&gt;&lt;/a&gt;&lt;a name="_Toc6992457"&gt;&lt;/a&gt;&lt;a name="_Toc6990679"&gt;&lt;/a&gt;&lt;a name="_Toc6989741"&gt;&lt;/a&gt;&lt;a name="_Toc6989657"&gt;&lt;/a&gt;&lt;a name="_Toc6849436"&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;b&gt;&lt;span lang="FR-CA"&gt;2) « System restore » shortcut on desktop&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;b&gt;&lt;span lang="FR-CA"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;the target is %SystemRoot%\System32\restore\rstrui.exe&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyTextIndent" style="margin-top: 0.25in; text-indent: 0in;"&gt;&lt;a name="_Toc7203840"&gt;&lt;/a&gt;&lt;a name="_Toc7168251"&gt;&lt;/a&gt;&lt;a name="_Toc7167890"&gt;&lt;/a&gt;&lt;a name="_Toc7097024"&gt;&lt;/a&gt;&lt;a name="_Toc6992458"&gt;&lt;/a&gt;&lt;a name="_Toc6990680"&gt;&lt;/a&gt;&lt;a name="_Toc6989742"&gt;&lt;/a&gt;&lt;a name="_Toc6989658"&gt;&lt;/a&gt;&lt;a name="_Toc6849437"&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;b&gt;&lt;span lang="FR-CA"&gt;3) « Device manager » on desktop&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;b&gt;&lt;span lang="FR-CA"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;target %windir%\system32\mmc.exe c:\windows\system32\devmgmt.msc&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyTextIndent" style="margin-top: 0.25in; text-indent: 0in;"&gt;&lt;a name="_Toc7203841"&gt;&lt;/a&gt;&lt;a name="_Toc7168252"&gt;&lt;/a&gt;&lt;a name="_Toc7167891"&gt;&lt;/a&gt;&lt;a name="_Toc7097025"&gt;&lt;/a&gt;&lt;a name="_Toc6992459"&gt;&lt;/a&gt;&lt;a name="_Toc6990681"&gt;&lt;/a&gt;&lt;a name="_Toc6989743"&gt;&lt;/a&gt;&lt;a name="_Toc6989659"&gt;&lt;/a&gt;&lt;a name="_Toc6849438"&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;b&gt;&lt;span lang="FR-CA"&gt;4) « Registry » on desktop&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;b&gt;&lt;span lang="FR-CA"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 0in 0in 0.0001pt;"&gt;&lt;span style="" lang="FR-CA"&gt;target C:\WINDOWS\regedit.exe&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyTextIndent" style="margin-top: 30pt; text-indent: 0in;"&gt;&lt;b&gt;&lt;span lang="FR-CA"&gt;5) « Task Manager » on desktop&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoBodyTextIndent" style="text-indent: 0in;"&gt;&lt;span lang="FR-CA"&gt;target C:\WINDOWS\system32\taskmgr.exe&lt;/span&gt;&lt;span style="font-size: 10pt; line-height: 150%; font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;;" lang="FR-CA"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyTextIndent" style="margin-top: 30pt; text-indent: 0in;"&gt;&lt;b&gt;&lt;span lang="FR-CA"&gt;6) « Search » on desktop&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoBodyTextIndent" style="text-indent: 0in; line-height: normal;"&gt;&lt;span lang="FR-CA"&gt;Perform a search as you would normally, without entering any query word (as soon as it starts you can stop it). In the search window then go to&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyTextIndent" style="text-indent: 0in;"&gt;&lt;span lang="FR-CA"&gt;file &gt; save search&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyTextIndent" style="margin-bottom: 0.25in; text-indent: 0in;"&gt;&lt;span lang="FR-CA"&gt;Save it to the desktop.&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyTextIndent" style="text-indent: 0in;"&gt;&lt;span lang="FR-CA"&gt;---------------------------------------------------------------------------------------------&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3727464234422052205-7674509069070125449?l=gadarena.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://gadarena.blogspot.com/feeds/7674509069070125449/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=3727464234422052205&amp;postID=7674509069070125449" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/7674509069070125449" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/7674509069070125449" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Gadget-Arena/~3/5W8ETqqH8jE/useful-tricks.html" title="Useful Tricks" /><author><name>tarun</name><uri>http://www.blogger.com/profile/02034684433842420822</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="03921320420472692759" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://gadarena.blogspot.com/2007/03/useful-tricks.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-3727464234422052205.post-3307184859735891706</id><published>2007-03-22T07:29:00.001-07:00</published><updated>2007-03-22T07:37:01.768-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Internet Tips and TRICKS" /><title type="text">WebBrowsing Tweak</title><content type="html">&lt;p class="Titre-PersGauche"&gt;&lt;a name="_Toc8024200"&gt;&lt;/a&gt;&lt;a name="_Toc7968498"&gt;&lt;/a&gt;&lt;a name="_Toc7968263"&gt;&lt;/a&gt;&lt;a name="_Toc7967555"&gt;&lt;/a&gt;&lt;a name="_Toc7967505"&gt;&lt;/a&gt;&lt;a name="_Toc7383794"&gt;&lt;/a&gt;&lt;a name="_Toc7383745"&gt;&lt;/a&gt;&lt;a name="_Toc7383095"&gt;&lt;/a&gt;&lt;a name="_Toc7383046"&gt;&lt;/a&gt;&lt;a name="_Toc7340366"&gt;&lt;/a&gt;&lt;a name="_Toc7340200"&gt;&lt;/a&gt;&lt;a name="_Toc7339428"&gt;&lt;/a&gt;&lt;a name="_Toc7337241"&gt;&lt;/a&gt;&lt;a name="_Toc7337179"&gt;&lt;/a&gt;&lt;a name="_Toc7209294"&gt;&lt;/a&gt;&lt;a name="_Toc7209245"&gt;&lt;/a&gt;&lt;a name="_Toc7209182"&gt;&lt;/a&gt;&lt;a name="_Toc7207636"&gt;&lt;/a&gt;&lt;a name="_Toc7207570"&gt;&lt;/a&gt;&lt;a name="_Toc7206238"&gt;&lt;/a&gt;&lt;a name="_Toc7206103"&gt;&lt;/a&gt;&lt;a name="_Toc7205713"&gt;&lt;/a&gt;&lt;a name="_Toc7205663"&gt;&lt;/a&gt;&lt;a name="_Toc7203850"&gt;&lt;/a&gt;&lt;a name="_Toc7168261"&gt;&lt;/a&gt;&lt;a name="_Toc7167899"&gt;&lt;/a&gt;&lt;a name="_Toc7097033"&gt;&lt;/a&gt;&lt;a name="_Toc6992467"&gt;&lt;/a&gt;&lt;a name="_Toc6990689"&gt;&lt;/a&gt;&lt;a name="_Toc6989751"&gt;&lt;/a&gt;&lt;a name="_Toc6989667"&gt;&lt;/a&gt;&lt;a name="_Toc6849445"&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span lang="FR-CA"&gt;WebBrowsing Tweak&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;  &lt;table class="MsoNormalTable" style="border: medium none ; border-collapse: collapse;" border="1" cellpadding="0" cellspacing="0"&gt;  &lt;tbody&gt;&lt;tr style=""&gt;   &lt;td style="border: 1pt solid windowtext; padding: 0in 3.5pt; width: 439pt;" valign="top" width="585"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;Services\Tcpip\ServiceProvider&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;&lt;span style=""&gt; &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;On the right change these entries (ALL values are HEXIDECIMAL) :&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;DnsPriority - " 7 "&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;HostsPriority - " 6 "&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;LocalPriority - " 5"&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;NetbtPriority - " 8 "&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;Default Values (for restoring purposes...)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;DnsPriority – " 7d0" &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;HostsPriority – " 1f4" &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;LocalPriority – " 1f3 "&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyTextIndent" style="margin-bottom: 0.25in; text-indent: 0in; line-height: normal;"&gt;&lt;a name="_Toc7207637"&gt;&lt;/a&gt;&lt;a name="_Toc7207571"&gt;&lt;span style=""&gt;&lt;span lang="FR-CA"&gt;NetbtPriority – " 7d1&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span lang="FR-CA"&gt; "&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3727464234422052205-3307184859735891706?l=gadarena.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://gadarena.blogspot.com/feeds/3307184859735891706/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=3727464234422052205&amp;postID=3307184859735891706" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/3307184859735891706" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/3307184859735891706" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Gadget-Arena/~3/_MKDurr_fP8/webbrowsing-tweak.html" title="WebBrowsing Tweak" /><author><name>tarun</name><uri>http://www.blogger.com/profile/02034684433842420822</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="03921320420472692759" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://gadarena.blogspot.com/2007/03/webbrowsing-tweak.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-3727464234422052205.post-8694006209946507400</id><published>2007-03-22T07:28:00.005-07:00</published><updated>2007-03-22T07:37:01.769-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Internet Tips and TRICKS" /><title type="text">Bandwith Limit</title><content type="html">&lt;p&gt;&lt;span lang="FR-CA"&gt;------------------------------------------------------------------------------------------&lt;span class="bodyfont"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="Titre-PersGauche"&gt;&lt;a name="_Toc8024199"&gt;&lt;/a&gt;&lt;a name="_Toc7968497"&gt;&lt;/a&gt;&lt;a name="_Toc7968262"&gt;&lt;/a&gt;&lt;a name="_Toc7967554"&gt;&lt;/a&gt;&lt;a name="_Toc7967504"&gt;&lt;/a&gt;&lt;a name="_Toc7383793"&gt;&lt;/a&gt;&lt;a name="_Toc7383744"&gt;&lt;/a&gt;&lt;a name="_Toc7383094"&gt;&lt;/a&gt;&lt;a name="_Toc7383045"&gt;&lt;/a&gt;&lt;a name="_Toc7340365"&gt;&lt;/a&gt;&lt;a name="_Toc7340199"&gt;&lt;/a&gt;&lt;a name="_Toc7339427"&gt;&lt;/a&gt;&lt;a name="_Toc7337240"&gt;&lt;/a&gt;&lt;a name="_Toc7337178"&gt;&lt;/a&gt;&lt;a name="_Toc7209293"&gt;&lt;/a&gt;&lt;a name="_Toc7209244"&gt;&lt;/a&gt;&lt;a name="_Toc7209181"&gt;&lt;/a&gt;&lt;a name="_Toc7207635"&gt;&lt;/a&gt;&lt;a name="_Toc7207568"&gt;&lt;/a&gt;&lt;a name="_Toc7206237"&gt;&lt;/a&gt;&lt;a name="_Toc7206102"&gt;&lt;/a&gt;&lt;a name="_Toc7205712"&gt;&lt;/a&gt;&lt;a name="_Toc7205662"&gt;&lt;/a&gt;&lt;a name="_Toc7203848"&gt;&lt;/a&gt;&lt;a name="_Toc7168259"&gt;&lt;/a&gt;&lt;a name="_Toc7167897"&gt;&lt;/a&gt;&lt;a name="_Toc7097031"&gt;&lt;/a&gt;&lt;a name="_Toc6992465"&gt;&lt;/a&gt;&lt;a name="_Toc6990687"&gt;&lt;/a&gt;&lt;a name="_Toc6989749"&gt;&lt;/a&gt;&lt;a name="_Toc6989665"&gt;&lt;/a&gt;&lt;a name="_Toc6849443"&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span lang="FR-CA"&gt;Bandwith Limit&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;(Warning : It’s been suggested by more knwoledgeable people than me that this tweak does nothing, and is in fact but a myth. In any case, applying it doesn’t appear to harm the system…)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;1. Make sure your logged on as actually "Administrator". do not log on with any account that just has administrator privileges. To log in as an administrator: &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;-click on start-&gt;logoff-&gt;logoff&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;-in the logon screen hold Ctrl+Alt+Del.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;-in the user field type 'Administrator' &lt;-case sensitive.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;-in the password field type the password for the administrator (if you don't have one leave blank)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;-press ok&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;2. Start - run - type gpedit.msc&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;3. Expand the "Computer configuration" branch&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;4. Expand the "Administrative templates" branch&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;5. Expand the "Network" branch&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;6. Highlight the "QoS Packet Scheduler" in left window&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;7. In right window double click the "limit reservable bandwidth" setting&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;8. On setting tab check the "enabled" item&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;9. Where it says "Bandwidth limit %" change it to read 0-- Click apply, OK, exit gpedit.msc&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;10. Go to your Network connections (start-&gt;my computer-&gt;my network connection-&gt; view network connections). Right click on your connection, choose properties then under the General or the Networking tab (where it lists your protocols) make sure QoS packet scheduler is enabled.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-bottom: 12pt;"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;11. Reboot, and you’re done !&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3727464234422052205-8694006209946507400?l=gadarena.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://gadarena.blogspot.com/feeds/8694006209946507400/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=3727464234422052205&amp;postID=8694006209946507400" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/8694006209946507400" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/8694006209946507400" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Gadget-Arena/~3/F1cdNFrN--o/bandwith-limit.html" title="Bandwith Limit" /><author><name>tarun</name><uri>http://www.blogger.com/profile/02034684433842420822</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="03921320420472692759" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://gadarena.blogspot.com/2007/03/bandwith-limit.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-3727464234422052205.post-5794080456098753440</id><published>2007-03-22T07:28:00.003-07:00</published><updated>2007-03-22T07:37:50.030-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tips 'n' Tricks" /><category scheme="http://www.blogger.com/atom/ns#" term="Windows Tips and Tricks" /><title type="text">Uninstall MS Messenger</title><content type="html">&lt;p class="Titre-PersGauche" style="margin-bottom: 0.0001pt; line-height: normal;"&gt;&lt;a name="_Toc8024198"&gt;&lt;/a&gt;&lt;a name="_Toc7968496"&gt;&lt;/a&gt;&lt;a name="_Toc7968261"&gt;&lt;/a&gt;&lt;a name="_Toc7967553"&gt;&lt;/a&gt;&lt;a name="_Toc7967503"&gt;&lt;/a&gt;&lt;a name="_Toc7383792"&gt;&lt;/a&gt;&lt;a name="_Toc7383743"&gt;&lt;/a&gt;&lt;a name="_Toc7383093"&gt;&lt;/a&gt;&lt;a name="_Toc7383044"&gt;&lt;/a&gt;&lt;a name="_Toc7340364"&gt;&lt;/a&gt;&lt;a name="_Toc7340198"&gt;&lt;/a&gt;&lt;a name="_Toc7339426"&gt;&lt;/a&gt;&lt;a name="_Toc7337239"&gt;&lt;/a&gt;&lt;a name="_Toc7337177"&gt;&lt;/a&gt;&lt;a name="_Toc7209292"&gt;&lt;/a&gt;&lt;a name="_Toc7209243"&gt;&lt;/a&gt;&lt;a name="_Toc7209180"&gt;&lt;/a&gt;&lt;a name="_Toc7207634"&gt;&lt;/a&gt;&lt;a name="_Toc7207567"&gt;&lt;/a&gt;&lt;a name="_Toc7206236"&gt;&lt;/a&gt;&lt;a name="_Toc7206101"&gt;&lt;/a&gt;&lt;a name="_Toc7205730"&gt;&lt;/a&gt;&lt;a name="_Toc7205680"&gt;&lt;/a&gt;&lt;a name="_Toc7203882"&gt;&lt;/a&gt;&lt;a name="_Toc7168291"&gt;&lt;/a&gt;&lt;a name="_Toc7167929"&gt;&lt;/a&gt;&lt;a name="_Toc7097062"&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span lang="FR-CA"&gt;Uninstall MS Messenger&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p class="MsoBodyTextIndent" style="text-indent: 0in; line-height: normal;"&gt;&lt;span lang="FR-CA"&gt;(by Allan at TweakXP.com)&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 6pt 0in 0.0001pt;"&gt;&lt;span class="bodyfont"&gt;&lt;span lang="FR-CA"&gt;Click Start \ Run Then type the following: &lt;/span&gt;&lt;/span&gt;&lt;span lang="FR-CA"&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="bodyfont"&gt;RunDll32 advpack.dll,LaunchINFSection %windir%\INF\msmsgs.inf,BLC.Remove&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 6pt 0in 0.0001pt;"&gt;&lt;span class="bodyfont"&gt;&lt;span lang="FR-CA"&gt;Press ENTER &lt;/span&gt;&lt;/span&gt;&lt;span lang="FR-CA"&gt;&lt;br /&gt;&lt;span class="bodyfont"&gt;Restart Windows&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3727464234422052205-5794080456098753440?l=gadarena.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://gadarena.blogspot.com/feeds/5794080456098753440/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=3727464234422052205&amp;postID=5794080456098753440" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/5794080456098753440" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/5794080456098753440" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Gadget-Arena/~3/LZXZEkqLadc/uninstall-ms-messenger.html" title="Uninstall MS Messenger" /><author><name>tarun</name><uri>http://www.blogger.com/profile/02034684433842420822</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="03921320420472692759" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://gadarena.blogspot.com/2007/03/uninstall-ms-messenger.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-3727464234422052205.post-4402970753246229600</id><published>2007-03-22T07:28:00.001-07:00</published><updated>2007-03-22T07:37:01.771-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Internet Tips and TRICKS" /><title type="text">Browsing speed tweak</title><content type="html">&lt;p class="Titre-PersGauche" style="margin-bottom: 0.0001pt; line-height: normal;"&gt;&lt;a name="_Toc8024197"&gt;&lt;/a&gt;&lt;a name="_Toc7968495"&gt;&lt;/a&gt;&lt;a name="_Toc7968260"&gt;&lt;/a&gt;&lt;a name="_Toc7967552"&gt;&lt;/a&gt;&lt;a name="_Toc7967502"&gt;&lt;/a&gt;&lt;a name="_Toc7383791"&gt;&lt;/a&gt;&lt;a name="_Toc7383742"&gt;&lt;/a&gt;&lt;a name="_Toc7383092"&gt;&lt;/a&gt;&lt;a name="_Toc7383043"&gt;&lt;/a&gt;&lt;a name="_Toc7340363"&gt;&lt;/a&gt;&lt;a name="_Toc7340197"&gt;&lt;/a&gt;&lt;a name="_Toc7339425"&gt;&lt;/a&gt;&lt;a name="_Toc7337238"&gt;&lt;/a&gt;&lt;a name="_Toc7337176"&gt;&lt;/a&gt;&lt;a name="_Toc7209291"&gt;&lt;/a&gt;&lt;a name="_Toc7209242"&gt;&lt;/a&gt;&lt;a name="_Toc7209179"&gt;&lt;/a&gt;&lt;a name="_Toc7207633"&gt;&lt;/a&gt;&lt;a name="_Toc7207566"&gt;&lt;/a&gt;&lt;a name="_Toc7206235"&gt;&lt;/a&gt;&lt;a name="_Toc7206100"&gt;&lt;/a&gt;&lt;a name="_Toc7205729"&gt;&lt;/a&gt;&lt;a name="_Toc7205679"&gt;&lt;/a&gt;&lt;a name="_Toc7203879"&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span lang="FR-CA"&gt;Browsing speed tweak&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p class="MsoBodyTextIndent" style="text-indent: 0in;"&gt;&lt;span lang="FR-CA"&gt;(by «Dirk Diggler»)&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 12pt 0in 0.0001pt;"&gt;&lt;span style="" lang="FR-CA"&gt;When you connect to a web site your computer sends information back and forth. Although WinXP and win2000 has a pretty efficient DNS cache, you can increase its overall performance by increasing its size.&lt;br /&gt;&lt;br /&gt;You can do this with the registry entries below:&lt;br /&gt;&lt;br /&gt;************begin copy and paste***********&lt;br /&gt;Windows Registry Editor Version 5.00&lt;br /&gt;&lt;br /&gt;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0in 0in 0.0001pt;"&gt;&lt;span style="" lang="FR-CA"&gt;\Dnscache\Parameters]&lt;br /&gt;"CacheHashTableBucketSize"=dword:00000001&lt;br /&gt;"CacheHashTableSize"=dword:00000180&lt;br /&gt;"MaxCacheEntryTtlLimit"=dword:0000fa00&lt;br /&gt;"MaxSOACacheEntryTtlLimit"=dword:0000012d&lt;br /&gt;&lt;br /&gt;************end copy and paste***********&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3727464234422052205-4402970753246229600?l=gadarena.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://gadarena.blogspot.com/feeds/4402970753246229600/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=3727464234422052205&amp;postID=4402970753246229600" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/4402970753246229600" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/4402970753246229600" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Gadget-Arena/~3/dAq-MGTdoVo/browsing-speed-tweak.html" title="Browsing speed tweak" /><author><name>tarun</name><uri>http://www.blogger.com/profile/02034684433842420822</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="03921320420472692759" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://gadarena.blogspot.com/2007/03/browsing-speed-tweak.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-3727464234422052205.post-4941707813957215187</id><published>2007-03-22T07:27:00.003-07:00</published><updated>2007-03-22T07:37:01.772-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Internet Tips and TRICKS" /><title type="text">Adding .com easily - Quick URL's</title><content type="html">&lt;p class="Titre-PersGauche"&gt;&lt;a name="_Toc8024196"&gt;&lt;/a&gt;&lt;a name="_Toc7968494"&gt;&lt;/a&gt;&lt;a name="_Toc7968259"&gt;&lt;/a&gt;&lt;a name="_Toc7967551"&gt;&lt;/a&gt;&lt;a name="_Toc7967501"&gt;&lt;/a&gt;&lt;a name="_Toc7383790"&gt;&lt;/a&gt;&lt;a name="_Toc7383741"&gt;&lt;/a&gt;&lt;a name="_Toc7383091"&gt;&lt;/a&gt;&lt;a name="_Toc7383042"&gt;&lt;/a&gt;&lt;a name="_Toc7340362"&gt;&lt;/a&gt;&lt;a name="_Toc7340196"&gt;&lt;/a&gt;&lt;a name="_Toc7339424"&gt;&lt;/a&gt;&lt;a name="_Toc7337237"&gt;&lt;/a&gt;&lt;a name="_Toc7337175"&gt;&lt;/a&gt;&lt;a name="_Toc7209290"&gt;&lt;/a&gt;&lt;a name="_Toc7209241"&gt;&lt;/a&gt;&lt;a name="_Toc7209178"&gt;&lt;/a&gt;&lt;a name="_Toc7207632"&gt;&lt;/a&gt;&lt;a name="_Toc7207565"&gt;&lt;/a&gt;&lt;a name="_Toc7206234"&gt;&lt;/a&gt;&lt;a name="_Toc7206099"&gt;&lt;/a&gt;&lt;a name="_Toc7205728"&gt;&lt;/a&gt;&lt;a name="_Toc7205678"&gt;&lt;/a&gt;&lt;a name="_Toc7203867"&gt;&lt;/a&gt;&lt;a name="_Toc7168278"&gt;&lt;/a&gt;&lt;a name="_Toc7167916"&gt;&lt;/a&gt;&lt;a name="_Toc7097050"&gt;&lt;/a&gt;&lt;a name="_Toc6992484"&gt;&lt;/a&gt;&lt;a name="_Toc6990707"&gt;&lt;/a&gt;&lt;a name="_Toc6989769"&gt;&lt;/a&gt;&lt;a name="_Toc6989685"&gt;&lt;/a&gt;&lt;a name="_Toc6849463"&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span lang="FR-CA"&gt;Adding .com easily - Quick URL's&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;Just type cnn in the address bar&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;Now press Ctrl + Enter&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;This adds the http:// and the .com to &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3727464234422052205-4941707813957215187?l=gadarena.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://gadarena.blogspot.com/feeds/4941707813957215187/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=3727464234422052205&amp;postID=4941707813957215187" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/4941707813957215187" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/4941707813957215187" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Gadget-Arena/~3/GvfQQFBPBA4/adding-com-easily-quick-urls.html" title="Adding .com easily - Quick URL's" /><author><name>tarun</name><uri>http://www.blogger.com/profile/02034684433842420822</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="03921320420472692759" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://gadarena.blogspot.com/2007/03/adding-com-easily-quick-urls.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-3727464234422052205.post-687869862828410007</id><published>2007-03-22T07:27:00.001-07:00</published><updated>2007-03-22T07:37:01.773-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Internet Tips and TRICKS" /><title type="text">Change Web Page Font Size on the Fly</title><content type="html">&lt;p class="Titre-PersGauche"&gt;&lt;a name="_Toc8024195"&gt;&lt;/a&gt;&lt;a name="_Toc7968493"&gt;&lt;/a&gt;&lt;a name="_Toc7968258"&gt;&lt;/a&gt;&lt;a name="_Toc7967550"&gt;&lt;/a&gt;&lt;a name="_Toc7967500"&gt;&lt;/a&gt;&lt;a name="_Toc7383789"&gt;&lt;/a&gt;&lt;a name="_Toc7383740"&gt;&lt;/a&gt;&lt;a name="_Toc7383090"&gt;&lt;/a&gt;&lt;a name="_Toc7383041"&gt;&lt;/a&gt;&lt;a name="_Toc7340361"&gt;&lt;/a&gt;&lt;a name="_Toc7340195"&gt;&lt;/a&gt;&lt;a name="_Toc7339423"&gt;&lt;/a&gt;&lt;a name="_Toc7337236"&gt;&lt;/a&gt;&lt;a name="_Toc7337174"&gt;&lt;/a&gt;&lt;a name="_Toc7209289"&gt;&lt;/a&gt;&lt;a name="_Toc7209240"&gt;&lt;/a&gt;&lt;a name="_Toc7209177"&gt;&lt;/a&gt;&lt;a name="_Toc7207631"&gt;&lt;/a&gt;&lt;a name="_Toc7207564"&gt;&lt;/a&gt;&lt;a name="_Toc7206233"&gt;&lt;/a&gt;&lt;a name="_Toc7206098"&gt;&lt;/a&gt;&lt;a name="_Toc7205727"&gt;&lt;/a&gt;&lt;a name="_Toc7205677"&gt;&lt;/a&gt;&lt;a name="_Toc7203865"&gt;&lt;/a&gt;&lt;a name="_Toc7168276"&gt;&lt;/a&gt;&lt;a name="_Toc7167914"&gt;&lt;/a&gt;&lt;a name="_Toc7097048"&gt;&lt;/a&gt;&lt;a name="_Toc6992482"&gt;&lt;/a&gt;&lt;a name="_Toc6990705"&gt;&lt;/a&gt;&lt;a name="_Toc6989767"&gt;&lt;/a&gt;&lt;a name="_Toc6989683"&gt;&lt;/a&gt;&lt;a name="_Toc6849461"&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span lang="FR-CA"&gt;Change Web Page Font Size on the Fly&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;If your mouse contains a wheel for scrolling, you can change font size on the fly when viewing a Web page. To do so: &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;Press and hold Ctrl. Scroll down (or towards yourself) to enlarge the font size. Scroll up (or away from yourself) to reduce the font size. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;You might find it useful to reduce font size when printing a Web page, so that you can fit more content on the page.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3727464234422052205-687869862828410007?l=gadarena.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://gadarena.blogspot.com/feeds/687869862828410007/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=3727464234422052205&amp;postID=687869862828410007" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/687869862828410007" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/687869862828410007" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Gadget-Arena/~3/zyXDm6zsCLo/change-web-page-font-size-on-fly.html" title="Change Web Page Font Size on the Fly" /><author><name>tarun</name><uri>http://www.blogger.com/profile/02034684433842420822</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="03921320420472692759" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://gadarena.blogspot.com/2007/03/change-web-page-font-size-on-fly.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-3727464234422052205.post-8268727143790766056</id><published>2007-03-22T07:26:00.006-07:00</published><updated>2007-03-22T07:37:01.774-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Internet Tips and TRICKS" /><title type="text">Get rid of Internet Browsing history</title><content type="html">&lt;p class="Titre-PersGauche"&gt;&lt;a name="_Toc8024194"&gt;&lt;/a&gt;&lt;a name="_Toc7968492"&gt;&lt;/a&gt;&lt;a name="_Toc7968257"&gt;&lt;/a&gt;&lt;a name="_Toc7967549"&gt;&lt;/a&gt;&lt;a name="_Toc7967499"&gt;&lt;/a&gt;&lt;a name="_Toc7383788"&gt;&lt;/a&gt;&lt;a name="_Toc7383739"&gt;&lt;/a&gt;&lt;a name="_Toc7383089"&gt;&lt;/a&gt;&lt;a name="_Toc7383040"&gt;&lt;/a&gt;&lt;a name="_Toc7340360"&gt;&lt;/a&gt;&lt;a name="_Toc7340194"&gt;&lt;/a&gt;&lt;a name="_Toc7339422"&gt;&lt;/a&gt;&lt;a name="_Toc7337235"&gt;&lt;/a&gt;&lt;a name="_Toc7337173"&gt;&lt;/a&gt;&lt;a name="_Toc7209288"&gt;&lt;/a&gt;&lt;a name="_Toc7209239"&gt;&lt;/a&gt;&lt;a name="_Toc7209176"&gt;&lt;/a&gt;&lt;a name="_Toc7207630"&gt;&lt;/a&gt;&lt;a name="_Toc7207563"&gt;&lt;/a&gt;&lt;a name="_Toc7206232"&gt;&lt;/a&gt;&lt;a name="_Toc7206097"&gt;&lt;/a&gt;&lt;a name="_Toc7205726"&gt;&lt;/a&gt;&lt;a name="_Toc7205676"&gt;&lt;/a&gt;&lt;a name="_Toc7203863"&gt;&lt;/a&gt;&lt;a name="_Toc7168274"&gt;&lt;/a&gt;&lt;a name="_Toc7167912"&gt;&lt;/a&gt;&lt;a name="_Toc7097046"&gt;&lt;/a&gt;&lt;a name="_Toc6992480"&gt;&lt;/a&gt;&lt;a name="_Toc6990703"&gt;&lt;/a&gt;&lt;a name="_Toc6989765"&gt;&lt;/a&gt;&lt;a name="_Toc6989681"&gt;&lt;/a&gt;&lt;a name="_Toc6849459"&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span style=""&gt;&lt;span lang="FR-CA"&gt;Get rid of Internet Browsing history&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;Launch Internet Explorer. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;Select the Tools from the menu bar. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;Then select Internet Options... from the drop down menu. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;Once the internet options has loaded click on the general tab. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;Under the history section change the days to keep in history to 0. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;I would also click the clear history button to get rid of everything else. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 12pt;" lang="FR-CA"&gt;Click OK&lt;span style=""&gt;  &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3727464234422052205-8268727143790766056?l=gadarena.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://gadarena.blogspot.com/feeds/8268727143790766056/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=3727464234422052205&amp;postID=8268727143790766056" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/8268727143790766056" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3727464234422052205/posts/default/8268727143790766056" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Gadget-Arena/~3/XzU5KWn38Vo/get-rid-of-internet-browsing-history.html" title="Get rid of Internet Browsing history" /><author><name>tarun</name><uri>http://www.blogger.com/profile/02034684433842420822</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="03921320420472692759" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://gadarena.blogspot.com/2007/03/get-rid-of-internet-browsing-history.html</feedburner:origLink></entry></feed>

