2

I would like to know how to get system information such as OS name and version, system manufacturer.

I can get this information by WMI queries, but WMI queries are not working for guest account.

Any idea?

Thanks.

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
fooo
  • 21
  • 1

1 Answers1

1

System.Environment class resolves most of your needs:

 System.Environment.OSVersion 
 System.Environment.ProcessorCount 
 System.Environment.MachineName 
Dewfy
  • 23,277
  • 13
  • 73
  • 121