I am currently writing an upgrade installation for one of our products.
In the old ini file I have some sectionnames that have to move to a new ini file - but as values!
Example:
; Old.ini
[AETITLE:MachineName]
a=b
x=y
[AETITLE:AnotherMachineName]
l=m
n=o I need the Name of the Section without AETITLE. The result should look like this:; New.ini
[network]
MachineName=one-setting,more-settings,yadada
AnotherMachineName=one-setting,more-settings,yadada I do not need the values/keys from the old.ini sections but part of the sectionname as value for the new.ini. Any ideas how to handle this? :|
Thank you very much.