Ads by Google

Get This Pop-up Window


Friday 16 August 2013

Windows 8.1 to launch in October

Microsoft today confirmed what had been widely rumored for the past week: Windows 8.1 will be released to the general public in October. Specifically, "starting at 12:00am on October 18th in New Zealand (that’s 4:00am October 17th in Redmond), Windows 8.1 will begin rolling out worldwide as a free update for consumers on Windows 8 through the Windows Store."
Today's announcement indirectly confirms what my sources have also told me, which is that Windows 8.1 has been officially is in escrow, awaiting the final, formal designation that it's been released to manufacturing.
Update: A Microsoft spokesperson says Windows 8.1 has not yet been released to manufacturing. “Development of Windows 8.1 continues to be on track, and we expect to reach the RTM milestone and release Windows to our OEM partners in late August.”
In Microsoft’s partner-driven world, that’s an important milestone. It means the code is on its way to OEMs, who in turn can incorporate it into new hardware designs for shipment this fall. After a year of generally miserable Windows 8 sales, those OEMs could use some good news to drive holiday sales.
The most visible change in Windows 8.1 is the addition of a "boot to desktop" option, as well as significant changes to the Start screen and support for smaller form factors. (For A full list of changes, see "Windows 8.1 unveiled: will it change your mind about Windows 8?")
Customers, though, are going to have to wait.
Why the lengthy delay (more than two months) between this milestone and General Availability? I’ve heard some conspiracy theories suggesting that this isn’t the real release and that Microsoft is still furiously swatting bugs between now and an October public release.
The actual reasons, I suspect, are more mundane:
First, hardware makers need time to tweak drivers and utilities for existing devices so that the upgrade process goes more smoothly. That’s crucial for devices that require firmware upgrades to work properly with the new code. On the Windows 8.1 Preview forums, I've read page after page of reports from frustrated Preview users who had either failed upgrades or problems with incompatible devices. OEMs can’t afford widespread issues for customers getting released code.
Second, Microsoft still has work to do on its first-party Windows 8 apps, especially the unified Windows communication suite that incorporates the Mail, People, and Calendar apps.
And finally, those few extra months allow time for some high-profile third-party developers to get on board with Windows 8 apps. Facebook, for example, is still missing in action on the platform.
There will also, of course, be fixes for the official Windows 8.1 code between now and October, released via Windows Update. But the update itself is locked down.
There's no indication in today's consumer announcement of when the Windows 8.1 code will be available for developers on MSDN, nor when the Enterprise edition will be available for general release. I've asked Microsoft for comment and will update this post when I hear back. Update: Microsoft declined to comment on either of these questions.

Why use the command-line? - Linux Terminal

"Under Linux there are GUIs (graphical user interfaces), where you can point and click and drag, and hopefully get work done without first reading lots of documentation. The traditional Unix environment is a CLI (command line interface), where you type commands to tell the computer what to do. That is faster and more powerful, but requires finding out what the commands are."
-- from man intro(1)
There are many varieties of Linux, but almost all of them use similar commands that can be entered from a command-line interface terminal.
There are also many graphical user interfaces (GUIs), but each of them works differently and there is little standardization between them. Experienced users who work with many different Linux distributions therefore find it easier to learn commands that can be used in all varieties of Ubuntu and, indeed, in other Linux distributions as well.
For the novice, commands-line interface commands can appear daunting:
sudo gobbledegook blah_blah -w -t -h --long-switch aWkward/ComBinationOf/mixedCase/underscores_strokes/and.dots
However, it is important to note that even experienced users often cut and paste commands (from a guide or manual) into the command-line terminal; they do not memorize them.
It is important, of course, to know how to use the command-line terminal - and anyone who can manage typing, backspacing, and cutting and pasting can manage the command-line terminal (it is not more difficult than that).
This page will outline a few crafty shortcuts which can make using a command-line interface easier.

Starting a Terminal

In Unity

