Archive for the ‘Others’ category

2 Options to Reset Windows 8 Tablet to Factory Settings

June 6th, 2014 by Admin

If your Windows 8 tablet has been infected by a virus or has become slow to the point of being unusable, resetting the tablet to factory settings may be the best and quickest solution. Luckily, Windows 8 has built-in tool to reset your tablet to its original state. In this article I’ll show you 2 options to reset Windows 8 tablet to factory settings.

WARNING: All your documents, pictures, settings, accounts and any other data on your Windows 8 tablet will be deleted while performing factory reset.

Method 1: Reset from within Windows:

  1. Swipe in from the right edge of the screen, tap Settings. If you’re using a mouse, point to the upper-right corner of the screen, move the mouse pointer down, click Settings.
  2. Tap or click Change PC settings.
  3. Tap or click Update and recovery, and then tap or click Recovery.reset-windows-8
  4. Under Remove everything and reinstall Windows, tap or click Get started.

Method 2: Reset from Windows 8 Login Screen

If you’ve lost your password, you may not have to reset your tablet. See unlock Windows 8 password before performing these reset steps:

  1. From the Windows sign-in screen, tap or click the Power icon in the lower right corner of the sign-in screen.
  2. Press and hold the Shift key. (If you’re using the on-screen keyboard, tap or click the Shift key.)
  3. While the Shift key is still pressed, tap or click Restart. After the tablet restarts, the Choose an option screen will display.
  4. Tap or click Troubleshoot.
  5. Tap or click Reset your PC.

If you don’t have a keyboard connected to Windows 8 tablet, you’ll need to use the on-screen keyboard to do these reset steps. From the Windows 8 sign-in screen, tap or click the Ease of access icon in the lower-left corner of the screen, and then tap or click On-Screen Keyboard.

PCUnlocker: Support 32-bit UEFI and 64-bit UEFI Boot

May 29th, 2014 by Admin

uefiUEFI (Unified Extensible Firmware Interface) is a standard firmware interface for PCs, designed to replace legacy BIOS (basic input/output system). Many new computers are shipping with UEFI firmware instead of standard BIOS. Most of UEFI-based computers come with 64-bit UEFI but there are also some Windows 8 tablets that use 32-bit UEFI, such as Dell Venue 8/11 Pro, Toshiba Encore, Acer Iconia W3/W4, Lenovo MIIX 2, Lenovo ThinkPad Tablet 2 and ASUS Transformer Book T100/T300.

However, there is a limitation on installing Windows on devices with UEFI firmware. A 32-bit UEFI firmware core must be used to install a 32-bit OS and likewise 64-bit UEFI for a 64-bit OS. It is possible to have support for both 32-bit and 64-bit UEFI in one BIOS, but it requires additional work and ROM space, so this may not be commonly implemented.

If you forgot Windows administrator password for a UEFI-based computer, you can reset it easily with PCUnlocker. Just make a PCUnlocker Live CD and you can then use it to reset lost Windows password on any computer with EFI/UEFI/BIOS firmware. If your computer doesn’t have an optical drive, you can use the freeware ISO2Disc to make a GPT bootable USB drive from PCUnlocker ISO image.

PCUnlocker is available in two version (UEFI 64-bit version and UEFI 32-bit version). You can purchase the full version or try the trial version before deciding on making a purchase.

Download PCUnlocker with 64-bit UEFI Support

Download PCUnlocker with 32-bit UEFI Support

VMware: Change SCSI Controller Type from BusLogic to LSI Logic

May 11th, 2014 by Admin

After upgrading to a 64-bit operating system or an operating system that does not support BusLogic, you may receive the following error on startup:

The BusLogic SCSI adapter is not supported for 64-bit guests in this release

If you boot the virtual machine from a WinPE bootdisk, you’ll be unable to see your hard drive. BusLogic is not supported in a lot of the newer operating systems. BusLogic is not actively being improved by VMware so bugs come along as things change in the OS and none fixes them.

To get around this issue on a VMware virtual machine, you need to change the SCSI controller type from BusLogic to LSI Logic. There isn’t an option in the VMware Player or Workstation to change the SCSI type, so I turn to edit virtual machine’s configuration (.vmx ) file by following these steps:

  1. Power off your VMware virtual machine and then use a text editor to open your virtual machine’s configuration (.vmx ) file.
  2. Find the line that begins with scsi0.virtualDev, where 0 is the SCSI controller number of your virtual hard drive. If your current SCSI control type is BugLogic, there should be a line present in your .vmx file: scsi0.virtualDev = "buslogic". Replace this line with with scsi0.virtualDev = "lsilogic"
  3. If there is no such line, simply add the following line to your .vmx file:
    scsi0.virtualDev = "lsilogic"

    change-vmware-scsi-type.png

  4. Save the .vmx file and close the text editor. Start your virtual machine and it will run with the LSI Logic SCSI controller.

