I want to interact with Windows registry from Talend tool.
As interact action I mean search, insert, update, loop on a entry list and delete some keys and values.
I use Talend Data Integration tool (TIS) in Enterprise version but Open Source edition (TOS) is welcome.
Any advise to do this ?
Thanks a lot
Thomas
I don't believe there are native components for this; but you can achieve this by using a tSystem
component which issues a command to interact with Windows registry.
For instance, to delete a registry key you execute the command :
reg delete "HKCU\Some\Registry\Path" /f
(The path will be a parameter in your component).
Here's an example :