Unity is the default Desktop Environment used as of 11.04. Where systems are not ready for Unity they revert to Gnome which is also used in previous releases such as Ubuntu 10.04 LTS (Lucid), see next sub-section.
The easiest way to open the Terminal is to use the 'search' function on the dash. Or you can click on the 'More Apps' button, click on the 'See more results' by the installed section, and find it in that list of applications. A third way, available after you click on the 'More Apps' button, is to go to the search bar, and see that the far right end of it says 'All Applications'. You then click on that, and you'll see the full list. Then you can go to Accessories > Terminal after that. So, the methods in Unity are:
Dash -> Search for Terminal
Dash -> More Apps -> 'See More Results' -> Terminal
Dash -> More Apps -> Accessories -> Terminal
Keyboard Shortcut: Ctrl + Alt + T

In Gnome

Gnome is the Classic Desktop Environment for Ubuntu 11.04 (Natty) and is the default DE in earlier releases, such as Ubuntu 10.04 LTS (Lucid).
Applications menu -> Accessories -> Terminal.
Keyboard Shortcut: Ctrl + Alt + T

In Xfce (Xubuntu)

Applications menu -> System -> Terminal.
Keyboard Shortcut: Super + T

In KDE (Kubuntu)

KMenu -> System -> Terminal Program (Konsole).

In LXDE (Lubuntu)

Menu -> Accessories -> LXTerminal.

Commands

sudo: Executing Commands with Elevated Privileges

  • Most of the following commands will need to be prefaced with the sudo command. This elevates privileges to the root-user administrative level temporarily, which is necessary when working with directories or files not owned by your user account. When using sudo you will be prompted for your password. Only users with sudo (administrative) privileges will be able to use this command. You should never use normal sudo to start graphical applications as Root (Please see RootSudo for more information on using sudo correctly.)

File & Directory Commands

  • The tilde (~) symbol stands for your home directory. If you are user, then the tilde (~) stands for /home/user
  • pwd: The pwd command will allow you to know in which directory you're located (pwd stands for "print working directory"). Example: "pwd" in the Desktop directory will show "~/Desktop". Note that the Gnome Terminal also displays this information in the title bar of its window. A useful gnemonic is "present working directory."
  • ls: The ls command will show you ('list') the files in your current directory. Used with certain options, you can see sizes of files, when files were made, and permissions of files. Example: "ls ~" will show you the files that are in your home directory.
  • cd: The cd command will allow you to change directories. When you open a terminal you will be in your home directory. To move around the file system you will use cd. Examples:
    • To navigate into the root directory, use "cd /"
    • To navigate to your home directory, use "cd" or "cd ~"
    • To navigate up one directory level, use "cd .."
    • To navigate to the previous directory (or back), use "cd -"
    • To navigate through multiple levels of directory at once, specify the full directory path that you want to go to. For example, use, "cd /var/www" to go directly to the /www subdirectory of /var/. As another example, "cd ~/Desktop" will move you to the Desktop subdirectory inside your home directory.
  • cp: The cp command will make a copy of a file for you. Example: "cp file foo" will make an exact copy of "file" and name it "foo", but the file "file" will still be there. If you are copying a directory, you must use "cp -r directory foo" (copy recursively). (To understand what "recursively" means, think of it this way: to copy the directory and all its files and subdirectories and all their files and subdirectories of the subdirectories and all their files, and on and on, "recursively")
  • mv: The mv command will move a file to a different location or will rename a file. Examples are as follows: "mv file foo" will rename the file "file" to "foo". "mv foo ~/Desktop" will move the file "foo" to your Desktop directory but will not rename it. You must specify a new file name to rename a file.
    • To save on typing, you can substitute '~' in place of the home directory.
    • Note that if you are using mv with sudo you can use the ~ shortcut, because the terminal expands the ~ to your home directory. However, when you open a root shell with sudo -i or sudo -s, ~ will refer to the root account's home directory, not your own.
  • rm: Use this command to remove or delete a file in your directory.
  • rmdir: The rmdir command will delete an empty directory. To delete a directory and all of its contents recursively, use rm -r instead.
  • mkdir: The mkdir command will allow you to create directories. Example: "mkdir music" will create a directory called "music".
  • man: The man command is used to show you the manual of other commands. Try "man man" to get the man page for man itself. See the "Man & Getting Help" section down the page for more information.
  • sudo: The sudo command is used to perform file operations on files that the Root User would only be allowed to change. An example would be trying to move one of your documents that another user accidentally moved to / back to your documents directory. Normally, to move the file, you would type mv /mydoc.odt ~/Documents/mydoc.odt, but you are not allowed to modify files outside of your home directory. To get around this, you would type sudo mv /mydoc.odt ~/Documents/mydoc.odt. This will successfully move the file back to its correct location, provided that you are not a standard user, who has less (administrative) ability than an administrator. Be aware, though, that by using the sudo command, you need to be extra careful. It is easier to damage your system by using the sudo command. For more information about the sudo command, click here.

