Saturday, July 9, 2011

Use Flash Memory (USB) as Virtual RAM in Windows 7 and Vista

Steps to convert USB memory in to virual RAM memory follow the steps below.

1. Connect USB memory to the computer (Vista or Windows 7)
2. Right click on USB drive and take properties
3. Click on tab ReadyBoost and apply


3. Click on tab ReadyBoost and apply

Note:-In Windows Vista it is limited to 4 GB while in Windows 7 it is upto 256 GB of additional memory by connecting maximum 8 different USB memories. Windows OS older than Vista don't support ReadyBoost technology. Currently Windows Server 2008 is also not supporting ReadyBoost technology.

Saturday, May 21, 2011

Recovery Console.........?

The Recovery Console is a command line based, advanced diagnostic feature available in some versions of the Windows operating system.
 
What is the Recovery Console Used For?:
The Recovery Console is used to help resolve a number of major system problems.
The Recovery Console is particularly useful for repairing or replacing important operating system files. When these files aren't working like they should, Windows will sometimes not startup at all. In these cases, you must start the Recovery Console to restore the files.

How is the Recovery Console Accessed?:
 
The Recovery Console is usually accessed from the original Windows installation CD. Alternatively, Recovery Console can be accessed from the boot menu but only if it has been preinstalled on your system.
Recovery Console Availability:
The Recovery Console feature is available in Windows XP, Windows 2000, and Windows Server 2003.
Recovery Console is not available in Windows 7 or Windows Vista. Windows Server 2003 and Windows XP were the last Microsoft operating systems that contained Recovery Console.

Thursday, April 7, 2011

What Is a MAC Address?

The MAC address is a unique value associated with a network adapter. MAC addresses are also known as hardware addresses or physical addresses. They uniquely identify an adapter on a LAN.
MAC addresses are 12-digit hexadecimal numbers (48 bits in length). By convention, MAC addresses are usually written in one of the following two formats:
MM:MM:MM:SS:SS:SS

 
MM-MM-MM-SS-SS-SS
The first half of a MAC address contains the ID number of the adapter manufacturer. These IDs are regulated by an Internet standards body (see sidebar). The second half of a MAC address represents the serial number assigned to the adapter by the manufacturer. In the example,
00:A0:C9:14:C8:29
The prefix
00A0C9
indicates the manufacturer is Intel Corporation.

 

 
MAC vs. IP Addressing
Whereas MAC addressing works at the data link layer, IP addressing functions at the network layer   (layer 3). It's a slight oversimplification, but one can think of IP addressing as supporting the software implementation and MAC addresses as supporting the hardware implementation of the network stack. The MAC address generally remains fixed and follows the network device, but the IP address changes as the network device moves from one network to another.
IP networks maintain a mapping between the IP address of a device and its MAC address. This mapping is known as the ARP cache or ARP table.
Find MAC Address of your Computer
  1. Click on the Start Menu.
  2. Click on 'Run & Type 'cmd' without quotes and press Enter.
  3. At the command prompt, type 'ipconfig /all' without quotes. (space between g and /)

Thursday, March 31, 2011

How to turn on automatic logon in Windows

turn on automatic logon, follow these steps:
  1. Click Start, and then click Run.
  2. In the Open box, type Regedt32.exe, and then press ENTER.
  3. Locate the following subkey in the registry:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon
  4. Double-click the DefaultUserName entry, type your user name, and then click OK.
  5. Double-click the DefaultPassword entry, type your password, and then click OK.NOTE: If the DefaultPassword value does not exist, it must be added. To add the value, follow these steps:

    1. On the Edit menu, click New, and then point to String Value.
    2. Type DefaultPassword, and then press ENTER.
    3. Double-click DefaultPassword.
    4. In the Edit String dialog, type your password and then click OK.
    NOTE: If no DefaultPassword string is specified, Windows automatically changes the value of the AutoAdminLogon key from 1 (true) to 0 (false), disabling the AutoAdminLogon feature

Thursday, February 3, 2011

Windows Registry Tutorial

Overview
The Registry is a database used to store settings and options for the 32 bit versions of Microsoft Windows including Windows 95, 98, ME and NT/2000. It contains information and settings for all the hardware, software, users, and preferences of the PC. Whenever a user makes changes to a Control Panel settings, or File Associations, System Policies, or installed software, the changes are reflected and stored in the Registry.
The physical files that make up the registry are stored differently depending on your version of Windows; under Windows 95 & 98 it is contained in two hidden files in your Windows directory, called USER.DAT and SYSTEM.DAT, for Windows Me there is an additional CLASSES.DAT file, while under Windows NT/2000 the files are contained seperately in the %SystemRoot%\System32\Config directory. You can not edit these files directly, you must use a tool commonly known as a "Registry Editor" to make any changes (using registry editors will be discussed later in the article).
The Structure of the Registry
The Registry has a hierarchal structure, although it looks complicated the structure is similar to the directory structure on your hard disk, with Regedit being similar to Windows Explorer.
Each main branch (denoted by a folder icon in the Registry Editor, see left) is called a Hive, and Hives contains Keys. Each key can contain other keys (sometimes referred to as sub-keys), as well as Values. The values contain the actual information stored in the Registry. There are three types of values; String, Binary, and DWORD - the use of these depends upon the context.










