johnsmith99 |
2011-04-18 10:29 |
建议网上搜索“Windows 7与Windows XP双系统安装方法汇总”。
我的方案是:
1)把系统盘分成三个主分区:Win7、Data、WinXP; 2)把WinXP分区设置为活动,把Ghost XP系统安装到WinXP分区; 3)把Win7分区设置为活动,把Ghost Win7系统安装到Win7分区; 4)Win7和WinXP互相切换如下:
重启到WinXP,使用命令脚本“WinXP.cmd”,其内容为 @echo off diskpart /s WinXP.txt > NUL shutdown /r /f /t 0 exit 其中WinXP.txt的内容为 select disk 0 select partition 3 active exit
重启到Win7,使用命令脚本“Win7.cmd”,其内容为 @echo off diskpart /s Win7.txt > NUL shutdown /r /f /t 0 exit 其中Win7.txt的内容为 select disk 0 select partition 1 active exit
|
|