Running a File Within a Directory

So you've decided to run a file using the command-line? Well... there's a command for that too!
  • ./filename.extension
After navigating to the file's parent directory, this command will enable any Ubuntu user to parse files compiled via gcc or any other programming language. Keep in mind that the 'extension' will vary depending upon the language the source code is written in. For example: ".c" for C source, ".cpp" for C++, ".rb" for Ruby, ".py" for python, etc. Also, remember that (in the case of interpreted languages like Ruby & Python) you must have a version of that language installed on Ubuntu before trying to run files written with it.

System Information Commands

  • df: The df command displays filesystem disk space usage for all mounted partitions. "df -h" is probably the most useful - it uses megabytes (M) and gigabytes (G) instead of blocks to report. (-h means "human-readable")
  • du: The du command displays the disk usage for a directory. It can either display the space used for all subdirectories or the total for the directory you run it on. Example:
user@users-desktop:~$ du /media/floppy
1032    /media/floppy/files
1036    /media/floppy/
user@users-desktop:~$ du -sh /media/floppy
1.1M    /media/floppy/
  • -s means "Summary" and -h means "Human Readable"
  • free: The free command displays the amount of free and used memory in the system. "free -m" will give the information using megabytes, which is probably most useful for current computers.
  • top: The top ('table of processes') command displays information on your Linux system, running processes and system resources, including CPU, RAM & swap usage and total number of tasks being run. To exit top, press "q".
  • uname -a: The uname command with the -a option prints all system information, including machine name, kernel name & version, and a few other details. Most useful for checking which kernel you're using.
  • lsb_release -a: The lsb_release command with the -a option prints version information for the Linux release you're running, for example:
user@computer:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 11.10
Release:        11.10
Codename:       oneiric
  • ip addr reports on your system's network interfaces.

Adding A New User

  • "adduser newuser" command will create a new general user called "newuser" on your system, and to assign a password for the newuser account use "passwd newuser".

Options

The default behaviour for a command may usually be modified by adding a --option to the command. The ls command for example has an -s option so that "ls -s" will include file sizes in the listing. There is also a -h option to get those sizes in a "human readable" format.
Options can be grouped in clusters so "ls -sh" is exactly the same command as "ls -s -h". Most options have a long version, prefixed with two dashes instead of one, so even "ls --size --human-readable" is the same command.

"Man" and getting help

Warning /!\ man command, info command and command --help are the most important tools at the command line.
Nearly every command and application in Linux will have a man (manual) file, so finding them is as simple as typing "man "command"" to bring up a longer manual entry for the specified command. For example, "man mv" will bring up the mv (Move) manual.
Move up and down the man file with the arrow keys, and quit back to the command prompt with "q".
"man man" will bring up the manual entry for the man command, which is a good place to start!
"man intro" is especially useful - it displays the "Introduction to user commands" which is a well-written, fairly brief introduction to the Linux command line.
There are also info pages, which are generally more in-depth than man pages. Try "info info" for the introduction to info pages.
Some software developers prefer info to man (for instance, GNU developers), so if you find a very widely used command or app that doesn't have a man page, it's worth checking for an info page.
Virtually all commands understand the -h (or --help) option which will produce a short usage description of the command and it's options, then exit back to the command prompt. Try "man -h" or "man --help" to see this in action.
Caveat: It's possible (but rare) that a program doesn't understand the -h option to mean help. For this reason, check for a man or info page first, and try the long option --help before -h.

Searching for man files

If you aren't sure which command or application you need to use, you can try searching the man files.
  • man -k foo will search the man files for foo. Try "man -k nautilus" to see how this works.
    • Note that this is the same as doing apropos command.
  • man -f foo searches only the titles of your system's man files. Try "man -f gnome", for example.
    • Note that this is the same as doing whatis command.

Other Useful Things

Prettier Manual Pages

Users who have Konqueror installed will be pleased to find they can read and search man pages in a web browser context, prettified with their chosen desktop fonts and a little colour, by visiting man:/command in Konqueror's address bar. Some people might find this lightens the load if there's lots of documentation to read/search.

