When installing Windows 7 OS from four backup CDs, press Shift+F10 keys
before being asked to input the username and password on screen. Then on the C
MD window, type the following commands:
Diskpart
List disk
Select disk 0
Detail disk
Select volume 3
Delete volume /* Delete the backup media partition given by the Windows OS
Installation, the size of this partition is about 15G. */
Detail disk
Select volume 2
Shrink DESIRED=377514 /*Set the size of Windows 7 OS “C” partition. */
Detail disk
Create partition primary size=10245 /* In fact, the size here is not
important because the system will assign all remained space to this partition.
*/
Assign letter=q /* Caution: Must assign the “Q” to this partition, other
letters will lead to failures in the end. */
Format FS=NTFS label=ForUsersData QUICK
Exit
Robocopy “C:\Users” “Q:\Users” /E /COPYALL /XJ
Rmdir “C:\Users” /S /Q
Mklink /J “C:\Users” “Q:\Users”
【 在 ttaudi 的大作中提到: 】
: 如何把Win7 Users单独放到一个盘?
--
FROM 49.74.110.*