I'm make an application portable.
The application use some registry settings.
First i have export the registry settings:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\ODBC\ODBC.INI\ArgusCold]
"FULCREATE"="D:\\Argus Cold"
Then i put the registry settings in the file Installer.ini:
[CopyLocalFiles]
CopyLocalFiles=true
CopyFromRegPath=HKLM\Software\ODBC\ODBC.INI\ArgusCold\FULCREATE
CopyFromRegKey=D:\Argus Cold
But it does not works. The application give a error message.
What went wrong, who can help me ?
greetings, Martin
one obvious point that springs to mind is that you have key and value mixed up.
The RegPath is HKLM\Software\ODBC\ODBC.INI\ArgusCold
The RegKey is FULCREATE
and the value in that instance was D:\Argus Cold
try editing the path and key settings to match them, see if it helps?