|
推荐:ramdisk+sdi启动winpe不成功的可以到这来看一下
RAMDISK启动EMBEDDED的SDI镜像成功,下面把SDILOADER和SDIMGR的用处写出来大家共同学习它,同时感谢 GANDALF的指点和支持,在此表示感谢 !
1.Create a new sdi file
sdimgr /new image.sdi
创建一个SDI文件
2.Import the partition into SDI
sdimgr image.sdi /readpart:x:
必须先用SDILOADER.EXE虚拟一个目标盘来做
为读取的分区,把所以加的内容先写入到虚拟
分区中然后用上面的命令来加载到SDI中。
3.Import STARTROM.COM into the SDI BOOT blob
sdimgr image.sdi /import:BOOT,0,startrom.com
写入STARTROM.COM引导文件
4.Import NTLDR into the SDI LOAD blob
sdimgr image.sdi /import:LOAD,0,ntldr
写入NTLDR引导区
5.Pack the SDI to move the boot blob to tha front
sdimgr image.sdi /pack
打包SDI文件
6.Verify that the SDI contains the BOOT,LOAD,and PART blob
sdimgr image.sdi
校验SDI文件
++++++++++++++++++++++++++++
PART 0X00000000.000070000
LOAD 0X00000000.000070000
换算7000为10进制得到的数据就是RAMDISK启动SDI的启动参数。 |
|