通过C#在Windows注册表中创建REG_NONE空值

如何在Windows注册表中创建类型为REG_NONE的空值?

例如,对于此键:

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\
  .htm\OpenWithProgids

这是我在Windows 7计算机上看到的值:

----------------------------------------------------
Name           Type       Data
----------------------------------------------------
(Default)      REG_SZ     (value not set)
FirefoxHTML    REG_NONE   (zero-length binary value)
htmlfile       REG_NONE   (zero-length binary value)
----------------------------------------------------

具体来说,如何声明和初始化“零长度二进制值”类型的变量,以将其传递给RegistryKey.SetValue?请注意,在RegistryValueKind枚举的文档中找不到所需的帮助.

解决方法:

[这是我的研究结果.]

我在Microsoft的RegistryKey.cs参考源中找到了要寻找的提示:

byte[] value = new byte[0];

具体而言,请致电RegistryKey.SetValue,其中:

> name设置为您想要的密钥名称,
>值设置为empty byte array,并且
> valueKind设置为RegistryValueKind.None.

 using Microsoft.Win32;

 RegistryKey key; // set via 'CreateSubKey' or 'OpenSubKey'
 key.SetValue("KeyName", new byte[0], RegistryValueKind.None);

但是,请注意,至少对于出现在OpenWithProgids键中的值,Windows还将空字符串值视为等效:

 key.SetValue("KeyName", string.Empty, RegistryValueKind.String);

例如,对于此键:

HKEY_CLASSES_ROOT\.vcxproj\OpenWithProgids

这是我在计算机上看到的值:

---------------------------------------------------------------
Name                                  Type      Data
---------------------------------------------------------------
(Default)                             REG_SZ    (value not set)
Expression.Blend.vcsproj.12.0         REG_SZ
VisualStudio.Launcher.vcxproj.10.0    REG_SZ
VisualStudio.Launcher.vcxproj.12.0    REG_SZ
VisualStudio.vcxproj.10.0             REG_SZ
VisualStudio.vcxproj.12.0             REG_SZ
---------------------------------------------------------------

相关:有关如何将RegistryValueKind.Binary类型的注册表值的数据设置为非空字节数组的示例,请参见this answerthis answer.

上一篇:xlwing 合并单元格 修改样式


下一篇:当函数返回None或引发异常时,使用Python的默认值的方法是什么?