try wbemtest.exe to find the properties.
or google/msdnfor
wmi c# time
win32_localtime
win32_utctime
and here is some code snippet for local server.
SelectQuery selectQuery = new SelectQuery("select * from win32_localtime");
ManagementObjectSearcher searcher = new ManagementObjectSearcher(selectQuery);
int i = 0;
foreach (ManagementObject mo in searcher.Get())
{
Console.WriteLine("x:" + (mo["Hour"]));
}
System.Console.Read();
Hope this could help.
_Justin