Linked Questions
10 questions linked to/from Identifying the CPU architecture type using C#
-2
votes
1
answer
109
views
how to check type of processor architcture runtime [duplicate]
Possible Duplicate:
Identifying the CPU architecture type using C#
my program is using diffrent assemblies for its final part.The problem is that amd and intelx64 assemblies are not fully ...
34
votes
9
answers
62k
views
Why %processor_architecture% always returns x86 instead of AMD64
I am trying to retrieve the environment variable to detect whether the system is 32 or 64 bit.
But on 64 bit server the environment variable %processor_architecture% is returning x86 instead of AMD64.
...
13
votes
7
answers
13k
views
Using C#, how to get whether my machine is 64bit or 32bit?
Using C#, I would like to create a method that retunrs whether my machine is 64 or 32-bit.
Is there anybody who knows how to do that?
10
votes
7
answers
2k
views
How can I tell if a user is using a laptop
I need a way for my .Net Winform app to detect if my app is opened on a Laptop or a Workstation.
I have looked at Environment and SystemInformation but to no avail. Would WMI do the trick?
Thanks ...
10
votes
2
answers
10k
views
How to detect we're running under the ARM64 version of Windows 10 in .NET?
I created a C# .NET console application that can run in Windows 10 x86, x64 and ARM64 (via emulator layer).
I would like to know how to detect that the application is running in those platforms. I ...
1
vote
3
answers
2k
views
.NET Framework get running processor architecture
There is an enum of all supported processor architectures here: http://msdn.microsoft.com/en-us/library/system.reflection.processorarchitecture.aspx
Is there any way to determine which one ...
6
votes
1
answer
911
views
Detecting if CPU is 64bit in Universal App (Windows)
I have a universal app that uses PlayReady DRM protected videos. The problem with PlayReady is that it only work if the application build architecture matches the CPU architecture (e.g: ARM build on ...
1
vote
3
answers
718
views
Get uname release field from C# in .NET Core on Linux
I'm trying to get the output of uname -r in C# in .NET Core 2.2 running on Ubuntu 18.04.
I'm writing this with performance in mind, so have been trying to use a P/Invoke to achieve it.
The uname(2) ...
0
votes
1
answer
92
views
How to connect a library SQLiteCrypt with the same name for x86 and x64 to project AnyCpu? [closed]
I have library - SQLiteCrypt, its two folder x86 and x64. In every folder file - System.Data.SQLite.dll
Project - AnyCPU
I can add reference only one time one dll for x86 project or for x64 project, ...
0
votes
1
answer
92
views
Launch condition in Wix for all the 3 platforms : x64, x86 and ARM64
<?if $(var.Platform) = x64 ?>
<Launch Condition="VersionNT64 AND (NOT NativeMachine = 43620)" Message="Please run 32-bit installer." />
<?elseif $(var.Platform) = ...