遞迴搜尋登錄檔的例子

2021-04-28 17:00:39 字數 472 閱讀 2069

遞迴搜尋登錄檔的例子

using system;

using microsoft.win32;

namespace cleanregistry }

static void findsymantec(registrykey mykey)

...", mykey.tostring());

// 獲取所有鍵名

foreach (string myvaluename in mykey.getvaluenames())

/t/t", mykey, myvaluename, myvalue);

} }

} // 獲取所有子鍵,遞迴

if (mykey.subkeycount != 0)

catch

// 遞迴

findsymantec(subkey);

} }

} } }

登錄檔搜尋

hkey current user software 360sd libver reg sz 1 5745751 查詢項 360sd d reg query hkcu f 360sd k s hkey current user software 360sd 搜尋結束 找到 1 匹配。查詢值 libv...

登錄檔設定例子

using system using microsoft.win32 namespace registryproc endregion region setregkey set registry key private bool setregkey string strkeyname,string ...

遞迴遍歷登錄檔

首先描述下寫這個 的思路,我的本意是想要從windows 2000登錄檔裡獲取pc已安裝的補丁資訊,已知路徑hkey local machine software microsoft updates,但是它下面還有很多路徑,由於我只有這一台虛擬機器,所以不敢確定其他2000的pc也是這種固定路徑,所...