|
本帖最后由 kcyou 于 2013-9-2 02:13 编辑
关于ati2013问题,原来32位系统能用现在不能使用,用原来的install.exe提示wininet.dll冲突,有的说要删除PE里的WININET.DLL,其实不用,而是install.exe不能用,snapman.sys,fltsrv.sys,snapapi.dll换64位的,重新编辑批处理解决了。而且PE的SYSWOW64里要有drivers目录(空目录即可)。
ati2013.cmd内容:
@echo off
@echo off
PUSHD %~dp0
SET TP=%CD%
regedit /S Ati64.reg
copy %TP%\snapman.sys %WINDIR%\syswow64\drivers\snapman.sys /Y
copy %TP%\fltsrv.sys %WINDIR%\syswow64\drivers\fltsrv.sys /Y
copy %TP%\snapapi.dll %WINDIR%\syswow64\snapapi.dll /Y
@sc create snapman type= Kernel start= boot binpath= "SysWOW64\DRIVERS\snapman.sys"
@sc start snapman
@sc create fltsrv type= Kernel start= boot binpath= "SysWOW64\DRIVERS\fltsrv.sys"
@sc start fltsrv
%TP%\TrueImage.exe
exit
注册表文件Ati64.reg内容:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Acronis\TrueImage]
"standard"=" 98 0 18 13 3 13 29 99120 5 6 30 3109 20 13 5120 30 97 2 15 98 6 2 7120 30 25 13 2 0 6 6 3120 20 2 99103 22 6 5 22120 16 3 16 7 7 15 6 7120 22 96 13 22102 6 0 97120 22109 7109 0 3 31 4"
"powerpack"=" 23 20 99 22 15 98 2 6120 6 27 99 15 98 15102 25120 27 29 18103 31 97 22 27120 23 17 31 17 5 1 30 23120 17 31 2103 7 99 19 25120 30 99 2 27 7 3 22 25120 7 3 13 2 6103 96 22120103 19 17 97 24 12 97 98"
|
|