BCDEDIT - How to Use

How to Use the BCDEDIT Command Line Tool

   Information
This will show you how to use BCDEDIT in the command prompt and avoid the need of third party applications like EasyBCD.
   Note
Bcdedit is a really powerful tool that Windows Vista and Windows 7 uses to manage the boot loader entries.

BCDEDIT needs a boot manager to boot your system.



A boot manager is a file that contains necessary information that instruct the system how to boot/start an operating system.
  • Windows 7 and Vista boot manager file is \bootmgr
  • Windows XP boot manager file is \ntldr
BCDEDIT can support other boot managers too, like grub for linux. You just have to place the boot file on the root of the boot manager partition. e.g. \grldr and you have a grub boot loader enabled.

Bcdedit edits a file called bcd , which is located in Windows 7's hidden partition under \boot\bcd.
In Vista, its located under C:\boot\bcd.


   Warning
You must be logged on in an administrator account to be able to do this tutorial.





To Use bcdedit:
1. Open an elevated command prompt.

2. Type bcdedit and press enter.
NOTE: By typing just bcdedit you just list your boot entries.


A boot entry consists of 4 main elements:
1. Identifier
The identifier is how the system has named the boot entry.
2. Device
The device is the drive or virtual image that the system will use to boot the boot entry.
3. Path
The path is the location on the device where the bootloader file is found.
4. Description
The description is the friendly name we give to our boot entry, e.g. "Windows 7"
You see next to the identifiers their UUIDs in {}. The UUID is the unique codename that the system gives to each boot entry and cannot be changed.

The standard identifier UUIDs are explained below:
{bootmgr} = the boot manager
{current} = the OS you selected to boot at startup.
{default} = the default OS selected to boot the PC.
{ntldr} = Windows Legacy OS Loader (for windows xp)
there are others like {memdiag} or {ramdisk} but they can't be of much use right now.
   Warning
IMPORTANT: make a backup of your bcd file first. To do that, type:

bcdedit /export C:\SAVEDBCD

This will create a file c:\savebcd which is your boot entry backup.
If you mess up, you can always undo changes by:

bcdedit /import c:\savedbcd



Now to see how we can control the above entries, here are some examples:
bcdedit /set {current} description "My edited Windows Boot Entry"
NOTE: This changes the title of the boot menu entry "{current}".

bcdedit /set {ntldr} device partition=E:
NOTE: This tells bcd that Windows XP partition is drive E:

bcdedit /set {ntldr} path \ntldr
NOTE: This tells bcd that the ntldr file which is the winxp bootloader is on root folder "\" (of drive e: as stated above)

bcdedit /displayorder {ntldr} /addfirst
NOTE: This places Windows XP as the first OS on the menu list.

bcdedit /default {ntldr}
NOTE: This places Windows XP as the default OS to boot first with.

bcdedit /displayorder {33342343-3424-2342342342-2344} /addlast
NOTE: This tells bcd that the boot entry with UUID 3334... should be the last entry on the menu.
You can copy your existing VISTA or W7 boot entry to another identical. Then you can change settings on the new entry to experiment. You will always have the first entry available, so it's safe to play with.
bcdedit /copy {current} /d "New W7 boot entry I just copied!"
this will give you a line:
NOTE: The entry was successfully copied to {4c21825f-e04b-11dd-b760-00195b61617a}. The {4c21825f-e04b-11dd-b760-00195b61617a} is the UUID of the new entry that the system just created. Yours will be different than mine! This is its identifier and you should use this to address that entry. Example:

bcdedit /set {4c21825f-e04b-11dd-b760-00195b61617a} numpoc 2
NOTE: This adds the 2 CPU Core support during boot, like you do in msconfig.

bcdedit /deletevalue {4c21825f-e04b-11dd-b760-00195b61617a} numproc
NOTE: This deletes the numproc parameter from entry {4c21825f....}

bcdedit /delete {4c21825f-e04b-11dd-b760-00195b61617a}
NOTE: This deletes the boot entry {4c21825f....} completely. In order to delete an {ntldr} entry, you must use the /f switch to force deletion: bcdedit /delete {ntldr} /f

