I am running a 32bit app on 64bit machines sometimes, when I disable filesystem redirection, @ProgramFilesDir still shows C:\Program Files (x86). Is there any way to update the @ProgramFilesDir to point at the location %programfiles% reflects once filesystem redirection is disabled? Thanks Edit: I couldn't figure out how to get the variables to update, but I wrote a work around: If @OSArch = "X64" Then DllCall("kernel32.dll", "int", "Wow64DisableWow64FsRedirection", "int", 1) ;;Disabl