theidleness

Distinguished
Sep 30, 2011
26
0
18,530
I just bought a new hdd for my computer. i have it installed and formmated. but everything new i download goes onto my old drive. how do i make everything new that i download onto the new drive? (games from steam ect ect)
 

dalethepcman

Distinguished
Jul 1, 2010
1,636
0
19,860
For steam, the easiest way is shutdown steam, move the folder "C:\Program Files (x86)\Steam\steamapps" to "D:\steamapps\" then open a command shell and use the mklink command
its either
MKLINK /h "C:\Program Files (x86)\Steam\steamapps" d:\steamapps\
or
MKLINK /h d:\steammapps\ "C:\Program Files (x86)\Steam\steamapps"

This makes a hard link between the folder structure of drive c and drive d, all applications looking for this folder on drive c will automagically use drive d instead.

Alternately you could concatenate your drive, but that's much more complex.