Results 1 to 5 of 5

Thread: how do you set up windows 7 correctly on an SSD when you have a HDD also?

  1. #1
    Senior Member
    Join Date
    May 2011
    Location
    Cork - Ireland
    Posts
    310
    Rep Power
    15

    how do you set up windows 7 correctly on an SSD when you have a HDD also?

    Just wondering because I bought A SSD recently. How to you configure it so that it boots from the SSD and then your programs are installed on the HDD. Can anyone give me a very detailed explanation in how to do it ? Tony
    Amd BE965 at 4.8, 16gb ram, 120gb ssd, XFX 7950, 2x 21.5" monitor!!

  2. #2
    Hardcore Member 2o2o's Avatar
    Join Date
    Oct 2010
    Posts
    1,536
    Rep Power
    67
    Ok Im not going to make it very detailed , the best way to do it is simply have the SSD and the DVD drive as the only drives plugged in, unplug the sata cable for you current hard drive (and it's power connector) then install windows on the SSD which will be the only drive you have as a choice, once you have installed windows, reconnect the old hard drive and the first time you run your machine after reconnecting your old drive go into the BIOS and make sure the drive order lists your SSD as the first boot device (have to check manual on how to do it as it is different for each motherboard). You can use a Ghost program to make a copy of your current hard drive and put it straight onto the SSD but it will never work as well as it could installing it like this.
    Last edited by 2o2o; 09-05-12 at 21:44.
    Sys 1 Intel i7 930 @ 2.2ghz (thats right underclocked) / 18GB RAM / Radeon 6950 1gb / Silverstone FT-02 / OCZ Vector 128gb
    Sys 2 Intel i5-3570k @4.0ghz(bad Overclocker) / 8gb RAM/ Radeon 6950 2gb / Fractal Design Define XL / Samsung 840 pro 256gb

  3. #3
    Senior Member
    Join Date
    May 2011
    Location
    Cork - Ireland
    Posts
    310
    Rep Power
    15
    thanks for this it helped a lot, i also changed it to ACHI or whatever letters it was in the bios... i heard your suppose to do that also I am did bluescreen at the start a few times and haven't since... any reason to why ? I am running programs of my 1tb harddrive also... Do i need to configure my ram to work of the hdd also?
    Amd BE965 at 4.8, 16gb ram, 120gb ssd, XFX 7950, 2x 21.5" monitor!!

  4. #4
    Hardcore Member 2o2o's Avatar
    Join Date
    Oct 2010
    Posts
    1,536
    Rep Power
    67
    I'm not sure if Microsoft have screwed up an update or not I have been getting bluescreens since an update but like yours settled after a while.
    Sys 1 Intel i7 930 @ 2.2ghz (thats right underclocked) / 18GB RAM / Radeon 6950 1gb / Silverstone FT-02 / OCZ Vector 128gb
    Sys 2 Intel i5-3570k @4.0ghz(bad Overclocker) / 8gb RAM/ Radeon 6950 2gb / Fractal Design Define XL / Samsung 840 pro 256gb

  5. #5
    Senior Member
    Join Date
    Sep 2011
    Posts
    273
    Rep Power
    12

    Red face

    It can be done using symbolic links, but these do produce further problems (see below). My setup is currently as follows:

    120GB SSD (SSDa)- Windows OS & 64bit apps
    60GB SSD (SSDb) - 32bit apps
    1TB HDD (HDDa) - User profiles & documents
    750GB HDD (HDDb) - Backup (disk images), Fraps & Photoshop cache

    --------------------------

    It took some time to get it right, but basically I did was the following:
    1. Complete a full Windows installation on SSDa, boot into windows and assign your drive letters as you would prefer (like my SSDa is C:\, SSDb is A:\, HDDa is U:\, HDDb is B:\, F:\ & P:\).
    2. Then using the Win7 recovery console (boot-up using the installion media and find it in the repair options) you'll need to reassign all the drive letters to match those used in Win7 earlier.
    3. While still in the the Repair Console, use XCOPY to make an exact copy of "C:\Program Files (x86)" & "C:\Program Files" on your HDD (this can be with any folder structure, such as B:\Progs & B:\Progs32) to make life quicker
      Code:
      xcopy "C:\Program Files" B:\Progs /q /e /k /r /h /x /y
    4. Next, delete the above two C:\ directories completely, including their folders (you may need to change your permissions to do this).
      Code:
      takeown /f "C:\Program Files (x86)" /r /d n
      icacls "C:\Program Files (x86)" /grant administrators:F /t
    5. Finally, create symbolic links for each folder, using the mklink command (eg mklink /D "C:\Program Files" "B:\Progs").

    Boot up Windows . If all has worked correctly, every time you or a program tries to access "C:\Program Files" it will be redirected to "B:\Progs". I'm on my work PC at the moment, but if I remember correctly you'll even be shown to be in your C:\ even though everything is in your B:\ .

    --------------------------

    I nearly thought I'd lost the links I've used in the past to help, but found them on my mobile (still accessible without my PC booting ). The most helpful site I found was this one: VistaHeads. There was a second site, but everything you need form it is in step 4.

    --------------------------

    The biggest problems I've had are with Windows Update & Adobe installations where the updates/installation routines are hard coded to use C:\xxx which does not recognise that you have the symbolic link in place. The work around... edit your registry to replace "C:\Program Files" with "B:\Progs" and all should work perfectly after that. With Adobe's installations, attempt the installation and allow it to fail, then edit the registy as the entries are then created for you by the failed installation.

    Past experience (I've done this about 4 times now thanks to not knowing the above and a HDD failing on Night 1, before backing up) has made me realise just how important step 2 is. You can skip it, but you can have other problems. When loading up your Repair Console, you might find that your C:\ is now X:\ and B:\ is now C:\. While this is fine for XCOPY, the symbolic link creates problems:

    If you then try to create your symbolic link, it's possible it won't work at all. If you were to use the mklink example above but this would actually place it in your B:\, then when you load Windows, it will recognise your C:\ correctly but the physical link will still be in the B:\ causing all sorts of problems. So, what if you were to try: mklink /d "X:\Program Files" "B:\Progs", yes it will place the link in the Windows C:\, but when you load windows the link will be in a non-existant X:\. So, in both examples your Program Files will be unavailable. I found this out with my User profiles being missing and causing all sorts of login issues
    Last edited by DreamingSheep; 29-05-12 at 21:16.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •