miro smelko
miro smelko

Reputation: 131

how to get an information about processor architecture in windows 8 app

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

Answers (2)

David Heffernan
David Heffernan

Reputation: 613451

You can call GetNativeSystemInfo from a WinRT app. That tells you the architecture of the underlying device.

Upvotes: 2

Ashu1223
Ashu1223

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

Related Questions