首页 > 编程 > Python > 正文

python调用windows api锁定计算机示例

2020-02-23 05:18:49
字体:
来源:转载
供稿:网友

调用Windows API锁定计算机

本来想用Python32直接调用,可是没有发现Python32有Windows API LockWorkStation();

因此,就直接调用Windows DLL了

代码如下:
#!/usr/bin/env python
#-*- coding:cp936 -*-

"调用WindowAPI锁定计算机"

import ctypes;

dll = ctypes.WinDLL('user32.dll');

dll.LockWorkStation();

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表