Get Systemtype (.bit)
Is there a method to get the systemtype, but only the bits. Like i got 64 bit. Is there a way to display that as a msgbox, as example?
Thanks
[highlight=vb.net]
Dim systemType As String = IIf(Environment.GetEnvironmentVariable("PROCESSOR_ ARCHITECTURE") = "AMD64", "x64", "x86").ToString()
MessageBox.Show(systemType)
[/highlight]
// Edit: Jason was faster :/