You can always type just bcdedit to see your current settings.

What else can I do with BCDEDIT?

You can use BCDEDIT to alter any boot parameter , like you would in msconfig, only more. BCDEDIT works from booting with installation dvd too, so it can be handy for recovery purposes.
bcdedit /timeout 5
NOTE: This sets the wait-to-select-OS menu timeout at startup to 5 seconds . You will notice that I didn't give a UUID above. If you omit the UUID, it applies automatically to the relavant UUID. So: bcdedit /timeout 5 is identical to bcdedit /set {bootmgr} timeout 5
Some more advanced examples:
bcdedit /set {current} detecthal yes
bcdedit /set {current} detecthal no
NOTE: The above commands sets the detecthal to yes or no for entry {current}
To create a new boot entry to load Windows XP from a partition on your disk:
NOTE: The example below uses F: as the Windows XP partition. Replace with your xp drive letter.
bcdedit /create {ntldr} /d "Windows XP"

bcdedit /set {ntldr} device partition=F:

bcdedit /set {ntldr} path \ntldr

bcdedit /displayorder {ntldr} /addlast
   Note
Final note: BCDEDIT works from installation boot dvd too. If you mess up with a setting and you cannot boot, just boot from DVD and enter Repair Computer, then go to command prompt and there you go. You can play again with bcdedit to restore your system back.



 
Last edited by a moderator:
You're welcome, glad it worked for you.:D
 

My Computers

System One System Two

  • Computer type
    PC/Desktop
    OS
    7 X64
    CPU
    i5 8400
    Motherboard
    gigabyte b365m ds3h
    Memory
    2x8gb 3200mhz
    Hard Drives
    various
    PSU
    pure power 11 400w cm
    Case
    Coolermaster
    Cooling
    cryorig m9i
  • Computer type
    PC/Desktop
    OS
    7x64
    CPU
    g5400
    Motherboard
    ga b365m ds3h
    Memory
    8gb ddr4 2400
    PSU
    xfx pro 450w
If only I could load BCDEdit....

I've got a win7 ultimate 64-bit install. It resides on a 2-disk striped array and boots fine. I recently added Fedora 12 to a 3rd hard drive. The Fedora installer added grub to the system so I can dual boot with it and it works fine. I can get to either OS at boot time. Grub passes the boot to the regular windows 7 stuff via a "chainload" command when it is selected (this is what I understand anyway) so the standard Win7 boot stuff should be fully functional.

Now, for the first time, I wanted to tweak some Win7 startup stuff and began the odyssey of getting acquainted with BCDEdit.exe.

The problem I have is when I open an elevated command window and type bcdedit to examine the current setup I always get the message "The boot configuration data store could not be opened. The system cannot find the file specified." and am back at the command line.

I also tried installing DualBootPro to see if an alternate method of boot editing would work and it fails too with its version of the same error. I suspect I am doing something really stupid here but just cannot figure it out. Does anyone have any pointers?
 

My Computer

Computer Manufacturer/Model Number
Home made
OS
Windows 7 Ultimate 64-bit
CPU
i7
Motherboard
ASUS Rampage II Extreme
Memory
6GB
Graphics Card(s)
GeForce GTX295
I don't have grub straddling the disk code, but this should work:

1. go to folder options and show hidden files and folders.

2. Find the pale yellow Boot folder on the System partition.

3. Open an elevated at the Boot folder. Type:

bcdedit /store bcd /enum

to see the boot menu entries.

Then use the same /store bcd parameter in all the bcdedit commands.

( Or use bcdedit /store <the path to bcd> at an elevated cmd), e.g.

bcdedit /store c:\boot\bcd [then whatever commands]
 

My Computers

System One System Two

  • Computer type
    PC/Desktop
    OS
    7 X64
    CPU
    i5 8400
    Motherboard
    gigabyte b365m ds3h
    Memory
    2x8gb 3200mhz
    Hard Drives
    various
    PSU
    pure power 11 400w cm
    Case
    Coolermaster
    Cooling
    cryorig m9i
  • Computer type
    PC/Desktop
    OS
    7x64
    CPU
    g5400
    Motherboard
    ga b365m ds3h
    Memory
    8gb ddr4 2400
    PSU
    xfx pro 450w
