标签:show isp col 技术 程序 gif port opened closed
需要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封装类
标签:show isp col 技术 程序 gif port opened closed
原文地址:http://www.cnblogs.com/wdfrog/p/7461430.html