c# Programming Glossary: wtsenumeratesessions
How do you retrieve a list of logged-in/connected users in .NET? http://stackoverflow.com/questions/132620/how-do-you-retrieve-a-list-of-logged-in-connected-users-in-net IntPtr hServer DllImport wtsapi32.dll static extern Int32 WTSEnumerateSessions IntPtr hServer MarshalAs UnmanagedType.U4 Int32 Reserved MarshalAs.. domainPtr IntPtr.Zero Int32 sessionCount 0 Int32 retVal WTSEnumerateSessions serverHandle 0 1 ref SessionInfoPtr ref sessionCount Int32 dataSize..
Start a windows service and launch cmd http://stackoverflow.com/questions/4147821/start-a-windows-service-and-launch-cmd CharSet.Auto SetLastError true public static extern Int32 WTSEnumerateSessions IntPtr hServer int reserved int version ref IntPtr sessionInfo.. ppSessionInfo IntPtr.Zero Int32 count 0 Int32 retval WTSEnumerateSessions IntPtr.Zero 0 1 ref ppSessionInfo ref count Int32 dataSize Marshal.SizeOf..
Logoff interactive users in Windows from a service http://stackoverflow.com/questions/5207506/logoff-interactive-users-in-windows-from-a-service wtsapi32.dll SetLastError true static extern Int32 WTSEnumerateSessions IntPtr hServer MarshalAs UnmanagedType.U4 Int32 Reserved MarshalAs.. wtsapi32.dll SetLastError true static extern Int32 WTSEnumerateSessions IntPtr hServer MarshalAs UnmanagedType.U4 Int32 Reserved MarshalAs.. List int IntPtr buffer IntPtr.Zero int count 0 int retval WTSEnumerateSessions server 0 1 ref buffer ref count int dataSize Marshal.SizeOf..
|