Get LastInputTime by WinStationQueryInformationW returns with 7 min difference

terminal services , lastinputtime , idletime Vinnytsya, Ukraine
  • 11 years ago
    Hi experts, I have a strangle problem with LastInputTime from WinStationInformationW function. The problem is that it sometimes return LastInputTime with 7 min difference from its actual time. For example: last input time was at 11.10 but it returns 11.03. It usually occurs when the person logs in for the first time at the terminal server. But it can also appear during active session. I don't think that the problem is in the code, because it apperars ocassionally. Thank you in advance. Here is the code: private enum WINSTATIONINFOCLASS{ WinStationInformation = 8 } //Works only on Windows 2000/2003 [DllImport("winsta.dll")] private static extern int WinStationQueryInformationW( IntPtr hServer, uint SessionId, uint WinStationInformation, [Out] IntPtr Buf, uint BufLen, ref uint RetLen); [DllImport("wtsapi32.dll", CharSet = CharSet.Auto, SetLastError = true)] private static extern IntPtr WTSOpenServer(string ServerName); [DllImport("wtsapi32.dll")] private static extern void WTSCloseServer(IntPtr hServer); public struct WinstaInfo { public int SessionId; public DateTime ConnectTime; public DateTime DisconnectTime; public DateTime LastInputTime; public DateTime LoginTime; public DateTime CurrentTime; } private static DateTime FileTimeToDateTime(System.Runtime.InteropServices.ComTypes.FILETIME ft) { long hFT = (((long)ft.dwHighDateTime) << 32) + ft.dwLowDateTime; return DateTime.FromFileTime(hFT); } public static WinstaInfo WTSQuerySessionInfo(string ServerName, uint SessionId) { uint RetLen = 0; int ret; WINSTATIONINFORMATIONW wsInfo = new WINSTATIONINFORMATIONW(); System.IntPtr pwsInfo = Marshal.AllocHGlobal(Marshal.SizeOf(wsInfo)); WinstaInfo RetWsInfo = new WinstaInfo(); IntPtr hServer = WTSOpenServer(ServerName); try { ret = WinStationQueryInformationW( hServer, SessionId, (uint)WINSTATIONINFOCLASS.WinStationInformation, pwsInfo, (uint)Marshal.SizeOf(typeof(WINSTATIONINFORMATIONW)), ref RetLen); if(ret==1) { wsInfo = (WINSTATIONINFORMATIONW) Marshal.PtrToStructure( pwsInfo, typeof (WINSTATIONINFORMATIONW)); WTSCloseServer(hServer); RetWsInfo.ConnectTime = FileTimeToDateTime(wsInfo.ConnectTime); RetWsInfo.CurrentTime = FileTimeToDateTime(wsInfo.CurrentTime); RetWsInfo.DisconnectTime = FileTimeToDateTime(wsInfo.DisconnectTime); RetWsInfo.LastInputTime = FileTimeToDateTime(wsInfo.LastInputTime); RetWsInfo.LoginTime = FileTimeToDateTime(wsInfo.LoginTime); RetWsInfo.SessionId = (int)wsInfo.SessionId; } }catch(Win32Exception w32ex) { } finally { Marshal.FreeHGlobal(pwsInfo); } return RetWsInfo; }

Post a reply

No one has replied yet! Why not be the first?

Sign in or Join us (it's free).

Contribute

Why not write for us? Or you could submit an event or a user group in your area. Alternatively just tell us what you think!

Our tools

We've got automatic conversion tools to convert C# to VB.NET, VB.NET to C#. Also you can compress javascript and compress css and generate sql connection strings.

“It works on my machine.” - Anonymous