|
运行环境检测失败,请检查PE环境下集成有Imdisk和Imagex和Wimtool工具....
我使用管理员权限运行了这个命令还是没有用
@echo off
echo 正在补齐系统缺失文件....
copy /y findstr.exe %windir%\system32>nul
copy /y reg.exe %windir%\system32>nul
copy /y mountvol.exe %windir%\system32>nul
copy /y imagex.exe %windir%\system32>nul
cls&echo 正在修复环境变量....
set p=%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;
setx path %p% /m
ping -n 3 127.0.0.1>nul
后来我把
cd /d %~dp0
if exist %windir%\system32\pecmd.exe (
if exist %windir%\system32\imdisk.exe (
if exist %windir%\system32\wimtool.exe (
if exist %windir%\system32\imagex.exe set ervtst=1)))
中的exe文件全部从网上下载来放进system32目录下还是没有用
求助呀。 |
|