SIW2, thanks a ton for giving this a try. Here's what happened.

Switched the folder options as you indicated.
Found \boot at the root level of my boot drive (C:)
opened an elevated command window and did a cd to \boot
typed the command you indicated
got "There are no matching objects or the store is empty."

when I do a DIR on \boot I see the BCD file and it even shows a modification date as of the moment I tried the command.

Got anything else?
 

My Computer

Computer Manufacturer/Model Number
Home made
OS
Windows 7 Ultimate 64-bit
CPU
i7
Motherboard
ASUS Rampage II Extreme
Memory
6GB
Graphics Card(s)
GeForce GTX295
The correct bcd store will be in the hidden Boot folder on the "system" partition - not necessarily the same as the "boot" partition.

If you have one of those 100mb things - it should be in there.

Rt click the 100mb in Disk Management and give it letter S.

See if that helps. It's got to somewhere.
 

My Computers

System One System Two

  • Computer type
    PC/Desktop
    OS
    7 X64
    CPU
    i5 8400
    Motherboard
    gigabyte b365m ds3h
    Memory
    2x8gb 3200mhz
    Hard Drives
    various
    PSU
    pure power 11 400w cm
    Case
    Coolermaster
    Cooling
    cryorig m9i
  • Computer type
    PC/Desktop
    OS
    7x64
    CPU
    g5400
    Motherboard
    ga b365m ds3h
    Memory
    8gb ddr4 2400
    PSU
    xfx pro 450w
You got it!

You had the answer for me. I did have one of those "100 MG" things on my 3rd hard drive (not in the array). I assigned it a drive letter and switched display options to show hidden files, etc and sure enough, there it was.

Thanks SIW2!
 

My Computer

Computer Manufacturer/Model Number
Home made
OS
Windows 7 Ultimate 64-bit
CPU
i7
Motherboard
ASUS Rampage II Extreme
Memory
6GB
Graphics Card(s)
GeForce GTX295
You're welcome - glad you found it.:D
 

My Computers

System One System Two

  • Computer type
    PC/Desktop
    OS
    7 X64
    CPU
    i5 8400
    Motherboard
    gigabyte b365m ds3h
    Memory
    2x8gb 3200mhz
    Hard Drives
    various
    PSU
    pure power 11 400w cm
    Case
    Coolermaster
    Cooling
    cryorig m9i
  • Computer type
    PC/Desktop
    OS
    7x64
    CPU
    g5400
    Motherboard
    ga b365m ds3h
    Memory
    8gb ddr4 2400
    PSU
    xfx pro 450w
from dual boot vs single boot

hi,
my problem is this: i installed w7 in f: from my drive with xp in c:. i would like to use only the drive with w7 without using c:, it makes a lot of noise. but it is not possible because the initial boot is on c:. i tried already the bcdboot f:\windows /s f: string but it didn't work. to work with bcdedit i do'nt feel to find out myself, so i'm asking you a hint what exactly i have to write. i hope i explained clearly , i want to boot only from my windows 7 drive without the use of the original xp drive with the boot file.
thanks
dj
 

My Computer

OS
windows 7
What do you mean bcdboot didn't work?

Did it say it completed successfully?

Did you mark the windows 7 partition Active, then set the Windows 7 HD first in the bios boot order?
 

My Computers

System One System Two

  • Computer type
    PC/Desktop
    OS
    7 X64
    CPU
    i5 8400
    Motherboard
    gigabyte b365m ds3h
    Memory
    2x8gb 3200mhz
    Hard Drives
    various
    PSU
    pure power 11 400w cm
    Case
    Coolermaster
    Cooling
    cryorig m9i
  • Computer type
    PC/Desktop
    OS
    7x64
    CPU
    g5400
    Motherboard
    ga b365m ds3h
    Memory
    8gb ddr4 2400
    PSU
    xfx pro 450w
