教你从本地存储WIM文件启动Vista系统

Windows AIK提供了极好的创建Windows PE基础镜像的机会,而且这些镜像都是以WIM文件提供,并很容易转成ISO文件刻录到CD或DVD 。WIM文件也可以用于通过WDS(Windows Deployment Services)从网络启动,微软网站也提供了从USB驱动器或干净的硬盘建立启动WIM文件的教程,但是却没有提供详细的有关把WIM启动镜像放到本地硬盘并在Vista启动菜单提供可选启动选项的细节 。
根据一份文档,Ray找到了创建该选项的途径,可以从C:Sourcesboot.wim启动计算机 。方法如下:
架构图
1. 复制从Windows Vista安装DVD中的bootboot.sdi文件到C:boot (注意:这个文件夹是隐藏的)
2. 使用下列命令序列在BCD中创建ramdiskoptions对象,字串“{ramdiskoptions}”代表已知对象的GUID:
【教你从本地存储WIM文件启动Vista系统】bcdedit /create {ramdiskoptions} /d "Ramdisk options"
bcdedit /set {ramdiskoptions} ramdisksdidevice partition=c:
bcdedit /set {ramdiskoptions} ramdisksdipath bootboot.sdi
3. 创建启动入口:
bcdedit -create /d "Windows PE boot" /application OSLOADER
4. 第3步返回了与刚刚创建的启动入口相关的GUID,运行下列命令配置这个启动入口:
bcdedit /set {NewGUID} device ramdisk=[c:]sourcesboot.wim,{ramdiskoptions}
bcdedit /set {NewGUID} path windowssystem32bootwinload.exe
bcdedit /set {NewGUID} osdevice ramdisk=[c:]sourcesboot.wim,{ramdiskoptions}
bcdedit /set {NewGUID} systemroot windows
bcdedit /set {NewGUID} winpe yes
bcdedit /set {NewGUID} detecthal yes
bcdedit /displayorder {NewGUID} /addlast
OK,在启动时就会出现“Windows PE boot”选项,然后从c:sourcesboot.wim启动机器 。

    推荐阅读