Pasting in commands

Often, you will be referred to instructions that require commands to be pasted into the terminal. You might be wondering why the text you've copied from a web page using ctrl+C won't paste in with ctrl+V. Surely you don't have to type in all those nasty commands and filenames? Relax. ctrl+shift+V pastes into a Gnome terminal; you can also do Middle Button Click on your mouse (both buttons simultaneously on a two-button mouse) or Right Click and select Paste from the menu. However, if you want to avoid the mouse and yet paste it, use "Shift+Insert", to paste the command. If you have to copy it from another terminal / webpage, you can use "Ctrl+Insert" to copy.

Save on typing

Up Arrow or ctrl+p
Scrolls through the commands you've entered previously.
Down Arrow or ctrl+n
Takes you back to a more recent command.
Enter
When you have the command you want.
tab
A very useful feature. It autocompletes any commands or filenames, if there's only one option, or else gives you a list of options.
ctrl+r
Searches for commands you've already typed. When you have entered a very long, complex command and need to repeat it, using this key combination and then typing a portion of the command will search through your command history. When you find it, simply press Enter.
History
The history command shows a very long list of commands that you have typed. Each command is displayed next to a number. You can type !x to execute a previously typed command from the list (replace the X with a number). If you history output is too long, then use history | less for a scrollable list.
  • Example: you ran history and found you want to use command 1967 . Simply enter
!1967

Change the text

The mouse won't work. Use the Left/Right arrow keys to move around the line.
When the cursor is where you want it in the line, typing inserts text - ie it doesn't overtype what's already there.
ctrl+a or Home
Moves the cursor to the start of a line.
ctrl+e or End
Moves the cursor to the end of a line.
esc+b
Moves to the beginning of the previous or current word.
ctrl+k
Deletes from the current cursor position to the end of the line.
ctrl+u
Deletes from the start of the line to the current cursor position.
ctrl+w
Deletes the word before the cursor.
alt+b
Goes back one word at a time.
alt+f
Moves forward one word at a time.
alt+c
Capitalizes letter where cursor is and moves to end of word.

More ways to run a terminal

You can also get it with a function key
You can run more than one - in tabs or separate windows
You can also install guake (Gnome), tilda (XFCE / LXDE) or yakuake (KDE) and have a terminal which appears and hides on shortcut key. This can be particularly useful if you use terminal a lot

An extremely handy tool :: Incremental history searching

in terminal enter:
gedit  ~/.inputrc
  • then copy paste and save
"\e[A": history-search-backward
"\e[B": history-search-forward
"\e[C": forward-char
"\e[D": backward-char
  • FROM now on and many agree this is the most useful terminal tool saves you a lot of writing/memorizing... all you need to do to find a previous command is to enter say the first 2 or 3 letters and upward arrow will take you there quickly say i want:
for f in *.mid ; do timidity "$f"; done
all i need to do is enter
fo
  • and hit upward arrow command will soon appear

How to create upsidedown and/or reverse text with your terminal

if you wish or need to ever flip text upside down [vertical flip] "uʍop ǝpısdn ʇxǝʇ dıʃɟ" or/and create reverse text here is a terminal way to achieve this
Copy Paste and Save as flip.pl in your home folder the following [Thanx to Lars Noodén for script]
use strict;
use warnings;
use utf8;

binmode(STDOUT, ":utf8");

