How can I display computers OS version that includes if they're 32bit or 64bit?
Announcement
Collapse
No announcement yet.
How to display if 32bit or 64bit OS?
Collapse
X
-
Re: How to display if 32bit or 64bit OS?
You'll need to use WMI for that one.
The OSArchitecture property of the Win32_OperatingSystem class seems like a good start. There is a list of the properties for this class here:
http://msdn.microsoft.com/En-US/library/aa394239.aspx
That class is a default one in Hyena, but that particular property is not listed on the Query Attributes by default so you'll have to find it in the right window and add it.
-
Comment