Background: I am creating system images that will be loaded onto several workstations. Windows activation will occur after the images are loaded onto the workst
You can run "Slmgr.vbs" on the machine and then redirect the output to check.
System.Diagnostics.Process.Start(@"cscript Slmgr.vbs > D:\\log.txt");
This will return all the information you need. Not the cleanest way to do it though.