my %flipTable = (
    "a" => "\x{0250}",
    "b" => "q",
    "c" => "\x{0254}", 
    "d" => "p",
    "e" => "\x{01DD}",
    "f" => "\x{025F}", 
    "g" => "\x{0183}",
    "h" => "\x{0265}",
    "i" => "\x{0131}", 
    "j" => "\x{027E}",
    "k" => "\x{029E}",
    "l" => "|",
    "m" => "\x{026F}",
    "n" => "u",
    "o" => "o",
    "p" => "d",
    "q" => "b",
    "r" => "\x{0279}",
    "s" => "s",
    "t" => "\x{0287}",
    "u" => "n",
    "v" => "\x{028C}",
    "w" => "\x{028D}",
    "x" => "x",
    "y" => "\x{028E}",
    "z" => "z",
    "A" => "\x{0250}",
    "B" => "q",
    "C" => "\x{0254}", 
    "D" => "p",
    "E" => "\x{01DD}",
    "F" => "\x{025F}", 
    "G" => "\x{0183}",
    "H" => "\x{0265}",
    "I" => "\x{0131}", 
    "J" => "\x{027E}",
    "K" => "\x{029E}",
    "L" => "|",
    "M" => "\x{026F}",
    "N" => "u",
    "O" => "o",
    "P" => "d",
    "Q" => "b",
    "R" => "\x{0279}",
    "S" => "s",
    "T" => "\x{0287}",
    "U" => "n",
    "V" => "\x{028C}",
    "W" => "\x{028D}",
    "X" => "x",
    "Y" => "\x{028E}",
    "Z" => "z",
    "." => "\x{02D9}",
    "[" => "]",
    "'" => ",",
    "," => "'",
    "(" => ")",
    "{" => "}",
    "?" => "\x{00BF}", 
    "!" => "\x{00A1}",
    "\"" => ",",
    "<" => ">",
    "_" => "\x{203E}",
    ";" => "\x{061B}",
    "\x{203F}" => "\x{2040}",
    "\x{2045}" => "\x{2046}",
    "\x{2234}" => "\x{2235}",
    "\r" => "\n",
    " " => " "
);

while ( <> ) {
    my $string = reverse( $_ );
    while ($string =~ /(.)/g) {
        print $flipTable{$1};
    }
    print qq(\n);
}
Then to set it up
sudo mv flip.pl /bin/
cd /bin/
sudo chown yourusername flip.pl && sudo chmod +x flip.pl
  • then open terminal enter
flip.pl
else
perl /bin/flip.pl
write what you want and hit return
Copy and paste wherever you want text document or internet forum etc...
  • ɹǝʇuǝ puɐ ʇuɐʍ noʎ ʇɐɥʍ ǝʇıɹʍ ˙˙˙ɔʇǝ ɯnɹoɟ ʇǝuɹǝʇuı ɹo ʇuǝɯnɔop ʇxǝʇ ʇuɐʍ noʎ ɹǝʌǝɹǝɥʍ ǝʇsɐd puɐ ʎdoɔ
==================
  • if you want to reverse back to front write your text in text editor save as mytext to home folder then enter
rev mytext
  • copy and paste the result tluser eht etsap dna ypoc and of course you can combine both for truly cryptic results ɔodʎ ɐup dɐsʇǝ ʇɥǝ ɹǝsnʃʇ

Wednesday 7 August 2013

How to : Recovery Instant Messenger password

Description

  
MessenPass is a password recovery tool that reveals the passwords of the following instant messenger applications:
  • MSN Messenger
  • Windows Messenger (In Windows XP)
  • Windows Live Messenger (In Windows XP/Vista/7)
  • Yahoo Messenger (Versions 5.x and 6.x)
  • Google Talk
  • ICQ Lite 4.x/5.x/2003
  • AOL Instant Messenger v4.6 or below, AIM 6.x, and AIM Pro.
  • Trillian
  • Trillian Astra
  • Miranda
  • GAIM/Pidgin
  • MySpace IM
  • PaltalkScene
  • Digsby
MessenPass can only be used to recover the passwords for the current logged-on user on your local computer, and it only works if you chose the remember your password in one of the above programs. You cannot use this utility for grabbing the passwords of other users.


Known Problems

False Alert Problems: Some Antivirus programs detect MessenPass utility as infected with Trojan/Virus. Click here to read more about false alerts in Antivirus programs If your Antivirus software shows a false alert, you can use the following article that explains how to send a report about a false positive issue to your Antivirus company:
How to Report Malware or False Positives to Multiple Antivirus Vendors

Search for other utilities in NirSoft