There are six main branches, each containing a specific portion of the information stored in the Registry. They are as follows:
  • HKEY_CLASSES_ROOT - This branch contains all of your file association mappings to support the drag-and-drop feature, OLE information, Windows shortcuts, and core aspects of the Windows user interface.
  • HKEY_CURRENT_USER - This branch links to the section of HKEY_USERS appropriate for the user currently logged onto the PC and contains information such as logon names, desktop settings, and Start menu settings.
  • HKEY_LOCAL_MACHINE - This branch contains computer specific information about the type of hardware, software, and other preferences on a given PC, this information is used for all users who log onto this computer.
  • HKEY_USERS - This branch contains individual preferences for each user of the computer, each user is represented by a SID sub-key located under the main branch.
  • HKEY_CURRENT_CONFIG - This branch links to the section of HKEY_LOCAL_MACHINE appropriate for the current hardware configuration.
  • HKEY_DYN_DATA - This branch points to the part of HKEY_LOCAL_MACHINE, for use with the Plug-&-Play features of Windows, this section is dymanic and will change as devices are added and removed from the system.
Each registry value is stored as one of five main data types:
  • REG_BINARY - This type stores the value as raw binary data. Most hardware component information is stored as binary data, and can be displayed in an editor in hexadecimal format.
  • REG_DWORD - This type represents the data by a four byte number and is commonly used for boolean values, such as "0" is disabled and "1" is enabled. Additionally many parameters for device driver and services are this type, and can be displayed in REGEDT32 in binary, hexadecimal and decimal format, or in REGEDIT in hexadecimal and decimal format.
  • REG_EXPAND_SZ - This type is an expandable data string that is string containing a variable to be replaced when called by an application. For example, for the following value, the string "%SystemRoot%" will replaced by the actual location of the directory containing the Windows NT system files. (This type is only available using an advanced registry editor such as REGEDT32)
  • REG_MULTI_SZ - This type is a multiple string used to represent values that contain lists or multiple values, each entry is separated by a NULL character. (This type is only available using an advanced registry editor such as REGEDT32)
  • REG_SZ - This type is a standard string, used to represent human readable text values.
Other data types not available through the standard registry editors include:
  • REG_DWORD_LITTLE_ENDIAN - A 32-bit number in little-endian format.
  • REG_DWORD_BIG_ENDIAN - A 32-bit number in big-endian format.
  • REG_LINK - A Unicode symbolic link. Used internally; applications should not use this type.
  • REG_NONE - No defined value type.
  • REG_QWORD - A 64-bit number.
  • REG_QWORD_LITTLE_ENDIAN - A 64-bit number in little-endian format.
  • REG_RESOURCE_LIST - A device-driver resource list.
Editing the Registry
The Registry Editor (REGEDIT.EXE) is included with most version of Windows (although you won't find it on the Start Menu) it enables you to view, search and edit the data within the Registry. There are several methods for starting the Registry Editor, the simplest is to click on the Start button, then select Run, and in the Open box type "regedit", and if the Registry Editor is installed it should now open and look like the image below.

Monday, January 31, 2011

dual-boot Vista with XP

How to dual-boot Vista with XP (with XP installed first) - step-by-step

Step-1First install Xp,then during windows Vista/win 7 installation, press "Shift+F10" Key.
            cmd prompt will be open

step2  Then type in DISKPART and press enter to get into the DISKPART utility.



Step 3 Now type in LIST VOLUME


Step 4  Now type SELECT VOLUME 0 (main Windows XP volume).

Step5 Now type in SHRINK.it will reduce the size the selected Volume by around 50%.

Step 6 Now Install Vista.

            





Thursday, January 27, 2011

Change Installation Directory from Registry

To change the default installation path, just follow below steps:
 
1. Navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion.
2. At the right panel, look for ProgramFilesDir.

3. Double click on it to change the value to your desired path. For example, change the value from C:\Program Files to D:\Softwares.

Virtualization

What is Virtualization? Virtualization is the process of creating a software-based (or virtual) representation of something rather than a...