Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何以编程方式注销 citrix xen 应用程序会话(我知道服务器、uid、pwd)。C# 使用什么 api?
您可以将 WTSLogoffSession 用于远程案例和本地案例。但是,您需要先使用 WTSOpenServer 获取服务器的句柄(然后使用 WTSCloseServer 将其关闭)。请注意,这些不是 C# API,它们是本机的。但是,您可以使用 Platform Invoke 从 C# 调用它们。