需要copy xxx.dll 到windows/syswow64 目录下
运行com注册
启动电脑后,自动锁定(在启动目录下架锁定程序)
using System; using System.Collections; using System.Data; using System.Runtime.InteropServices; public class LockClass { [DllImport("user32.dll")] private static extern bool LockWorkStation(); [STAThread] public static void Lock() { LockWorkStation(); } }
使用西门子的autodll封装类
时间: 2024-09-30 18:17:34