hi siw2,
bcdboot gives me: error during the copy of the files. i translated it so i don't know what windows gives in english. w7 is the first in the boot order and is on an active partition. but xp onthe c: drive is the system partition.
 

My Computer

OS
windows 7
Bios is finding the XP drive as the first bootable device.

Try marking XP partition Inactive , then run startup repair 3 times from the 7 dvd.
 

My Computers

System One System Two

  • Computer type
    PC/Desktop
    OS
    7 X64
    CPU
    i5 8400
    Motherboard
    gigabyte b365m ds3h
    Memory
    2x8gb 3200mhz
    Hard Drives
    various
    PSU
    pure power 11 400w cm
    Case
    Coolermaster
    Cooling
    cryorig m9i
  • Computer type
    PC/Desktop
    OS
    7x64
    CPU
    g5400
    Motherboard
    ga b365m ds3h
    Memory
    8gb ddr4 2400
    PSU
    xfx pro 450w
my computer is old and don't read the dvd. that's why i did install from xp or better i trasferred the files from the dvd to f: and installed from there.
 

My Computer

OS
windows 7
Win7 BCD: Unable to modify via CP or using EasyBDC

I'm new to Windows 7.


I'm currently running a dual boot system, Win7 & WinXp. I have WinXp on an 80gb IDE drive, disk 0, partition 0, and Win7 on a 500gb SATA II drive, disk 2, partition 0. I have my BIOS pointed to start from disk 2, at which point Win7 boot manager comes up and offers me 3 choices:


1. Windows 7
2. Windows NT/2000/XP/2003
3. Windows NT/2000/XP/2003


I can boot into the Windows 7, the current/default OS with no problems. However, in selecting either of the legacy OS's I receive the following error message “Windows could not start because the following file is missing or corrupt: <windows root>\system32\ ntoskrnl.exe. Please re-install a copy of the above file.


The initial install is a Windows 7 Ultimate over a cloned disk 0, 80gb HHD of WindowsXp using Norton Ghost 15.0. I can boot into either system as long as I set in the BIOS the respective drive as primary of the OS I want to load up. As a side note, when booting into WindowsXP on disk 0, an error message comes up: “invalid boot.ini, loading from c:\windows,” of which I later discovered was from Win7 boot manager modifying this file and renaming it Boot.BAK. Also, in booting up XP I go through a different Win7 boot manager offering of :


1. Early Version of Windows
2. Windows 7
3. Windows 7
4. Windows NT/2000/XP/2003
5. Windows NT/2000/XP/2003


As before, I can log into WinXP selecting 1, 4 & 5 but not without the boot.ini coming up 1st. Selecting either 2 or 3 causes my computer to reboot.


I've read and re-read thru this post “How to Use The BCDedit Command. I've right clicked and “Run As Administrator” and have also downloaded the “Elevated Command Prompt.” Below is a before and after snapshots of running BCDedit and indicating it was successful. However, and the reason for this post, is that it wasn't successful in that running BCDedit after the changes indicates no edits took affect, even after re-booting my system.


I've trying running EasyBCD 1.7.2 under WindowsXP but everything is grayed out or not able to selected anything. It opens and I can view boot loader but I can't modify anything, just exit. And under Win7 after installing EasyBCD 2.0 beta-build 82 via administrator run, I get the following error message: “the application was unable to start correctly (0xc000007b).






Microsoft Windows [Version 6.1.7600]
Copyright (c) 2009 Microsoft Corporation. All rights reserved.


C:\Windows\system32>cd \


C:\>bcdedit


BEFORE ANY MODIFCATIONS AND BCD SAVED TO ROOT:


Windows Boot Manager
--------------------
identifier {bootmgr}
device partition=C:
description Windows Boot Manager
locale en-US
inherit {globalsettings}
default {current}
resumeobject {7a485d48-1f65-11df-a265-d275c33857a2}
displayorder {current}
{b3b4e4b0-0086-11de-a9bc-0013d3383b28}
{f5731a48-016a-11de-8352-0013d3383b28}
toolsdisplayorder {memdiag}
timeout 30


