[chef] RE: Read windows registry Key values


Chronological Thread 
  • From: Adam Edwards < >
  • To:
  • Subject: [chef] RE: Read windows registry Key values
  • Date: Thu, 26 Feb 2015 13:29:48 -0800

Sachin, have you looked at the docs for the registry_key resource: https://docs.chef.io/resource_registry_key.html, http://docs.chef.io/release/12-0/dsl_recipe.html#registry-get-values ?

 

The registry_key_get_values? DSL element seems like a good place to start, the docs should have examples that clarify the usage.

 

-Adam

 

From: Sachin Gupta [mailto: "> ]
Sent: Thursday, February 26, 2015 10:54 AM
To: ">
Cc: sachin kumar
Subject: [chef] Read windows registry Key values

 

Hi All,

I am working on a use case where I need to read two registry key values and compare there data in a recipe

HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ActiveComputerName

HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName

both are having a value name(ComputerName) and value data(may be same or different). I need to compare there value data.

Do I need to write like this:; or some other better way??

Win32::Registry::HKEY_LOCAL_MACHINE.open(keynameComp, access) do |reg|
reg.each{|name, value, keys | compName = keys}
end
Win32::Registry::HKEY_LOCAL_MACHINE.open(keynameActive, access) do |reg|
reg.each{|name, value, keys | compNameActive = keys}
end


Any idea??


Thanks & Regards,
Sachin Gupta




Archive powered by MHonArc 2.6.16.

§