yinbinly 发表于 2012-10-4 08:55:43

【已解决】AU3在X64系统复制文件问题

本帖最后由 yinbinly 于 2013-1-6 08:36 编辑

先贴出代码FileCopy(@ScriptDir & "\BackgroundDefault.jpg",@SystemDir & "\oobe\info\Backgrounds\backgroundDefault.jpg",9)本人想复制一个文件到 系统32目录,在64位下运行,使用X86编译结果复制到SYSYWOW64目录下什么64编译就没事 ,本人想用X86编译实现并且使用@WindowsDir\sysytem32效果是一样的也是复制进SYSWOW64

yinbinly 发表于 2012-10-5 12:01:46

没人回答一下吗?太伤心了

rqwjqlje 发表于 2012-10-8 21:31:50

支持不得不顶一下楼主!

http://pimg.163.com/club/newclub/images/PP3.gif8错8错,支持~~~

















http://qb.lqualyn.com/images/sigline.gif
防辐射服哪个牌子好

半芯竹 发表于 2012-10-12 21:28:28

回复 2# yinbinly


    Running the 32-bit version of AutoIt on a x64 System
For Files, Windows has a special redirection mechanism for some system directories :

Directories 32-bit Value 64-Bit Value
@SystemDir @WindowsDir & "\SYSWOW64" @WindowsDir & "\System32"
@ProgramFilesDir {SystemDrive} & "\Program Files (x86)" {SystemDrive} & "\Program Files"

It is possible to access the 64-bit version of those directories by disabling the redirection mechanism.

DllCall("kernel32.dll", "int", "Wow64DisableWow64FsRedirection", "int", 1)

yinbinly 发表于 2012-10-13 21:16:48

回复 5# 半芯竹


    大哥你太狠了,全是英文GOOGLE了半天看懂了 但是不行啊

mindy_xie 发表于 2013-3-20 15:45:52

顶,学习中
页: [1]
查看完整版本: 【已解决】AU3在X64系统复制文件问题