i need to install my program on windows xp 64-bit
some files must be installed in system32 directory
all file redirected to to syswow64
the script like this
if System.Is64BitOS then
DLL.CallFunction(_WindowsFolder.."\\SysWOW64\\kern el32.dll", "Wow64DisableWow64FsRedirection", "\""..Application.GetWndHandle().."\"", DLL_RETURN_TYPE_LONG, DLL_CALL_STDCALL);
File.Move(_SystemFolder.."\\SysWOW64\\myexe.exe",_ SystemFolder.."\\system32");
File.Move(_SystemFolder.."\\SysWOW64\\mydll64.dll" ,_SystemFolder.."\\system32");
result = File.Run(SessionVar.Expand("%WindowsFolder%\\Syste m32\\myexe64.exe"), "", SessionVar.Expand("WindowsFolder%\\system32"), SW_MINIMIZE, true);
end
the file not moved to system32 directory and i try to run my 64 bit exe in folder syswow64 to copy files from setup script not work also

