轉 Python的:WinReg項模組:Windows 7中:無無效HKEY錯誤

來源:互聯網
上載者:User

標籤:machine   模組   自訂   test   workspace   sts   module   異常   綁定   

Python的:WinReg項模組:Windows 7中:無無效HKEY錯誤

 

python winreg
我遇到的問題,而閱讀的註冊表值的Windows 7 winth WinReg項模組。任何指標,以解決 代碼:

try: ParentKey = _winreg.OpenKey(_winreg.HKEY_LOCAL_MACHINE,"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall") i = 0 while 1:  name, value, type = _winreg.EnumValue(ParentKey, i)  print repr(name),  i += 1except Exception as e: print(Exception(e))ParentKey =_winreg.DisableReflectionKey(ParentKey) temp = _winreg.QueryValueEx(ParentKey, ‘DisplayName‘)temp1 = _winreg.QueryValueEx(ParentKey, ‘DisplayVersion‘)temp2 = _winreg.QueryValueEx(ParentKey, ‘Publisher‘)temp3 = _winreg.QueryValueEx(ParentKey, ‘InstallLocation‘)display = str(temp[0])display_ver=str(temp1[0])display_p=str(temp2[0])display_loc=str(temp3)print (‘Display Name: ‘ + display + ‘\nDisplay version: ‘ + display_ver + ‘\nVendor/Publisher: ‘ + display_p +‘\nRegkey: ‘ + display_loc +‘\nInstall Location: ‘ )

輸出:

[Error 259] No more data is availableTraceback (most recent call last): File "C:\Users\Test\workspace\Pythontests\src\test.py", line 24, in <module> temp = _winreg.QueryValueEx(ParentKey, ‘DisplayName‘)TypeError: None is not a valid HKEY in this context**strong text**


本文地址 :CodeGo.net/8999004/ 
------------------------------------------------------------------------------------------------------------------------- 
1.這行:

ParentKey = _winreg.DisableReflectionKey(ParentKey)

將返回None。該函數DisableReflectionKey是不為返回任何東西(或失敗是由一個異常是否被升高表示)。這樣一個不返回任何回報函數Noneimplicit。既然你綁定傳回值ParentKey,這個變數將持有None從這一點上。 所以,當然後續呼叫,

_winreg.QueryValueEx(ParentKey, ‘DisplayName‘)

因為將失敗QueryValueEx需要自訂鍵(不None)工作。
本文標題 :Python的:WinReg項模組:Windows 7中:無無效HKEY錯誤
本文地址 :CodeGo.net/8999004/ 

轉 Python的:WinReg項模組:Windows 7中:無無效HKEY錯誤

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.