Versions History

  • Version 1.42:
    • Added 'Mark Odd/Even Rows' option, under the View menu. When it's turned on, the odd and even rows are displayed in different color, to make it easier to read a single line.
  • Version 1.41:
    • Added 'Copy Password' option (Ctrl+P).
  • Version 1.40:
    • Added an option to export the passwords into KeePass csv file (In 'Save Selected Items'). You can use the created csv file to easily import your messenger passwords into KeePass password manager.
    • Added 'Add Header Line To CSV/Tab-Delimited File' option. When this option is turned on, the column names are added as the first line when you export to csv or tab-delimited file.
    • You can now send the email passwords list to stdout by specifying an empty filename ("") in the command-line of all save parameters.
      For example: mspass.exe /stab "" >> c:\temp\passwords.txt
  • Version 1.35 - Added 'Password Strength' column, which calculates the strength of the password and displays it as Very Weak, Weak, Medium, Strong, or Very Strong.
  • Version 1.30 - Fixed issue: MessenPass created a file named '1.bin' under e:\temp if this folder was existed. This file was created for debugging purposes but accidently remained in the release version too.
  • Version 1.29 - Fixed MessenPass to work with the latest version of Miranda.
  • Version 1.28 - Fixed a crash problem with Application Compatibility Engine on Windows 7/Vista.
  • Version 1.27 - Added sorting command-line options.
  • Version 1.26 - Added AutoComplete support for 'Select Folders' dialog-box.
  • Version 1.25 - Added support for Trillian Astra.
  • Version 1.24 - Added support for Digsby.
  • Version 1.23 - Fixed bug: Exception window appeared when starting MessenPass in some systems.
  • Version 1.22 - Added support for imvu.com passwords stored by Firefox and IE7.
  • Version 1.21 - Added support for ebuddy.com and Google Talk passwords stored by Firefox.
  • Version 1.20 - Added support for Paltalk.
  • Version 1.18 - Added support for saving as comma-delimited file.
  • Version 1.17 - Added support for MySpace IM.
  • Version 1.16 - Added support for Google Talk password, if it's stored by Google Desktop.
  • Version 1.15 - The configuration is now saved to a file instead of the Registry.
  • Version 1.14 - Added support for AIM 6.x and AIM pro.
  • Version 1.13 - Windows Live Messenger passwords are now shown under Vista even without admin rights.
  • Version 1.12 - Fixed bug: Pidgin passwords were not shown when using the save command-line options.
  • Version 1.11 - Added support for Pidgin (Successor of GAIM)
  • Version 1.10 - Added support for Windows Live Messenger under Vista. (Requires to run as admin)
  • Version 1.08 - Added support for Google Talk.
  • Version 1.07 - Added support for Windows Live Messenger and for Yahoo accounts in Miranda.
  • Version 1.06 - Added support for SIP and Exchange Instant Messaging accounts on Windows Messenger.
  • Version 1.05 - Added support for newer versions of Miranda.
  • Version 1.04 - Added support for MSN Messenger 7.5 (Multiple accounts)
  • Version 1.03 - Added command-line support.
  • Version 1.02 - Added support Versions 5.x of Yahoo Messenger.
  • Version 1.01 - Added support for ICQ Lite 4.x/2003
  • Version 1.00 - First release.

Installing MessenPass

MessenPass can be used without any installation process, simply by running the executable file (mspass.exe) from the zip file.
If you want to install MessenPass with automatic creation of program group icons and uninstall support, download and run the self-install executable file.

Using MessenPass

When you run MessenPass, it automatically detects the Instant Messenger applications installed on your computer, decrypts the passwords they store, and displays all user name/password pairs that it found in the main window of MessenPass. If from some reason, MessenPass fails to locate the installed Instant Messenger application, you can try to manually select the right folder of your IM application by using 'Select Folders' option (from the File menu). On the main window of MessenPass, you can select one or more password items, and then copy them to the clipboard in tab-delimited format (you can paste this format into Excel or Open-Office Spreadsheet), or save them into text/html files.


License

This utility is released as freeware. You are allowed to freely use it at your home or in your company. However, you are not allowed to make profit from this software or to charge your customers for recovering their passwords with this software, unless you got a permission from the software author.
You are also allowed to freely distribute this utility via floppy disk, CD-ROM, Internet, or in any other way, as long as you don't charge anything for this. If you distribute this utility, you must include all files in the distribution package, without any modification !

Disclaimer

The software is provided "AS IS" without any warranty, either expressed or implied, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose. The author will not be liable for any special, incidental, consequential or indirect damages due to loss of data or any other reason.

Download MessenPass in zip file (mspass.zip)

How to : Recovery Email password such as Outlook

Description




