Reputation: 131
I need to get an information about whether my app is running on x86, x64 or an ARM device.
is there any way to get this information in a windows 8 app via the windows runtime API.
Thanks
// Miro
Upvotes: 1
Views: 985
Reputation: 613451
You can call GetNativeSystemInfo
from a WinRT app. That tells you the architecture of the underlying device.
Upvotes: 2
Reputation: 11
While the app is running, go to Task Manager and select the app. Then right-click and select the file location. If it is installed in the program files(x86) folder, then it is a 32bit app. Otherwise it is an x64 bit app.
Upvotes: 0