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

Tuesday, April 21, 2015

Application icons and extension changed to .LNK


 Application icons and extension changed to .LNK


1.            Click run command then type regedit and press ENTER.
2.            Navigate to the following registry branch: 

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\[ext]

Replace the [ext] with the actual file extension that you want to restore its file type association to revert back to original Windows 7 default (probably .lnk).

If you unsure, simply browse through all the sub-key under File Extensions.

3.            Delete the sub-key named UserChoice.
4.            Exit from Registry Editor.
5.            Restart the system

Sunday, August 5, 2012

CLIENT OS INSTALLATION OF WINDOWS 7 IN VMWARE SERVER


INSTALLING WINDOWS 7 IN VMWARE SERVER

To create a new VM in the VMware server console. You do this by logging in to the VMware Server Web Interface and creating a new VM by clicking the "Create Virtual Machine" link in the "Commands" action pane:


Give your new Virtual Machine a name, select your data store and click "next".


I downloaded the 64bit ISO of Windows 7 so I selected the 64bit version.

  
Windows 7 will install fine with 512MB, and it's even pretty usable after installation.


Create a new virtual disk and determine how much disk space you want to allocate to the Windows 7 installation. I created a 16GB partition
.


On the next screen, add a Network Adapter and then select "Network Connection: Bridge" in the Network Properties Page.


Next you will need the previously downloaded Windows 7 ISO file. In the CD/DVD drive dialogue box click on "Use an ISO Image" and browse to the ISO file and mount it as a CD-ROM. Unless you have set up a predefined data store for ISO files, you will need to copy the ISO into the location of your Virtual Machines (eg. your default data store) before you can browse to it.
 


Don't add a Floppy Drive, you don't need one.


I didn't add a USB Controller in my particular setup, but you can easily include one if you want to be able to connect to USB resources on your host machine, inside the guest. If you decide you don't need one now, don't worry. You can always add one later if you wish.


Review your settings and click on finish.

That's the finale of the Virtual Machine setup wizard. Now power on your newly created VM and go to the "console" tab on the top. You should be greeted with the Windows 7 Installer.

Go through the installer as you normally would on a physical machine, including accepting the EULA. Luckily the Windows 7 installed doesn't ask that many questions during install so it won't take that long. On my test computer the installation took about 30 minutes, but the actual time it takes depends on the hardware you run VMware Server on.





Now that the installation has finished you are almost ready to start using your virtual Windows 7 instance. I would advise that you install VMware Tools immediately though.

VMware Tools is a set of essential tools and drivers that will make your virtual experience much better, and in particular it will enable network connectivity in your Windows 7 install.

                          A couple of other great side-effects of installing the tools are that you will get much improved video performance, copy and paste between your host and guest as well as mouse synchronization.

                       Installation is very easy, all you have to do is to navigate to VMware Server Console again, find your Windows 7 installation and click on the "Install VMware Tools" option. This will mount a virtual CD-Rom inside your Windows 7 installation and start the autorun procedure.


                           Switch to your Windows 7 console again and you should be able to start the setup procedure.  Accept the default installation options, and after a quick reboot your should be ready to go.

                              Your virtualized Windows 7 install is now finished, and you should be able to use it as if it were installed on a physical machine. As far as the user experience goes, it does depend on what kind of resources you have available, but there is one part of Windows 7 you will not be able to experience by using VMware Server.  

Download Windows 7 64Bit Beta: 



  

Thursday, August 2, 2012

Dual Boot Windows 7 and Windows 8 in System


Dual-Boot Windows 7 and Windows 8


Creating the VHD:

To create the VHD, go to a run prompt by pressing Win+R, and type diskmgmt.msc


An MMC console will appear, and will have the Disk Management snap-in pre-loaded.

To create a new VHD, click on the ACTION button in the menu bar, and select Create VHD.

Now you need to choose a location for the VHD file and set the size, which should be no less than 20 GB. You should probably choose a fixed size for best performance.

Windows will then create the VHD, the progress of this can be viewed in the Status Bar of the MMC snap-in.

Once the disk is created it will be in the list of partitions in the Disk Management console. You’ll want to initialize the disk by clicking on it and selecting initialize.

Leave the partition style at MBR (Master Boot Record) and click ok.

Once the disk has been given a partition style, we now need to create an actual volume on the partition. To do this right click on the black space and select “New Simple Volume”.

A wizard will open, you can just accept all the defaults until you get to this screen. Here change the Volume label to “Windows 8”, then click next and finish.

Now you have a new VHD file that is acting like a real hard drive.


INSTALLING WINDOWS 8 ON THE VHD

The first thing you need to do is open PowerShell as an administrator by opening Start Menu->All Programs->Accessories->Windows PowerShell, right-clicking on the Windows PowerShell shortcut, and choosing Run as Administrator.

When PowerShell launches you will need to change the execution policy to allow you to run scripts. To do this, you need to type “Set-ExecutionPolicy RemoteSigned”. You will be given a security notice just type “Y” and press enter to accept. Once you have done this, leave the PowerShell window open as we will be using it again just now.

Next you need to download this script from MSDN, and then move it to the root of the C: Drive. Note that you could move it somewhere else if you want, but just change the rest of the instructions to use the alternate path.

Right-click on the file and select properties.  Click the unblock button in the bottom right hand corner.

Now you will need to mount the the .ISO file that you downloaded from the Windows Developer website.Once you have mounted the .ISO image switch back to the PowerShell  window. Now type “CD C:\” to switch to the root of the drive.

Now type  the following command into the shell window:
.\Install-WindowsImage.ps1 –WIM D:\Sources\Install.wim –Apply –Index 1 –Destination I:\
You should substitute the drive letter that comes after the –WIM for the drive of the mounted DVD image, and substitute the destination drive letter, in our case this is E:\ for the VHD that you created in the first section of this article. Then press enter.

Once it has completed you will be notified.

Now open an elevated command prompt, and type bcdboot.exe I:\Windows (assuming that I:\ is the drive with Windows 8 on it).

Now when you boot Windows you will be greeted with the new OS Choosing Screen.

Seamless File Sharing
  
The last thing you will want to do is make your files available to both operating systems. To do this boot into your new Windows 8 installation and navigate to:

C:\Users\[Your User Name]
Now right click on the Contacts folder and select Properties from the context menu. Switch over to the location tab and click on the move button.

Now navigate to the Contacts folder on your Windows 7 drive, this can be found at the same path, however your user name might be different to the one you used in Windows 8.

Click on the ok button and your good to go, repeat this for the following folders:
  • Desktop
  • Downloads
  • Favorites
  • Links
  • My Documents
  • My Music
  • My Pictures
  • My Videos

That’s all.Done.

Comments