1. 首页
  2. 数据库
  3. 其它
  4. python调用windows api锁定计算机示例

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

上传者: 2020-12-31 09:09:49上传 PDF文件 27.61KB 热度 6次
调用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(); 您可能感兴趣的文章:Python使用Windows
用户评论