C++用于“解锁”的脚本使用“LockWorkStation()”锁定后的窗口

发布于 2024-12-04 13:53:02 字数 268 浏览 2 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤君无依 2024-12-11 13:53:02

没有支持的机制来解锁工作站。您必须编写一个自定义 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文