Mail PassView is a small password-recovery tool that reveals the passwords and other account details for the following email clients:
  • Outlook Express
  • Microsoft Outlook 2000 (POP3 and SMTP Accounts only)
  • Microsoft Outlook 2002/2003/2007/2010/2013 (POP3, IMAP, HTTP and SMTP Accounts)
  • Windows Mail
  • Windows Live Mail
  • IncrediMail
  • Eudora
  • Netscape 6.x/7.x (If the password is not encrypted with master password)
  • Mozilla Thunderbird (If the password is not encrypted with master password)
  • Group Mail Free
  • Yahoo! Mail - If the password is saved in Yahoo! Messenger application.
  • Hotmail/MSN mail - If the password is saved in MSN/Windows/Live Messenger application.
  • Gmail - If the password is saved by Gmail Notifier application, Google Desktop, or by Google Talk.
For each email account, the following fields are displayed: Account Name, Application, Email, Server, Server Type (POP3/IMAP/SMTP), User Name, and the Password.
If your email program is not supported by Mail PassView, you can still recover your password by using this Password Sniffer

Known Problems

False Alert Problems: Some Antivirus programs detect Mail PassView utility as infected with Trojan/Virus. Click here to read more about false alerts in Antivirus programs If your Antivirus software shows a false alert, you can use the following article that explains how to send a report about a false positive issue to your Antivirus company:
How to Report Malware or False Positives to Multiple Antivirus Vendors

System Requrements

This utility works with any version of Windows, starting from Windows 98 and up to Windows 7.


Versions History

Date Version Description
28/03/20131.80
  • Added support for Outlook 2013.
05/05/20121.78
  • Fixed bug: Mail PassView failed to get the password of thunderbird if the password file path contained non-English characters.
14/08/20111.77
  • Added 'SMTP Server Port' column.
20/07/20111.76
  • Added support for Thunderbird 5.x
30/05/20111.75
  • Added 'SMTP Server' column, which displays the SMTP server for POP3/IMAP accounts on Outlook, Windows Live Mail, and Outlook Express email clients.
05/04/20111.73
  • Added 'Mark Odd/Even Rows' option, under the View menu. When it's turned on, the odd and even rows are displayed in different color, to make it easier to read a single line.
20/02/20111.72
  • Fixed memory leak problems with Thunderbird accounts.
19/01/20111.71
  • Added 'Copy Password' option (Ctrl+P).
07/11/20101.70
  • Added an option to export the passwords into KeePass csv file (In 'Save Selected Items'). You can use the created csv file to easily import your email passwords into KeePass password manager.
  • Added 'Add Header Line To CSV/Tab-Delimited File' option. When this option is turned on, the column names are added as the first line when you export to csv or tab-delimited file.
  • You can now send the email passwords list to stdout by specifying an empty filename ("") in the command-line of all save parameters.
    For example: mailpv.exe /stab "" >> c:\temp\passwords.txt
05/08/20101.65
  • Added 'Password Strength' column, which calculates the strength of the password and displays it as Very Weak, Weak, Medium, Strong, or Very Strong.
18/07/20101.60
  • Added 'Secured' column (Yes/No), which specifies whether this email account uses a secured connection.
  • Added 'Server Port' column, which displays the port number if the server uses non-standard SMTP/POP3/IMAP port.
03/02/20101.55
  • Added support for Mozilla Thunderbird 3.x (Thunderbird 3 must be installed on your system in order to retrieve the passwords)
21/09/20091.52
  • Added /sort command-line option for sorting when you save the passwords list from command-line.
20/04/20091.51
  • The accounts of Windows Live Mail are now also displayed if you changed the store folder location.
25/01/20091.50
  • Added support for Windows Live Mail.
22/11/2008 1.46
  • Added AutoComplete support to the 'Select Folders' dialog-box.
  • 'Select Folders' dialog-box is now resizable.
02/10/2008 1.45
  • Fixed bug: Exception window appeared when starting Mail PassView in some systems.
24/06/2008 1.44
  • Fixed bug: The main window lost the focus when the user switched to another application and then returned back to Mail PassView.
23/04/2008 1.43
  • Added support for saving as comma-delimited text file.
11/12/2007 1.42
  • Added support for retrieving Hotmail/MSN mail accounts from the latest version of Windows Messenger.
  • Added support for Gmail Notifier application under IE7.
27/10/2007 1.41
  • Configuration is now saved to a file instead of the Registry.
