I'm trying to get the name of the operating system that the client uses when he's using my web application, so far I've only been able to get the name of the operating system where the application is running.
ManagementObjectSearcher searcher = new ManagementObjectSearcher("SELECT Caption FROM Win32_OperatingSystem");
foreach (ManagementObject os in searcher.Get())
{
result = os["Caption"].ToString();
break;
}
I appreciate your answers.