C++用于“解锁”的脚本使用“LockWorkStation()”锁定后的窗口
我有一个 C++ 脚本,可以在发生特定事件时锁定窗口。锁定窗口是使用“LockWorkStation()”命令完成的。我想做的是当其他事件发生时“解锁”窗口。为了便于讨论,我们假设窗口被“锁定”。我需要 2 分钟后才能解锁 Windows。 这需要对 MSGINA.dll 进行任何修改吗?或者它是一个类似于 LockWorkStation() 的简单命令? 知道我已将用户名和密码保存在某处(当前位于用作密钥的 U 盘上)。
任何指导、建议或实现任务方向的程序都将受到高度赞赏。
问候
I have a C++ script that locks the windows when a specific event occurs. Locking windows is done using “LockWorkStation()” command. What I want to do is “unlock” windows when some other event occurs. For the sake of argument, let’s assume windows is “locked”. I need windows to get unlocked after 2 minutes.
Does this need any modification to MSGINA.dll ? or it is a simple command similar to LockWorkStation() ?
Knowing that I have the username and password saved somewhere (currently on a US B stick that works as a key).
Any guidance, advice, or procedure to the direction to achieve the task is highly appreciated.
Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有支持的机制来解锁工作站。您必须编写一个自定义 GINA 模块,然后以某种方式与其进行通信。
使用标准 GINA,您可以获得的最接近的是自动登录(例如使用 来自 SysInternals 的自动登录工具)。但是,自动登录仅在计算机重新启动或用户注销后才会启动,因此用户会话将会丢失。
There is no supported mechanism to unlock workstation. You will have to write a custom GINA module and then communitate with it somehow.
With standard GINA the closest you can get is to do autologon (e.g. using Autologon tool from SysInternals). However autologon only kicks in after machine reboot or after user logoff, so user session would be lost.