對於 Windows 註冊表 的操做是不跨平臺的,僅在 Windows 生效。shell
操做註冊表沒有包含在 BCL,是以 NUGET 包的方式提供,使用命令安裝:windows
dotnet add package Microsoft.Win32.Registry
由於操做註冊表的代碼只能在 Windows 才能正常運行,因此最好判斷一下系統app
if (!RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) { Error("This application can only run on windows."); Environment.Exit(-1); }
註冊表根目錄有 5 項,其中操做 HKEY_CURRENT_USER 不須要管理員權限,可是操做其它就須要了ide
從 Nuget 安裝包 System.Security.Principal.Windows
ui
使用如下代碼來判斷程序是否具備管理員權限:3d
using var identity = WindowsIdentity.GetCurrent(); var principal = new WindowsPrincipal(identity); var isElevated = principal.IsInRole(WindowsBuiltInRole.Administrator); if (!isElevated) { Error("Administrator permission is required to running."); Environment.Exit(-1); }
對註冊表的操做主要是用 Registry
類型,它包含了幾個屬性,分別對應上面提到的,註冊表根目錄的5項。code
如 Registry.CurrentUser
對應 HKEY_CURRENT_USER
。orm
在寫代碼前要安利一下,註冊表對應在代碼中的術語:server
打開註冊表指定 Key:blog
var key = Registry.CurrentUser.OpenSubKey("<Key>", true);
讀取 Key 下的值:
//先獲取ValueName var keyNames = key.GetValueNames(); if (!keyNames.Any()) { Success("No record found, no need to clear."); return; } foreach (var name in keyNames) { //獲取值 key.GetValue(name); //刪除值 key.DeleteValue(name); }
獲取 Key 下的子Key:
var subKeyNames = key.GetSubKeyNames(); if (subKeyNames.Any()) { foreach (var name in subKeyNames) { //刪除子Key serverKey.DeleteSubKey(name); } }
添加或修改值:
key.SetValue("valuename","value");
添加子Key:
key.CreateSubKey("subkeyname");