Skip to content

Instantly share code, notes, and snippets.

@xcloudx01
Created December 11, 2017 02:33
Show Gist options
  • Save xcloudx01/1450b79770698008698ec9a7ca8297c2 to your computer and use it in GitHub Desktop.
Save xcloudx01/1450b79770698008698ec9a7ca8297c2 to your computer and use it in GitHub Desktop.
AHK AutoHotKey - Detect 64bit edition of windows function
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