The SCSI controller type of a virtual hard drive can be one of the following ones, but only the BusLogic SCSI adapter does not work under 64-bit operating system.

  • buslogic – BusLogic SCSI
  • lsilogic – LSI Logic SCSI
  • lsisas1068 – LSI Logic SAS
  • pvscsi – VMware Paravirtual SCSI

How to Change Screen Resolution in Windows PE 4 and 5

April 26th, 2014 by Admin

Windows PE (Windows Preinstallation Environment) is a lightweight version of Windows used for troubleshooting an operating system while it is offline. Previously I’ve written an article on how to create a bootable Windows PE CD or USB flash drive. But the default resolution of Windows PE is 800 x 600, Is there a way to change the screen resolution to fit on your screen?

To set screen resolution in WinPE, simply put an answer file named unattend.xml file in the root of the WinPE ISO image with the following content.

<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
  <settings pass="windowsPE">
    <component name="Microsoft-Windows-Setup" processorArchitecture="amd64"
publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS"
 xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
          <Display>
          <ColorDepth>32</ColorDepth>
          <HorizontalResolution>1024</HorizontalResolution>
          <RefreshRate>60</RefreshRate>
          <VerticalResolution>768</VerticalResolution>
          </Display>
    </component>
  </settings>
</unattend>

If your Windows PE is a 32-bit Windows environment, remember to change the processor architecture from amd64 to x86. Also, since Windows PE 4.0, it doesn’t like 16-bit color depth, so when changing to 32-bit it would work perfect.

2 Options to Convert Outlook .OST to .PST for Free

April 6th, 2014 by Admin

How to convert Outlook .ost file to a .pst file, so I can open it in a new Outlook installation on another computer? PST is a personal storage table used by Microsoft Outlook to store mailbox data of an Outlook user, while OST is an offline storage table used by Outlook Exchange Server that stores email messages and other mailbox data. However, you cannot open an .ost file in Office Outlook if it is not configured with Exchange Server.

There are many situations that we need to convert .ost file to pst format for future importing into Outlook. In this tutorial we’ll show you two options to convert Outlook .OST file to PST format for free, without using any third-party software.

Tips: In all versions of Microsoft Outlook, there is no option to password protected an .ost file. After converting ost to pst, you can set a password to protect the .pst file itself. However, pst file password is very weak and you can break pst password easily!

Method 1: Convert OST to PST with AutoArchive

Using the AutoArchive feature of Microsoft Outlook, you can manage space in your mailbox of an .ost file by moving older items to to a specific location in the PST file format. This should be the easiest way to convert an .OST file to PST format. However, AutoArchive is not enabled by default. Here are step-by-step instructions to enable AutoArchive in Outlook 2007:

  1. Open Outlook application. Click on the Tools menu and click on Options.
  2. The Outlook Options window will open. Click on Other tab and then AutoArchive button.
  3. The AutoArchive window opens and you’ll notice everything is grayed out. Check the box next to Run AutoArchive every…

    Outlook-AutoArchive

  4. Specify how often you want it to run. Click on the “Move old items to” option and specify a newly created .pst file to save the archive data. After you’ve made your selections click OK.
  5. You can then access the archive pst file at a later time after the AutoArchive feature runs.

Method 2: Migrate OST to PST with Outlook GUI

With Outlook GUI you can copy everything in the mailbox of your OST file to PST flawlessly. To get started, you need to create a new pst file and then follow these steps to migrate OST to PST:

  1. From the left-hand navigation pane of Outlook, select your desired ost folder such as inbox that you want to copy.
  2. On the Edit menu, click the Copy to Folder option.
  3. In the Copy to Folder dialog, select your newly created pst file. Click OK.

    Outlook-Copy-Items

  4. Repeat the steps for copying and saving the email items from each folder containing email messages. At this point in time, the email messages of OST file are copied to the newly created PST file.

How to Reveal Internet Explorer 10 / 11 Password from Windows Vault

March 25th, 2014 by Admin

How to view or recover your saved website passwords from Internet Explorer 10 or 11? In versions 7, 8 and 9 of Internet Explorer, passwords are protected using DPAPI and the login URL as entropy before being saved in the registry. Since Internet Explorer 10, it no longer stores encrypted passwords in the registry, and they’re stored in the Windows Vault, which is the default storage vault for the credential manager information.

Internet Explorer 10 / 11 Stored Passwords

In this article we’ll show you how to reveal the Internet Explorer 10/11 saved passwords from Windows Vault. With the Internet Explorer Password Recovery program you can retrieve all autocomplete passwords that are stored in the Credential Manager. This can be useful if a user forgot the password before reinstalling Windows.

How to Reveal Internet Explorer 10 / 11 Password from Windows Vault?

  1. Download and install the Internet Explorer Password Recovery program on your computer.
  2. After you’ve installed it, start the program.
  3. Click on the Start Recovery button, and then select the Recover IE Password option from the drop-down menu.

  4. The program will decrypt your website passwords saved in Windows Vault, and display the login information (including website URL, username and password) immediately.

Besides revealing Internet Explorer 10/11 passwords, Internet Explorer Password Recovery program can also extract the saved passwords from Internet Explorer 6, 7, 8 and 9.

Recover Firefox, Thunderbird, SeaMonkey, Flock Passwords from Old Profiles

March 24th, 2014 by Admin

Did you know that all the settings you make in Firefox, like your home page, saved passwords and bookmarks are all stored in a special profile folder? It’s true. Your profile folder is kept in a separate place from the Firefox program so that if something ever goes wrong with Firefox your information will still be there. It also means you can uninstall Firefox without losing your settings.

Just like Firefox, other programs such as Thunderbird, SeaMonkey and Flock also store all your personal settings in a profile folder. So if you forgot the passwords saved in Firefox, Thunderbird, SeaMonkey or Flock, you can retrieve them easily from your profiles. In this tutorial we’ll show you how to recover all types of saved passwords from Firefox / Thunderbird / SeaMonkey / Flock profiles.

How to Recover Firefox / Thunderbird / SeaMonkey / Flock Passwords?

  1. Download the setup package of Firefox Password Recovery and save it on your computer.
  2. After you’ve downloaded it, double-click on the setup file to install it.
  3. Start the Firefox Password Recovery program. Click on the “Recover From File” button. This will bring up the Mozilla Password Recovery dialog.

  4. Click on the “Browse” button to select your Firefox / Thunderbird / SeaMonkey or Flock profile. For example, the typical path of a Firefox profile is usually C:\Users\<user_name>\AppData\Roaming\Mozilla\Firefox\Profiles. While in Windows XP, it’s C:\Documents and Settings\<user_name>\Application Data\Mozilla\Firefox\Profiles. If you are still unable to locate the profile folder, just search the signons.sqlite file which resides in the profile folder of your application.

  5. Click OK. The program will decrypt and recover all your saved passwords from the selected profile.

What to Backup Before Reinstalling Windows

March 9th, 2014 by Admin

If your PC has been infected by a virus or has become slow to the point of being unusable, reinstalling Windows may be the best and quickest solution. But I always forget something like backing up product keys and email accounts. So, you are probably wondering what files you really need to backup before reinstalling Windows. Here’s a checklist of the things you should do before you make a clean install of Windows. Well, let’s take a look.

reinstall-windows

Stored Logins and Passwords

If you are using your browser to store the passwords for Web sites, you will be in for a rude awakening after reinstalling Windows – they will be gone. Your browser is a poor place to keep your website logins and passwords. Besides backing up website passwords, you might also need to export your email account settings (POP3, SMTP and passwords), and passwords stored in your FTP software, instant messengers and other applications.

If you can’t remember your passwords, you can take use of the Password Recovery Bundle program. This program can help you retrieve stored passwords from all popular instant messengers, email clients, web browsers, FTP clients and many other applications. After recovering, write down and back up them in a safe place because you need them after you reinstall Windows.

A List of Programs and License Keys

Reinstallation of Windows means that you are putting a new copy of the operating system on your hard drive, which will essentially delete all of the programs you installed. In order to restore your original settings and to know what programs you need to reinstall later, you might want to create a list of all the programs on the computer before reinstalling Windows.

Some of your core apps or drivers may be on DVD, CD, or comes as an ISO image. Pull out your media and set it in a stack ready for reinstallation later. It’s also important to keep track of valuable license keys for your Windows, Office or other programs installed on the local machine. While you can do this manually by typing the license keys up in a text document, there is a very easy way to do this, especially if you have KeyFinder Plus installed on your computer. All you need is to open KeyFinder Plus, click on the “Start Recovery” button then click “Save To File” and choose where you want to save it. From here, you can then back up all your license keys in a single file.

Emails, Address Book and Bookmarks

If you store your emails and your email address book on your PC via an email client, then you will want to back up your e-mail and address book before reinstalling Windows. This applies to you if you use a program like Outlook, Lotus, or Thunderbird. If you use a web-based email client like Gmail or Yahoo Mail, then you won’t have to worry about this. Also, if you would like to keep the bookmarks for your favorite Web sites, then you should back these up as well.

Important Documents, Video Files and Photos

Most people don’t want to lose their important photos, videos, or documents when reinstalling Windows. Before reinstalling Windows, make sure you backup all the important video and audio files as well as pictures to your storage media (DVD, USB drive or external hard drive) where they cannot be tampered with. By default, Windows will store these in sub-folders under the “My Documents” or “Documents” folder.

Conclusion

The above list is just about what you need to backup before installing Windows. However, you can also take an image of your whole hard drive using Norton Ghost so you won’t lose anything.