标题: 联想G41M刷BIOS刷微码如何添加主机编号? [打印本页] 作者: ch1820 时间: 2020-5-15 17:05 标题: 联想G41M刷BIOS刷微码如何添加主机编号? 各位师傅大家好,联想G41M刷BIOS刷微码,MB.BAT文件,修改主机编号是添加在哪里?知道的大侠帮我把主机编号替换上去发上来,感谢!我的主机编号:
Machinetype and model QiTianM7180
System Serial Number EA05786651
MB.BAT文件代码如下:
@echo off
AFUDOS.EXE 90KT23C.ROM /P /B /C
rem ****For EFI BIOS, the parameters should be “/P /B /N /R”****
rem ****The first parameter is Serial Number, while the second is Machine Type****
if "%1"=="" goto none
if "%2"=="" goto ss
:both
amidedos /ss %1
amidedos /cs %1
amidedos /sp %2
goto end
:ss
rem ****If you only input one parameter, the Machine Type will be filled as "FFFFFFFFFF"****
amidedos /ss %1
amidedos /cs %1
amidedos /sp FFFFFFFFFF
goto end
:none
rem ***If no parameter input, both SN and MT will be filled as "FFFFFFFFFF"***
amidedos /ss FFFFFFFFFF
amidedos /cs FFFFFFFFFF
amidedos /sp FFFFFFFFFF
:end
amidedos /su auto
rem ****If you want to have other operation, write commands below****