|
天使,
现在CPUZ.EXE被放置到
内核的WXPE\SYSTEM32根目录下,
则cpu.cmd中的路经如何全去掉?
这样:
setlocal enabledelayedexpansion
set c=
%SystemDrive%\tools\cpuz\cpuz.exe -txt=temp
for /f "tokens=1,*" %%i in (temp.txt) do (
if "%%i"=="Specification" set t=%%j
if "%%i"=="product" set m=%%j
)
修改为:
setlocal enabledelayedexpansion
set c=
-txt=temp
for /f "tokens=1,*" %%i in (temp.txt) do (
if "%%i"=="Specification" set t=%%j
if "%%i"=="product" set m=%%j
)
有问题吗?
PECMD.INI要再修改么?
谢谢!
[ 本帖最后由 wenjx5228 于 2010-3-11 20:10 编辑 ] |
|