14/09/2007 1.40
  • Added support for SMTP and NNTP accounts on Windows Mail.
  • Fixed problems with Thunderbird 2 accounts.
07/04/2007 1.38
  • Added support for Windows Mail.
15/11/2006 1.37
  • Added support for Gmail passwords stored by Google Desktop.
23/06/2006 1.36
  • Fixed bug: Mail PassView didn't show Netscape/Thunderbird accounts when using save command-line options.
13/05/2006 1.35
  • Added support for passwords stored by Google Talk.
18/12/2005 1.34
  • Added support for newer versions of Gmail Notifier.
27/11/2005 1.33
  • Added support for IMAP accounts in Mozilla Thunderbird
  • New column: Profile - displayed for Outlook Express and MS-Outlook 2002/2003.
  • Option to select another folder/file for Thunderbird, Netscape, and Eudora.
26/08/2005 1.32
  • Added support for Hotmail/MSN mail password stored by MSN Messenger v7.5
  • Added support for Windows XP style.
10/12/2004 1.31 Fixed bug with Mozilla Thunderbird accounts.
05/11/2004 1.30
  • Added support for Netscape 6.x/7.x and Mozilla Thunderbird.
  • Added support for Yahoo! Mail - If the password is saved in Yahoo! Messenger application.
  • Added support for Hotmail/MSN mail - If the password is saved in MSN Messenger application.
  • Added support for Gmail - If the password is saved by Gmail Notifier application.
  • Passwords of Outlook Express are now decrypted even if they are not stored in the Protected Storage.
22/06/2004 1.20
  • Added support for Outlook 2003.
  • All Outlook accounts are now displayed, even if their password is not stored in the system.
  • New options: Choose Columns, HTML reports, find, and more...
  • Ability to translate to other languages.
02/06/2003 1.13
  • Added support for multiple identities in Outlook Express.
  • In Eudora and Incrdimail accounts - The accounts are now displayed even if there is no password.
30/05/2003 1.12 Starting from this version, all accounts of Eudora are shown, not only the Dominant account.
23/05/2003 1.11 Fixed bug: In previous version, Mail PassView failed to display IncrediMail accounts in some computers.
15/05/2003 1.10
  • Added support for SMTP accounts in MS Outlook 2000 and Outlook Express.
  • Added support for POP3, IMAP, HTTP and SMTP Accounts in MS Outlook 2002
  • Saving accounts information into HTML file.
30/04/2003 1.00 First Release


License

This utility is released as freeware. You are allowed to freely use it at your home or in your company. However, you are not allowed to make profit from this software or to charge your customers for recovering their passwords with this software, unless you got a permission from the software author.
You are also allowed to freely distribute this utility via floppy disk, CD-ROM, Internet, or in any other way, as long as you don't charge anything for this. If you distribute this utility, you must include all files in the distribution package, without any modification !

Disclaimer

The software is provided "AS IS" without any warranty, either expressed or implied, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose. The author will not be liable for any special, incidental, consequential or indirect damages due to loss of data or any other reason.

Using the Mail PassView utility

This utility is a standalone executable. It doesn't require any installation process or additional DLLs. Just run the executable (mailpv.exe) and watch the list of your email accounts. You can save the accounts information into a text file or copy them to the clipboard.

Getting email passwords from another instance of Windows ?

Many people ask me whether it's possible to extract the email passwords from an external instance of Windows that cannot boot.
For now, Mail PassView can only retrieve the passwords from external drive for Mozilla Thunderbird, Netscape, and Eudora. It's possible that external drive support for more email applications will be added in the future. In order to do that, you must go to 'Select Folders/Files' window (F6) and manually select the right folders in the external drive.

Download Mail PassView in zip file (mailpv.zip)

OFFICE 2013 PRO PLUS UNTOUCH X86 & X64(ENGLISH) + ACTIVATOR

*Visio and Project are not included in the ISO


 Here are the link to office 2013 pro plus retail edition.

Window 8 Activator


Long time before this I had make several post on Window 7 Loader by DAZ. This Window Loader are the most perfect and clean loader I ever used.
Also with window Update always ON ,

How to : Crack wifi password by beini Minidwep-gtk

1. Insert CD to you CD Rom, restart your computer and boot from CD-ROM (just like when you format computer to install windows, boot the CD).
    You may need to change your boot order to CDROM..