Created
December 11, 2017 02:33
-
-
Save xcloudx01/1450b79770698008698ec9a7ca8297c2 to your computer and use it in GitHub Desktop.
AHK AutoHotKey - Detect 64bit edition of windows function
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
is64BitWindows(){ ;Returns if the current Windows version is 64 bit or not. | |
ifexist, C:\Program Files (x86) ;The (x86) dir only exists on 64bit editions of Windows. | |
return true | |
else | |
return false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment