如何在 COM RGS 文件中指定二进制数据

发布于 2024-07-13 23:59:38 字数 417 浏览 8 评论 0原文

在注册 COM 对象期间,我通过将一些自定义数据添加到 rgs 文件来将其添加到注册表中。

添加 DWORD 值(由下面的 = d '3' 指定)将按预期输入到注册表中。

然而,对于二进制/十六进制数据,它无法正确输入注册表。 谁能建议在 rgs 文件中输入二进制数据的正确语法是什么?

HKLM
{
   NoRemove SOFTWARE
   {
      NoRemove MyCompany
      {
         NoRemove Settings
         {
            val 'MyTestDword' = d '3'
            val 'MyTestBinaryData' = b '00 01 04'
         }
      }
   }
}

I'm adding some custom data data to the registry during the registration of a COM object by adding it to the rgs file.

Adding a DWORD value (specified by = d '3' below) gets entered into the registry as expected.

For the binary/hex data however it does not get entered into the registry correctly.
Can anyone advise what the correct syntax is for entering binary data in a rgs file?

HKLM
{
   NoRemove SOFTWARE
   {
      NoRemove MyCompany
      {
         NoRemove Settings
         {
            val 'MyTestDword' = d '3'
            val 'MyTestBinaryData' = b '00 01 04'
         }
      }
   }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

昔日梦未散 2024-07-20 23:59:38

正确的语法是不在十六进制值之间使用空格

val 'MyTestBinaryData' = b '000104'

The correct syntax was not to use spaces between the hex values

val 'MyTestBinaryData' = b '000104'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文