Windows Boot Loader
-------------------
identifier {current}
device partition=C:
path \Windows\system32\winload.exe
description Windows 7
locale en-US
inherit {bootloadersettings}
osdevice partition=C:
systemroot \Windows
resumeobject {7a485d48-1f65-11df-a265-d275c33857a2}
nx OptIn


Windows Legacy OS Loader
------------------------
identifier {b3b4e4b0-0086-11de-a9bc-0013d3383b28}
device partition=C:
path \ntldr
description Windows NT/2000/XP/2003
bootdebug No


Windows Legacy OS Loader
------------------------
identifier {f5731a48-016a-11de-8352-0013d3383b28}
device partition=C:
path \ntldr
description Windows NT/2000/XP/2003
bootdebug No


C:\>bcdedit /set {ntldr} device partition=D:
The operation completed successfully.


C:\>bcdedit /set {ntldr} path \ntldr
The operation completed successfully.


C:\>bcdedit


AFTER ABOVE MODIFCATIONS:


Windows Boot Manager
--------------------
identifier {bootmgr}
device partition=C:
description Windows Boot Manager
locale en-US
inherit {globalsettings}
default {current}
resumeobject {7a485d48-1f65-11df-a265-d275c33857a2}
displayorder {current}
{b3b4e4b0-0086-11de-a9bc-0013d3383b28}
{f5731a48-016a-11de-8352-0013d3383b28}
toolsdisplayorder {memdiag}
timeout 30


Windows Boot Loader
-------------------
identifier {current}
device partition=C:
path \Windows\system32\winload.exe
description Windows 7
locale en-US
inherit {bootloadersettings}
osdevice partition=C:
systemroot \Windows
resumeobject {7a485d48-1f65-11df-a265-d275c33857a2}
nx OptIn


Windows Legacy OS Loader
------------------------
identifier {b3b4e4b0-0086-11de-a9bc-0013d3383b28}
device partition=C:
path \ntldr
description Windows NT/2000/XP/2003
bootdebug No


Windows Legacy OS Loader
------------------------
identifier {f5731a48-016a-11de-8352-0013d3383b28}
device partition=C:
path \ntldr
description Windows NT/2000/XP/2003
bootdebug No


C:\>


Thank you in advance for your assistance.
 

My Computer

Computer Manufacturer/Model Number
K8N Neo4 Platinum (MS 7125 Rev 1.0) N1996
OS
Win7/XP
CPU
AMD Athlon™ 64 X2 Dual Core 3800+
Motherboard
MSI
Memory
2gb
Graphics Card(s)
NVIDIA 7300GS
Sound Card
PCI C-MEDIA CMI8738LX
Monitor(s) Displays
SAMSUNG SyncMaster2253lw
Hard Drives
WD 500gb SATA II
Maxor 80gb IDE
Case
Antec

My Computers

System One System Two

  • Computer type
    PC/Desktop
    OS
    7 X64
    CPU
    i5 8400
    Motherboard
    gigabyte b365m ds3h
    Memory
    2x8gb 3200mhz
    Hard Drives
    various
    PSU
    pure power 11 400w cm
    Case
    Coolermaster
    Cooling
    cryorig m9i
  • Computer type
    PC/Desktop
    OS
    7x64
    CPU
    g5400
    Motherboard
    ga b365m ds3h
    Memory
    8gb ddr4 2400
    PSU
    xfx pro 450w
Resolved: Win7 BCD:Unable to modify via CP or w/ E-BDC

