关于32位与64位兼容问题(已解决)
本帖最后由 fuldho 于 2013-12-9 15:42 编辑编译32位:
If FileExists(@SystemDir &"\sysprep\sysprep.exe") Then
MsgBox(0,"","在")
Else
MsgBox(0,"","无")
EndIf
怎样才可以兼容64位?
先谢谢了! 禁用文件重定向应该就可以了。#include <WinAPIFiles.au3>
_WinAPI_Wow64EnableWow64FsRedirection(True) 本帖最后由 yinbinly 于 2013-12-9 14:26 编辑
看不懂Q我 2楼方法就是禁用64位重定向 谢谢: 虫子樱桃、自由的天空
#include <WinAPIFiles.au3>
_WinAPI_Wow64EnableWow64FsRedirection(FALSE)
If FileExists(@WindowsDir &"\System32\sysprep\sysprep.exe") Then
MsgBox(0,"","在")
Else
MsgBox(0,"","无")
EndIf
页:
[1]