I am working on a project where I have to validate the Platform for Intel Atom processor and Windows 7 OS.
I have Used:
ManagementClass mgmt = new ManagementClass("Win32_Processor");
//for Intel Atom, "Win32_OperatingSystem" for Win 7 OS
Now, This Logic is working fine when login as Admin or Standard user, But When login as Guest User I am getting System.UnauthorizedAccessException
in method:
void ThrowExceptionForHRInternal(Int32, IntPtr)
description: Access is denied
Is there any restriction for the Guest Account to fetch Platform details?