|
本帖最后由 mr8246 于 2024-10-28 09:04 编辑
@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}"
::启动设备
bcdedit /set %Guid% osdevice ramdisk="[d:]\boot\boot.wim,{ramdiskoptions}"
::系统启动设备(设置和启动设备一样就行)
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设备
bcdedit /set {ramdiskoptions} ramdisksdipath \boot\boot.sdi
::设置RAM磁盘SDI路径
::绿色的,是需要用户自定义的,其它的随意
::紫色的,是注释,不删除也行,有的系统需要点右键,以管理员身份运行
|
评分
-
查看全部评分
|