After downloading the 2.0 beta of EasyBD I also came across another post about Zonealarm (I'm using the Home edition) interfering with EBD. I uninstalled Zonealarm and installed EDB 2.0 beta, started it without any error messages this time, and modified my BCD without any problems.
 

My Computer

Computer Manufacturer/Model Number
K8N Neo4 Platinum (MS 7125 Rev 1.0) N1996
OS
Win7/XP
CPU
AMD Athlon™ 64 X2 Dual Core 3800+
Motherboard
MSI
Memory
2gb
Graphics Card(s)
NVIDIA 7300GS
Sound Card
PCI C-MEDIA CMI8738LX
Monitor(s) Displays
SAMSUNG SyncMaster2253lw
Hard Drives
WD 500gb SATA II
Maxor 80gb IDE
Case
Antec
I've never understood the following near the start of your tutorial:

"Bcdedit edits a file called bcd , which is located in Windows 7's hidden partition under \boot\bcd."

And why don't I understand? because my C:\ drive shows a \boot folder.

True that \boot\bcd has the attributes of ash.

But the file is there. Now I haven't worried with investigating the recovery partition for a bcd file.
 

My Computer

Computer Manufacturer/Model Number
Toshiba Satellite S875D-S7239 laptop
OS
MS Windows 7 Ultimate SP1 64-bit
CPU
AMD A10-4600M
Motherboard
AMD Pumori (Socket FT1)
Memory
6.00 GB Dual-Channel DDR3 @ 798MHz (11-11-12-28)
Graphics Card(s)
AMD Radeon HD 7660G
Sound Card
High Definition Audio Device
Monitor(s) Displays
Generic PnP Monitor (1600x900@60Hz)
Screen Resolution
1600x900@60Hz
Hard Drives
SSD 119GB Corsair CSSD-V128GB2 ATA Device
Keyboard
Standard PS/2 Keyboard
Mouse
HP Wireless Optical Mobile Mouse Model FHA-3410
Internet Speed
What the local pub, local coffee shop offers.
Other Info
Optical Drive:MATSHITA BD-CMB UJ160B ATA Device


Also have an Asus ha1002xp netbook with Win 7 Ultimate installed.
Next question:

What is the difference between a GUID and a UUID?

I know that by any other name a rose smells as sweet but I'm just curious.
 

My Computer

Computer Manufacturer/Model Number
Toshiba Satellite S875D-S7239 laptop
OS
MS Windows 7 Ultimate SP1 64-bit
CPU
AMD A10-4600M
Motherboard
AMD Pumori (Socket FT1)
Memory
6.00 GB Dual-Channel DDR3 @ 798MHz (11-11-12-28)
Graphics Card(s)
AMD Radeon HD 7660G
Sound Card
High Definition Audio Device
Monitor(s) Displays
Generic PnP Monitor (1600x900@60Hz)
Screen Resolution
1600x900@60Hz
Hard Drives
SSD 119GB Corsair CSSD-V128GB2 ATA Device
Keyboard
Standard PS/2 Keyboard
Mouse
HP Wireless Optical Mobile Mouse Model FHA-3410
Internet Speed
What the local pub, local coffee shop offers.
Other Info
Optical Drive:MATSHITA BD-CMB UJ160B ATA Device


Also have an Asus ha1002xp netbook with Win 7 Ultimate installed.

My Computer

Computer type
PC/Desktop
Computer Manufacturer/Model Number
Dwarf Dwf/11/2012 r09/2013
OS
Windows 8.1 Pro RTM x64
CPU
Intel Core-i5-3570K 4-core @ 3.4GHz (Ivy Bridge) (OC 4.4GHz)
Motherboard
ASRock Z77 Extreme4-M
Memory
4 x 4GB DDR3-1600 Corsair Vengeance CMZ8GX3M2A1600C9B (16GB)
Graphics Card(s)
MSI GeForce GTX770 Gaming OC 2GB
Sound Card
Realtek High Definition on board solution (ALC 898)
Monitor(s) Displays
ViewSonic VA1912w Widescreen (VGA)
Screen Resolution
1440x900
Hard Drives
OCZ Agility 3 SSD 120GB SATA III x2 (RAID 0)
Samsung HD501LJ 500GB SATA II x2
Hitachi HDS721010CLA332 1TB SATA II
Iomega 1.5TB Ext USB 2.0
WD 2.0TB Ext USB 3.0
PSU
XFX Pro Series 850W Semi-Modular
Case
Gigabyte IF233
Cooling
1 x 120mm Front Inlet 1 x 120mm Rear Exhaust
Keyboard
Microsoft Comfort Curve Keyboard 3000 (USB)
Mouse
Microsoft Comfort Mouse 3000 for Business (USB)
Internet Speed
NetGear DG834Gv3 ADSL Modem/Router (Ethernet) ~4.0 Mb/s (O2)
Antivirus
Avast! 8.0.1497
Browser
IE 11
Other Info
Optical Drive: HL-DT-ST BD-RE BH10LS30 SATA Bluray
Lexmark S305 Printer/Scanner/Copier (USB)
WEI Score: 8.1/8.1/8.5/8.5/8.25
Asus Eee PC 1011PX Netbook (Windows 7 x86 Starter)
Dwarf,
Perhaps I should have worded my question differently.
The documentation that I have, downloaded from MS, uses GUID rather then UUID. My question of the author of the tutorial is why he has chosen to use UUID as opposed to GUID. Sometimes MS changes the currently blessed terminology.
 

My Computer

Computer Manufacturer/Model Number
Toshiba Satellite S875D-S7239 laptop
OS
MS Windows 7 Ultimate SP1 64-bit
CPU
AMD A10-4600M
Motherboard
AMD Pumori (Socket FT1)
Memory
6.00 GB Dual-Channel DDR3 @ 798MHz (11-11-12-28)
Graphics Card(s)
AMD Radeon HD 7660G
Sound Card
High Definition Audio Device
Monitor(s) Displays
Generic PnP Monitor (1600x900@60Hz)
Screen Resolution
1600x900@60Hz
Hard Drives
SSD 119GB Corsair CSSD-V128GB2 ATA Device
Keyboard
Standard PS/2 Keyboard
Mouse
HP Wireless Optical Mobile Mouse Model FHA-3410
Internet Speed
What the local pub, local coffee shop offers.
Other Info
Optical Drive:MATSHITA BD-CMB UJ160B ATA Device


Also have an Asus ha1002xp netbook with Win 7 Ultimate installed.
As explained in the first link, GUID is Microsoft's implementation of the UUID standard.
 

My Computer

Computer type
PC/Desktop
Computer Manufacturer/Model Number
Dwarf Dwf/11/2012 r09/2013
OS
Windows 8.1 Pro RTM x64
CPU
Intel Core-i5-3570K 4-core @ 3.4GHz (Ivy Bridge) (OC 4.4GHz)
Motherboard
ASRock Z77 Extreme4-M
Memory
4 x 4GB DDR3-1600 Corsair Vengeance CMZ8GX3M2A1600C9B (16GB)
Graphics Card(s)
MSI GeForce GTX770 Gaming OC 2GB
Sound Card
Realtek High Definition on board solution (ALC 898)
Monitor(s) Displays
ViewSonic VA1912w Widescreen (VGA)
Screen Resolution
1440x900
Hard Drives
OCZ Agility 3 SSD 120GB SATA III x2 (RAID 0)
Samsung HD501LJ 500GB SATA II x2
Hitachi HDS721010CLA332 1TB SATA II
Iomega 1.5TB Ext USB 2.0
WD 2.0TB Ext USB 3.0
PSU
XFX Pro Series 850W Semi-Modular
Case
Gigabyte IF233
Cooling
1 x 120mm Front Inlet 1 x 120mm Rear Exhaust
Keyboard
Microsoft Comfort Curve Keyboard 3000 (USB)
Mouse
Microsoft Comfort Mouse 3000 for Business (USB)
Internet Speed
NetGear DG834Gv3 ADSL Modem/Router (Ethernet) ~4.0 Mb/s (O2)
Antivirus
Avast! 8.0.1497
Browser
IE 11
Other Info
Optical Drive: HL-DT-ST BD-RE BH10LS30 SATA Bluray
Lexmark S305 Printer/Scanner/Copier (USB)
WEI Score: 8.1/8.1/8.5/8.5/8.25
Asus Eee PC 1011PX Netbook (Windows 7 x86 Starter)
Back
Top