cvocvo Posted July 19, 2010 Posted July 19, 2010 (edited) 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) ;;Disables file system redirection for 32bit apps in 64bit land $ProgramFiles = @ProgramFilesDir $ProgramFiles = StringReplace($ProgramFiles, " (x86)", "") Else $ProgramFiles = @ProgramFilesDir EndIf MsgBox(0,"", $ProgramFiles) Edited July 19, 2010 by cvocvo
KaFu Posted July 19, 2010 Posted July 19, 2010 I would strongly suggest NOT to disable filesystem redirection! This can can and will lead to chaos and confusion on OS-Level and for other programs. Better write you'r own location wrapper, something like this: if StringInStr(@OSArch,"64") then $ProgramFilesDir = stringleft(@WindowsDir,2) & "\Program Files" Else $ProgramFilesDir = @ProgramFilesDir endif MsgBox(0,"",@ProgramFilesDir & @crlf & $ProgramFilesDir) OS: Win10-22H2 - 64bit - German, AutoIt Version: 3.3.16.1, AutoIt Editor: SciTE, Website: https://funk.eu AMT - Auto-Movie-Thumbnailer (2024-Oct-13) BIC - Batch-Image-Cropper (2023-Apr-01) COP - Color Picker (2009-May-21) DCS - Dynamic Cursor Selector (2024-Oct-13) HMW - Hide my Windows (2024-Oct-19) HRC - HotKey Resolution Changer (2012-May-16) ICU - Icon Configuration Utility (2018-Sep-16) SMF - Search my Files (2024-Oct-20) - THE file info and duplicates search tool SSD - Set Sound Device (2017-Sep-16)
JFX Posted July 19, 2010 Posted July 19, 2010 The program files folder has nothing to do with filesystem redirection. Hope this what you want: If @OSArch = "X64" Then $ProgramFiles = EnvGet('ProgramW6432') Else $ProgramFiles = @ProgramFilesDir EndIf
cvocvo Posted July 19, 2010 Author Posted July 19, 2010 (edited) I would strongly suggest NOT to disable filesystem redirection! This can can and will lead to chaos and confusion on OS-Level and for other programs. Better write you'r own location wrapper, something like this: if StringInStr(@OSArch,"64") then $ProgramFilesDir = stringleft(@WindowsDir,2) & "\Program Files" Else $ProgramFilesDir = @ProgramFilesDir endif MsgBox(0,"",@ProgramFilesDir & @crlf & $ProgramFilesDir) From what I've read on the forums here it's only disabled for my application and there isn't any need to switch it back. If this isn't the case, how would I switch it back on? Edit: I want to use this so it uses the 64bit versions of regedit and cmd. I'm doing some reg exporting, batch file creation, and some other stuff that makes 64bit versions of those way easier to work with. Edited July 19, 2010 by cvocvo
KaFu Posted July 19, 2010 Posted July 19, 2010 From what I've read on the forums here it's only disabled for my application and there isn't any need to switch it back.Me bad ...Wow64DisableWow64FsRedirection: "Disables file system redirection for the calling thread. File system redirection is enabled by default." OS: Win10-22H2 - 64bit - German, AutoIt Version: 3.3.16.1, AutoIt Editor: SciTE, Website: https://funk.eu AMT - Auto-Movie-Thumbnailer (2024-Oct-13) BIC - Batch-Image-Cropper (2023-Apr-01) COP - Color Picker (2009-May-21) DCS - Dynamic Cursor Selector (2024-Oct-13) HMW - Hide my Windows (2024-Oct-19) HRC - HotKey Resolution Changer (2012-May-16) ICU - Icon Configuration Utility (2018-Sep-16) SMF - Search my Files (2024-Oct-20) - THE file info and duplicates search tool SSD - Set Sound Device (2017-Sep-16)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now