Showing posts with label Windows 7. Show all posts
Showing posts with label Windows 7. Show all posts

Tuesday, October 25, 2011

Create Bootable USB to install Windows 7 or 8

There are many tools available on internet that help create a bootable USB/Flash drive to install Windows 7. But if you are running Windows 7 we can use built-in tools like diskpart to create a bootable USB drive without any third party tools.

All you need for this is a Windows 7 or 2008 R2 machine, a USB Flash drive with minimum of 4 GB capacity (Note that all data on this drive will be erased), Windows DVD and privilege to run command prompt in elevated mode.

Note:This post assumes you have only one physical hard disk on your machine and no other USB disks attached

First attach a USB flash drive to your system and if auto run kicks in close all related windows.

Fire up an elevated command prompt, invoke diskpart by typing diskpart at the command prompt and key in below commands one by one

list disk
select disk 1
clean
create partition primary
list partition
select partition 1
active
format quick
assign letter=m
exit
This finishes the USB disk preparation. Now key in the below command to copy the installation files of Windows 7/8/2008/2008R2/Server 8  to the above USB disk. Replace X: in below command with path to Windows installation files on hard drive or DVD drive on your machine

xcopy X:\*.* /s/e/f M:\

When the last command finishes, a bootable USB disk with Windows installation files is ready

Monday, October 03, 2011

Launch VirtualBox VMs from Windows 7 Jumplist

VirtualBox is one of the most popular Type 2 hypervisors and natively does not support Windows 7 Jumplist. If you install and run many virtual machines on VirtualBox on your Windows 7 machine you will like VBoxLaunch which is a tiny script around 900 KB in size written by Nic Bedford to add Jumplist functionality (actually a workaround) to VirtualBox.

We just have to download the free script and unzip VBoxLaunch.exe to VirtualBox install directory usually C:\Programs Files\Oracle\VirtualBox

You may be asked to provide administrator permission to copy the exe to the folder

image

Click on continue to finish the copy

Now right click on the VBoxLaunch.exe and select Pin to Taskbar and Start Menu

vboxlauncher-2

Now Right Clicking the VBoxLaunch icon in the Taskbar will pull up the jumplist of all your VMs inside VirtualBox.

vboxlauncher-1

If you have pinned VBoxLaunch to Start Menu you can access VMs and launch from there.

vboxlauncher-3

This works on both 32 bit and 64 bit versions of Windows 7. VBoxLauncher is a very handy and must have tool for those running VirtualBox on Windows 7

Note