遍歷登錄檔某鍵下的所有子鍵及其KeyValue
// QueryKey - Enumerates the subkeys of key and its associated values.
// hKey - Key whose subkeys and values are to be enumerated.
#include <windows.h>
#include <stdio.h>
#include <tchar.h>
#define MAX_KEY_LENGTH 255
#define MAX_VALUE_NAME 16383
void QueryKey(HKEY hKey)
{
TCHAR achKey[MAX_KEY_LENGTH]; // buffer for subkey name
DWORD cbName; // size of name string
TCHAR achClass[MAX_PATH] = TEXT(""); // buffer for class name
DWORD cchClassName = MAX_PATH; // size of class string
DWORD cSubKeys=0; // number of subkeys
DWORD cbMaxSubKey; // longest subkey size
DWORD cchMaxClass; // longest class string
DWORD cValues; // number of values for key
DWORD cchMaxValue; // longest value name
DWORD cbMaxValueData; // longest value data
DWORD cbSecurityDescriptor; // size of security descriptor
FILETIME ftLastWriteTime; // last write time
DWORD i, retCode;
TCHAR achValue[MAX_VALUE_NAME];
DWORD cchValue = MAX_VALUE_NAME;
// Get the class name and the value count.
retCode = RegQueryInfoKey(
hKey, // key handle
achClass, // buffer for class name
&cchClassName, // size of class string
NULL, // reserved
&cSubKeys, // number of subkeys
&cbMaxSubKey, // longest subkey size
&cchMaxClass, // longest class string
&cValues, // number of values for this key
&cchMaxValue, // longest value name
&cbMaxValueData, // longest value data
&cbSecurityDescriptor, // security descriptor
&ftLastWriteTime); // last write time
// Enumerate the subkeys, until RegEnumKeyEx fails.
if (cSubKeys)
{
printf( "\nNumber of subkeys: %d\n", cSubKeys);
for (i=0; i<cSubKeys; i++)
{
cbName = MAX_KEY_LENGTH;
retCode = RegEnumKeyEx(hKey, i,
achKey,
&cbName,
NULL,
NULL,
NULL,
&ftLastWriteTime);
if (retCode == ERROR_SUCCESS)
{
_tprintf(TEXT("(%d) %s\n"), i+1, achKey);
}
}
}
// Enumerate the key values.
if (cValues)
{
printf( "\nNumber of values: %d\n", cValues);
for (i=0, retCode=ERROR_SUCCESS; i<cValues; i++)
{
cchValue = MAX_VALUE_NAME;
achValue[0] = '\0';
retCode = RegEnumValue(hKey, i,
achValue,
&cchValue,
NULL,
NULL,
NULL,
NULL);
if (retCode == ERROR_SUCCESS )
{
_tprintf(TEXT("(%d) %s\n"), i+1, achValue);
}
}
}
}
int __cdecl _tmain()
{
HKEY hTestKey;
if( RegOpenKeyEx( HKEY_CURRENT_USER,
TEXT("SOFTWARE\\Microsoft"),
0,
KEY_READ,
&hTestKey) == ERROR_SUCCESS
)
{
QueryKey(hTestKey);
}
RegCloseKey(hTestKey);
}
相關文章
- 遍歷目錄下的所有檔案
- matlab遍歷資料夾下的所有檔案Matlab
- win10用快捷鍵登錄檔怎麼開啟_win10開啟登錄檔快捷鍵方法Win10
- Qt foreach關鍵字遍歷容器QT
- 遍歷物件鍵值對的兩種方法物件
- PowerShell 命令來操作 Windows 登錄檔 Get-ItemProperty 命令可以獲取指定登錄檔路徑下的鍵值資訊 ;Set-ItemProperty 命令可以設定指定登錄檔路徑下的鍵值資訊;New-Item 命令可以建立新的登錄檔項Windows
- Godot遍歷目錄下檔案,並建立按鈕Go
- Windows登錄檔增加右鍵多級選單Windows
- Linux查詢某個目錄下每個子目錄的所有檔案數量Linux
- Python中遍歷字典以及字典中的鍵和值Python
- 震驚!System Volume Information竟是遍歷硬碟下的所有檔案和目錄時出現異常的真正元凶!!!ORM硬碟
- C++讀取某個資料夾下面的子資料夾及其所有檔案C++
- Winform 遍歷 ListBox中的所有項ORM
- 根據登錄檔鍵值判斷本機EXCEL版本Excel
- win10系統登錄檔怎麼修復 win10一鍵修復登錄檔Win10
- Java 輸出某路徑下的所有檔案Java
- iOS @property及其關鍵字學習記錄iOS
- win10登錄檔損壞了怎麼恢復 win10一鍵恢復登錄檔教程Win10
- 遞迴遍歷當前目錄下所有的git倉庫,執行git pull操作遞迴Git
- Linux迴圈遍歷所有檔案,刪除指定字尾名檔案Linux
- 記錄遍歷方法
- 遞迴遍歷網站所有 url遞迴網站
- git fetch批處理,遍歷一個資料夾下的所有子目錄,執行git fetch --allGit
- win10清理無效登錄檔程式碼是什麼 win10一鍵清除無用登錄檔命令Win10
- JNI 檔案遍歷
- 用python寫一個指令碼:將指定目錄下及其所有子資料夾的所有的“srt”檔案的內容合併到一個新的srt檔案中Python指令碼
- Python字典的遍歷,包括key遍歷/value遍歷/item遍歷/Python
- 使用 Appcrawler 進行遍歷測試時,登入需要使用安全鍵盤,該怎麼設定呢APP
- 什麼是目錄遍歷?
- Keil一鍵新增.c檔案和標頭檔案路徑指令碼--可遍歷新增整個資料夾指令碼
- RedisTemplate清空所有鍵值對Redis
- PHP超低記憶體遍歷目錄檔案和讀取超大檔案PHP記憶體
- 目錄遍歷-基於Pikachu的學習
- Oracle遊標遍歷%rowtype中的記錄Oracle
- 二叉樹的所有遍歷非遞迴實現二叉樹遞迴
- 登錄檔
- NX二次開發-建模-遍歷所有物件物件
- js的map遍歷和array遍歷JS