fuldho 发表于 2013-12-9 11:29:53

关于32位与64位兼容问题(已解决)

本帖最后由 fuldho 于 2013-12-9 15:42 编辑

编译32位:
If FileExists(@SystemDir &"\sysprep\sysprep.exe") Then
MsgBox(0,"","在")
Else
MsgBox(0,"","无")
EndIf
怎样才可以兼容64位?

先谢谢了!

虫子樱桃 发表于 2013-12-9 14:21:05

禁用文件重定向应该就可以了。#include <WinAPIFiles.au3>

_WinAPI_Wow64EnableWow64FsRedirection(True)

yinbinly 发表于 2013-12-9 14:23:24

本帖最后由 yinbinly 于 2013-12-9 14:26 编辑



看不懂Q我

skyfree 发表于 2013-12-9 15:28:31

2楼方法就是禁用64位重定向

fuldho 发表于 2013-12-9 15:41:10

谢谢: 虫子樱桃、自由的天空



#include <WinAPIFiles.au3>
_WinAPI_Wow64EnableWow64FsRedirection(FALSE)
If FileExists(@WindowsDir &"\System32\sysprep\sysprep.exe") Then
MsgBox(0,"","在")
Else
MsgBox(0,"","无")
EndIf
页: [1]
查看完整版本: 关于32位与64位兼容问题(已解决)