狠狠色丁香婷婷综合尤物/久久精品综合一区二区三区/中国有色金属学报/国产日韩欧美在线观看 - 国产一区二区三区四区五区tv

LOGO OA教程 ERP教程 模切知識(shí)交流 PMS教程 CRM教程 開發(fā)文檔 其他文檔  
 
網(wǎng)站管理員

使用C#調(diào)用系統(tǒng)Windows Win32 API注冊(cè)表操作

admin
2024年11月15日 8:29 本文熱度 512

在C#中,我們可以使用Windows Win32 API來對(duì)系統(tǒng)注冊(cè)表進(jìn)行操作。注冊(cè)表是Windows操作系統(tǒng)中用來存儲(chǔ)配置信息的重要數(shù)據(jù)庫,我們可以通過C#來讀取、寫入和刪除注冊(cè)表中的鍵和值。

下面是一些使用C#調(diào)用系統(tǒng)Windows Win32 API注冊(cè)表操作的示例:

讀取注冊(cè)表鍵值

RegOpenKeyEx

用于打開指定的注冊(cè)表鍵。它的參數(shù)說明如下:

  1. hKey:指定要打開的注冊(cè)表鍵的句柄。可以是以下值之一:

    • HKEY_CLASSES_ROOT

    • HKEY_CURRENT_USER

    • HKEY_LOCAL_MACHINE

    • HKEY_USERS

    • HKEY_CURRENT_CONFIG

    • 或者其他通過RegCreateKeyEx或RegOpenKeyEx打開的注冊(cè)表鍵的句柄。

  2. lpSubKey:要打開的注冊(cè)表鍵的名稱。例如:"SOFTWARE\MyApp"。

  3. ulOptions:保留參數(shù),通常設(shè)置為0。

  4. samDesired:指定打開注冊(cè)表鍵的訪問權(quán)限和選項(xiàng)。可以是以下值之一或它們的組合:

    • KEY_READ(只讀)

    • KEY_WRITE(寫入)

    • KEY_ALL_ACCESS(完全訪問權(quán)限)

  5. phkResult:用于接收打開的注冊(cè)表鍵的句柄。

函數(shù)返回值為整型,表示操作的結(jié)果。

RegQueryValueEx

用于檢索指定注冊(cè)表鍵的值。它的參數(shù)說明如下:

  1. hKey:指定要查詢的注冊(cè)表鍵的句柄。

  2. lpValueName:要查詢的注冊(cè)表值的名稱。

  3. lpReserved:保留參數(shù),通常設(shè)置為0。

  4. lpType:用于接收鍵值數(shù)據(jù)的類型。例如,REG_SZ、REG_DWORD等。

  5. lpData:用于接收鍵值數(shù)據(jù)的緩沖區(qū)的指針。

  6. lpcbData:指定lpData緩沖區(qū)的大小,以字節(jié)為單位。在調(diào)用函數(shù)之前,它指定lpData緩沖區(qū)的大小。在函數(shù)返回時(shí),它包含實(shí)際寫入lpData緩沖區(qū)的字節(jié)數(shù)。

函數(shù)返回值為整型,表示操作的結(jié)果。

