You are here

registry settings in file installer.ini

2 posts / 0 new
Last post
bruinsmm
Offline
Last seen: 14 years 1 month ago
Joined: 2010-02-28 16:05
registry settings in file installer.ini

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

Jimbo
Offline
Last seen: 4 years 2 months ago
Joined: 2007-12-17 05:43
Not sure how the launcher does it, but

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?

Log in or register to post comments