如何锁定并强制用户重新输入一个';s的windows密码
本文关键字:一个 密码 windows 输入 新输入 锁定 何锁定 用户 | 更新日期: 2023-09-27 17:58:16
我想锁定当前操作用户的访问,就好像用户
点击开始&rar;指向关机&rar;点击LOCK
如何在C#中做到这一点?
http://jessn.blogspot.com/2009/05/lock-my-computer-programatically-in-c.html这篇文章说得最好:
一个更好的设计,不会硬编码到您的windows系统路径等:
使用System.Runtime.InteropServices;
[DllImport("user32.dll")]public static extern void LockWorkStation();
然后只需调用LockWorkStation();
System.Diagnostics.Process.Start("shutdown.exe -l");
it will LOG OFF your computer and now if the account has secure with some password then windows will ask for password otherwise not.