using System;using Microsoft.Win32.SafeHandles;using System.Runtime.InteropServices;
class Program{    // 定義Win32 API函數(shù)    [DllImport("advapi32.dll", CharSet = CharSet.Unicode, SetLastError = true)]    public static extern int RegOpenKeyEx(        IntPtr hKey,        string lpSubKey,        int ulOptions,        int samDesired,        out IntPtr phkResult);
   [DllImport("advapi32.dll", CharSet = CharSet.Unicode, SetLastError = true)]    public static extern int RegQueryValueEx(        IntPtr hKey,        string lpValueName,        int lpReserved,        out uint lpType,        IntPtr lpData,        ref uint lpcbData);
   static void Main()    {        IntPtr hKey;        IntPtr phkResult;        uint lpType;        uint lpcbData = 1024;        IntPtr lpData = Marshal.AllocHGlobal((int)lpcbData);
       // 打開注冊(cè)表鍵        int result = RegOpenKeyEx(            new IntPtr((int)RegistryHive.CurrentUser),            "SOFTWARE\\MyApp",            0,            0x20019, // KEY_READ            out phkResult        );
       // 讀取鍵值        result = RegQueryValueEx(            phkResult,            "MySetting",            0,            out lpType,            lpData,            ref lpcbData        );
       string value = Marshal.PtrToStringUni(lpData);
       // 輸出鍵值        Console.WriteLine(value);
       // 釋放內(nèi)存        Marshal.FreeHGlobal(lpData);
       // 關(guān)閉注冊(cè)表鍵        SafeRegistryHandle safeHandle = new SafeRegistryHandle(phkResult, true);        safeHandle.Dispose();    }}

讀取之前需要先創(chuàng)建一個(gè)Key

寫入注冊(cè)表鍵值

RegSetValueEx

用于設(shè)置指定注冊(cè)表鍵的值。它的參數(shù)說明如下:

  1. hKey:指定要設(shè)置值的注冊(cè)表鍵的句柄。

  2. lpValueName:要設(shè)置的注冊(cè)表值的名稱。

  3. reserved:保留參數(shù),通常設(shè)置為0。

  4. dwType:指定要設(shè)置的值的數(shù)據(jù)類型。可以是以下值之一:

    • REG_SZ:字符串類型

    • REG_DWORD:雙字類型

    • REG_BINARY:二進(jìn)制數(shù)據(jù)類型

    • REG_MULTI_SZ:多字符串類型

    • 等等

  5. lpData:指向包含要設(shè)置的值的數(shù)據(jù)的緩沖區(qū)的指針。

  6. cbData:指定lpData緩沖區(qū)的大小,以字節(jié)為單位。

函數(shù)返回值為整型,表示操作的結(jié)果。

using System;using Microsoft.Win32.SafeHandles;using System.Runtime.InteropServices;
class Program{    // 定義Win32 API函數(shù)    [DllImport("advapi32.dll", CharSet = CharSet.Unicode, SetLastError = true)]    public static extern int RegCreateKeyEx(        IntPtr hKey,        string lpSubKey,        int reserved,        string lpClass,        int dwOptions,        int samDesired,        IntPtr lpSecurityAttributes,        out IntPtr phkResult,        out int lpdwDisposition);
   [DllImport("advapi32.dll", CharSet = CharSet.Unicode, SetLastError = true)]    public static extern int RegSetValueEx(        IntPtr hKey,        string lpValueName,        int reserved,        int dwType,        string lpData,        int cbData);
   static void Main()    {        IntPtr hKey;        IntPtr phkResult;        int lpdwDisposition;
       // 創(chuàng)建或打開注冊(cè)表鍵        int result = RegCreateKeyEx(            new IntPtr((int)RegistryHive.CurrentUser),            "SOFTWARE\\MyApp",            0,            null,            0,            0x20006, // KEY_WRITE            IntPtr.Zero,            out phkResult,            out lpdwDisposition        );
       // 寫入鍵值        result = RegSetValueEx(            phkResult,            "MySetting",            0,            1, // REG_SZ            "123",            6        );
       // 關(guān)閉注冊(cè)表鍵        SafeRegistryHandle safeHandle = new SafeRegistryHandle(phkResult, true);        safeHandle.Dispose();    }}

刪除注冊(cè)表鍵值

class Program{    // 定義Win32 API函數(shù)    [DllImport("advapi32.dll", CharSet = CharSet.Unicode, SetLastError = true)]    public static extern int RegOpenKeyEx(        IntPtr hKey,        string lpSubKey,        int ulOptions,        int samDesired,        out IntPtr phkResult);
   // 定義Win32 API函數(shù)    [DllImport("advapi32.dll", CharSet = CharSet.Unicode, SetLastError = true)]    public static extern int RegDeleteValue(        IntPtr hKey,        string lpValueName);
   static void Main()    {        IntPtr hKey;        IntPtr phkResult;
       // 打開注冊(cè)表鍵        int result = RegOpenKeyEx(            new IntPtr((int)RegistryHive.CurrentUser),            "SOFTWARE\\MyApp",            0,            0x20006, // KEY_WRITE            out phkResult        );
       // 刪除鍵值        result = RegDeleteValue(            phkResult,            "MySetting"        );
       // 關(guān)閉注冊(cè)表鍵        SafeRegistryHandle safeHandle = new SafeRegistryHandle(phkResult, true);        safeHandle.Dispose();    }}

刪除注冊(cè)表鍵

class Program{    // 定義Win32 API函數(shù)    [DllImport("advapi32.dll", CharSet = CharSet.Unicode, SetLastError = true)]    public static extern int RegOpenKeyEx(        IntPtr hKey,        string lpSubKey,        int ulOptions,        int samDesired,        out IntPtr phkResult);
   // 定義Win32 API函數(shù)    [DllImport("advapi32.dll", CharSet = CharSet.Unicode, SetLastError = true)]    public static extern int RegDeleteKey(        IntPtr hKey,        string lpSubKey);
   static void Main()    {        IntPtr hKey;        IntPtr phkResult;
       // 打開注冊(cè)表鍵        int result = RegOpenKeyEx(            new IntPtr((int)RegistryHive.CurrentUser),            "SOFTWARE",            0,            0x20019, // KEY_READ            out phkResult        );
       // 刪除注冊(cè)表鍵        result = RegDeleteKey(            phkResult,            "MyApp"        );
       // 關(guān)閉注冊(cè)表鍵        SafeRegistryHandle safeHandle = new SafeRegistryHandle(phkResult, true);        safeHandle.Dispose();    }}

通過以上示例,我們可以看到如何使用C#調(diào)用系統(tǒng)Windows Win32 API注冊(cè)表操作。需要注意的是,對(duì)注冊(cè)表的操作需要謹(jǐn)慎,不當(dāng)?shù)牟僮骺赡軙?huì)導(dǎo)致系統(tǒng)故障,建議在操作注冊(cè)表時(shí)謹(jǐn)慎處理。


該文章在 2024/11/15 11:40:21 編輯過
關(guān)鍵字查詢
相關(guān)文章
正在查詢...
點(diǎn)晴ERP是一款針對(duì)中小制造業(yè)的專業(yè)生產(chǎn)管理軟件系統(tǒng),系統(tǒng)成熟度和易用性得到了國內(nèi)大量中小企業(yè)的青睞。
點(diǎn)晴PMS碼頭管理系統(tǒng)主要針對(duì)港口碼頭集裝箱與散貨日常運(yùn)作、調(diào)度、堆場(chǎng)、車隊(duì)、財(cái)務(wù)費(fèi)用、相關(guān)報(bào)表等業(yè)務(wù)管理,結(jié)合碼頭的業(yè)務(wù)特點(diǎn),圍繞調(diào)度、堆場(chǎng)作業(yè)而開發(fā)的。集技術(shù)的先進(jìn)性、管理的有效性于一體,是物流碼頭及其他港口類企業(yè)的高效ERP管理信息系統(tǒng)。
點(diǎn)晴WMS倉儲(chǔ)管理系統(tǒng)提供了貨物產(chǎn)品管理,銷售管理,采購管理,倉儲(chǔ)管理,倉庫管理,保質(zhì)期管理,貨位管理,庫位管理,生產(chǎn)管理,WMS管理系統(tǒng),標(biāo)簽打印,條形碼,二維碼管理,批號(hào)管理軟件。
點(diǎn)晴免費(fèi)OA是一款軟件和通用服務(wù)都免費(fèi),不限功能、不限時(shí)間、不限用戶的免費(fèi)OA協(xié)同辦公管理系統(tǒng)。
Copyright 2010-2025 ClickSun All Rights Reserved