Type:
Class

Win32 Registry

win32/registry is registry accessor library for Win32 platform. It uses dl/import to call Win32 Registry APIs.

example

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Win32::Registry::HKEY_CURRENT_USER.open('SOFTWARE\foo') do |reg|
  value = reg['foo']                               # read a value
  value = reg['foo', Win32::Registry::REG_SZ]      # read a value with type
  type, value = reg.read('foo')                    # read a value
  reg['foo'] = 'bar'                               # write a value
  reg['foo', Win32::Registry::REG_SZ] = 'bar'      # write a value with type
  reg.write('foo', Win32::Registry::REG_SZ, 'bar') # write a value
 
  reg.each_value { |name, type, data| ... }        # Enumerate values
  reg.each_key { |key, wtime| ... }                # Enumerate subkeys
 
  reg.delete_value(name)                         # Delete a value
  reg.delete_key(name)                           # Delete a subkey
  reg.delete_key(name, true)                     # Delete a subkey recursively
end

Reference

Win32::Registry class

Win32 Registry

win32/registry is registry accessor library for Win32 platform. It uses fiddle/import to call Win32 Registry APIs.

example

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Win32::Registry::HKEY_CURRENT_USER.open('SOFTWARE\foo') do |reg|
  value = reg['foo']                               # read a value
  value = reg['foo', Win32::Registry::REG_SZ]      # read a value with type
  type, value = reg.read('foo')                    # read a value
  reg['foo'] = 'bar'                               # write a value
  reg['foo', Win32::Registry::REG_SZ] = 'bar'      # write a value with type
  reg.write('foo', Win32::Registry::REG_SZ, 'bar') # write a value
 
  reg.each_value { |name, type, data| ... }        # Enumerate values
  reg.each_key { |key, wtime| ... }                # Enumerate subkeys
 
  reg.delete_value(name)                         # Delete a value
  reg.delete_key(name)                           # Delete a subkey
  reg.delete_key(name, true)                     # Delete a subkey recursively
end

Reference

Win32::Registry class

flush
  • References/Ruby on Rails/Ruby/Classes/Win32/Win32::Registry

flush() Instance Public methods Write all the attributes into the registry file

2025-01-10 15:47:30
FlushKey
  • References/Ruby on Rails/Ruby/Classes/Win32/Win32::Registry/Win32::Registry::API

FlushKey(hkey) Instance Public methods

2025-01-10 15:47:30
create 2
  • References/Ruby on Rails/Ruby/Classes/Win32/Win32::Registry

create(subkey, desired = KEY_ALL_ACCESS, opt = REG_OPTION_RESERVED, &blk) Instance Public methods

2025-01-10 15:47:30
keys
  • References/Ruby on Rails/Ruby/Classes/Win32/Win32::Registry

keys() Instance Public methods return keys as an array

2025-01-10 15:47:30
DeleteKey
  • References/Ruby on Rails/Ruby/Classes/Win32/Win32::Registry/Win32::Registry::API

DeleteKey(hkey, name) Instance Public methods

2025-01-10 15:47:30
packqw
  • References/Ruby on Rails/Ruby/Classes/Win32/Win32::Registry/Win32::Registry::API

packqw(qw) Instance Public methods

2025-01-10 15:47:30
close
  • References/Ruby on Rails/Ruby/Classes/Win32/Win32::Registry

close() Instance Public methods Close key. After

2025-01-10 15:47:30
EnumKey
  • References/Ruby on Rails/Ruby/Classes/Win32/Win32::Registry/Win32::Registry::API

EnumKey(hkey, index) Instance Public methods

2025-01-10 15:47:30
read_s
  • References/Ruby on Rails/Ruby/Classes/Win32/Win32::Registry

read_s(name) Instance Public methods Read a REG_SZ(read_s), REG_DWORD(read_i)

2025-01-10 15:47:30
check
  • References/Ruby on Rails/Ruby/Classes/Win32/Win32::Registry/Win32::Registry::API

check(result) Instance Public methods

2025-01-10 15:47:30