Deployment (Custom Actions)

S

Steve Long

Hello,
I'm trying to get the installation folder that the user selects from my
setup program so I can write the value to the registry. I've written a
custom Installer that inherits from System.Configuration.Install.Installer
and overridden the Install and Uninstall methods. I'm trying to get the
install folder by using the MyBase.Context.Parameters("INSTALLDIR") (also
tried "TARGETDIR") and I get nothing back but TargetDir so that's what gets
written into the registry. Does anybody know a reliable way to get the
Install folder from the Context object? Or, am I going about this all wrong?

Code:
public override Sub Install(stateSaver As IDictionary)
RegistryKey rKey = Registry.LocalMachine.OpenSubKey(SOFTWARE, True)
RegistryKey newKey = rKey.CreateSubKey(SUBKEY)
newKey.SetValue(IMAPPATH, MyBase.Context.Parameters("TARGETDIR"))
stateSaver.Add(IMAPPATH, MyBase.Context.Parameters("TARGETDIR"))
newKey.Close()
rKey.Close()
End Sub

I appreciate any help on this as I'm stumped.
Steve
 
K

Ken Tucker [MVP]

Hi,

Maybe try me instead of mybase.

Ken
--------------
Hello,
I'm trying to get the installation folder that the user selects from my
setup program so I can write the value to the registry. I've written a
custom Installer that inherits from System.Configuration.Install.Installer
and overridden the Install and Uninstall methods. I'm trying to get the
install folder by using the MyBase.Context.Parameters("INSTALLDIR") (also
tried "TARGETDIR") and I get nothing back but TargetDir so that's what gets
written into the registry. Does anybody know a reliable way to get the
Install folder from the Context object? Or, am I going about this all wrong?

Code:
public override Sub Install(stateSaver As IDictionary)
RegistryKey rKey = Registry.LocalMachine.OpenSubKey(SOFTWARE, True)
RegistryKey newKey = rKey.CreateSubKey(SUBKEY)
newKey.SetValue(IMAPPATH, MyBase.Context.Parameters("TARGETDIR"))
stateSaver.Add(IMAPPATH, MyBase.Context.Parameters("TARGETDIR"))
newKey.Close()
rKey.Close()
End Sub

I appreciate any help on this as I'm stumped.
Steve
 
S

Steve Long

Okay, for this to work, here what has to be done. I didn't have to change
any of the code that is listed below. However, I did have to add the
following line to the CustomActionData property of the Custom Action:

/INSTALLDIR="[TARGETDIR]\"

Including the backslash after TARGETDIR

Steve
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top