在D盘创建"boot"的文件夹,把PE.iso中的"boot.win"和"boot.sdi"复制到文件夹中,运行下边批处理。
@echo off bcdedit /timeout 10 ::等待时间10秒 for /f "delims={,} tokens=2" %%a in ('bcdedit /create /d "PE" -application osloader') do set Guid={%%a} ::用bdedit创建启动项,导出GUID序列号,赋值给变量Guid bcdedit /set %Guid% device ramdisk="[d:]\boot\boot.wim,{ramdiskoptions}" ::启动设备,位置可更改[d:]\boot\boot.wim bcdedit /set %Guid% osdevice ramdisk="[d:]\boot\boot.wim,{ramdiskoptions}" ::系统启动设备(设置和启动设备一样就行),位置可更改[d:]\boot\boot.wim bcdedit /set %Guid% locale zh-CN ::区域设置中国 bcdedit /set %Guid% systemroot \windows ::系统根目录 bcdedit /set %Guid% detecthal Yes ::检测HAL(硬件抽象层),如Yes(一般用于PE) bcdedit /set %Guid% winpe Yes ::是否windows PE,如Yes(只有是PE时才需要此参数) bcdedit /displayorder %Guid% -addlast ::设置启动项显示顺序为最后 bcdedit /create {ramdiskoptions} ::创建RAM磁盘选项 bcdedit /set {ramdiskoptions} ramdisksdidevice partition=d: ::设置RAM磁盘SDI设备,位置可更改d: bcdedit /set {ramdiskoptions} ramdisksdipath \boot\boot.sdi ::设置RAM磁盘SDI路径,位置可更改\boot\boot.sdi
如要删除,运行"msconfig",切换到引导,删除该启动项即可。
lfw 回答于10-30
张某人 回答于10-30
jjtlwt 回答于10-30
20HN 回答于10-26
20HN 回答于10-21
取消评论你是访客,请填写下个人信息吧