我们使用this post中的代码获取已连接的Windows用户的名称,以便断开连接。
简而言之,GetUserName(),GetCurrentUserName(),LogOffUser()和LogOffCurrentUser(),如下所示。
问题: 在英文版的Windows下,当用户名包含非英文字符时,用户不会注销。
经过一些调试后,我们发现GetUserName()中的用户名显示的是问号而不是非enlgish字符,但在LogOffCurrentUser()中显示正确。因此用户保持连接,因为在尝试断开连接时无法找到用户名。
有什么方法可以解决这个问题吗?
public static string GetUserName(int sessionId, IntPtr server)
{
IntPtr buffer = IntPtr.Zero;
uint count = 0;
string userName = string.Empty;
try
{
WTSQuerySessionInformation(server, sessionId, WTS_INFO_CLASS.WTSUserName, out buffer, out count);
userName = Marshal.PtrToStringAnsi(buffer).ToUpper().Trim();
}
finally
{
WTSFreeMemory(buffer);
}
return userName;
}
//-------------------------------------
public static string GetCurrentUserName()
{
ManagementObjectSearcher searcher = new ManagementObjectSearcher("SELECT UserName FROM Win32_ComputerSystem");
ManagementObjectCollection collection = searcher.Get();
string username = (string)collection.Cast<ManagementBaseObject>().First()["UserName"];
string[] parts = username.Split(new char[] { '\\' });
if (parts[parts.Length - 1] == "SYSTEM") parts[parts.Length - 1] = "";
return parts[parts.Length - 1];
}
//-------------------------------------
public static bool LogOffUser(string userName, IntPtr server)
{
userName = userName.Trim().ToUpper();
List<int> sessions = GetSessionIDs(server);
Dictionary<string, int> userSessionDictionary = GetUserSessionDictionary(server, sessions);
if (userSessionDictionary.ContainsKey(userName))
{
return WTSLogoffSession(server, userSessionDictionary[userName], false);
}
else
{
return false;
}
}
//-------------------------------------
public static void LogOffCurrentUser()
{
LogOffUser(GetCurrentUserName(), IntPtr.Zero);
}
答案 0 :(得分:0)
解决方案:
当尝试获取包含非英语(非拉丁语)字符的Windows用户名时,您必须p /调用WTSQuerySessionInformation的unicode版本,即 WTSQuerySessionInformationW 。
然后可以使用 Marshal.PtrToStringUni 或 Marshal.PtrToStringAuto 将用户名放置到字符串中。
通过这种方式,WTSLogoffSession将在会话字典中找到用户名并正确断开用户连接。