加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Python > 正文

python读取注册表中值的方法

发布时间:2020-12-16 21:03:22 所属栏目:Python 来源:网络整理
导读:在Python的标准库中,_winreg.pyd可以操作Windows的注册表,另外第三方的win32库封装了大量的Windows API,使用起来也很方便。不过这里介绍的是使用_winreg操作注册表,毕竟是Python自带的标准库,无需安装第三方库。 下面的例子是通过Python获取Windows XP

在Python的标准库中,_winreg.pyd可以操作Windows的注册表,另外第三方的win32库封装了大量的Windows API,使用起来也很方便。不过这里介绍的是使用_winreg操作注册表,毕竟是Python自带的标准库,无需安装第三方库。

下面的例子是通过Python获取Windows XP下已经安装的补丁号。Windows的补丁号都在“HKEY_LOCAL_MACHINESOFTWAREMicrosoftUpdates”下,通过循环下面所有的目录节点,如果找到的名称符合正则表达式KB(d{6}).*,则表示是一个补丁号。

从例子可以看出操作起来非常的简单和快速。

复制代码 代码如下:

# -*- coding: utf-8 -*-
# 获取Windows的已打的补丁号

from _winreg import *
import re

def subRegKey(key,pattern,patchlist):
    # 个数
    count = QueryInfoKey(key)[0]
    for index in range(count):
        # 获取标题
        name = EnumKey(key,index)
        result = patch.match(name)
        if result:
            patchlist.append(result.group(1))
        sub = OpenKey(key,name)
        subRegKey(sub,patchlist)
        CloseKey(sub)

if __name__ == '__main__':
    patchlist = []
    updates = 'SOFTWAREMicrosoftUpdates'
    patch = re.compile('(KBd{6}).*')
    key = OpenKey(HKEY_LOCAL_MACHINE,updates)
    subRegKey(key,patch,patchlist)
    print 'Count: ' + str(len(patchlist))
    for p in patchlist:
        print p
    CloseKey(key)
 

 
下面内容转自  Python Standard Library12.13 The _winreg Module
(Windows only,New in 2.0) The _winreg module provides a basic interface to the Windows registry database. Example 12-17 demonstrates the module.

Example 12-17. Using the _winreg Module
File: winreg-example-1.py

复制代码 代码如下:

import _winreg

explorer = _winreg.OpenKey(
    _winreg.HKEY_CURRENT_USER,
    "SoftwareMicrosoftWindowsCurrentVersionExplorer"
    )

#list values owned by this registry key
try:
    i = 0
    while 1:
      name,value,type= _winreg.EnumValue(explorer,i)
      print repr(name),
      i += 1
except WindowsError:
    print

value,type = _winreg.QueryValueEx(explorer,"Logon User Name")

print
print "user is",repr(value)


'Logon User Name' 'CleanShutdown' 'ShellState' 'Shutdown Setting'
'Reason Setting' 'FaultCount' 'FaultTime' 'IconUnderline'...

user is u'Effbot'

您可能感兴趣的文章:

  • 操作Windows注册表的简单的Python程序制作教程
  • python修改注册表终止360进程实例
  • Python执行Linux系统命令的4种方法
  • 使用Python获取Linux系统的各种信息
  • 使用Python获取CPU、内存和硬盘等windowns系统信息的2个例子
  • Windows系统配置python脚本开机启动的3种方法分享
  • 举例讲解Linux系统下Python调用系统Shell的方法
  • python访问系统环境变量的方法
  • Python实现修改IE注册表功能示例

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读