0

How to check if the Windows machine is 32bit or 64bit from Silverlight OOB.

sri
  • 1,005
  • 1
  • 12
  • 26
  • Did you figure this out? I don't believe the answer below tells the architecture, it just means that you have windows version NT or greater – Misha Jul 25 '12 at 21:07

1 Answers1

1

I think this might work

if (AutomationFactory.IsAvailable)
{
   if (Environment.OSVersion.Platform == PlatformID.Win32NT)
   {}
}
Ziklo
  • 21
  • 3