Do you know the right method to get the installer path in Inno Setup?

I want to catch that value inside the [CODE] section.

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

{srcexe} will give you the path and filename of the setup.
{src} will give you just the installer path.

link|improve this answer
1  
Thanks. I should read the help file in more detail. – ewlung Mar 15 '11 at 15:35
feedback

You should use the {srcexe} constant. In Pascal scripting, you can obtain the values of constants using the ExpandConstant function, as in

path := ExpandConstant('{srcexe}');
link|improve this answer
1  
Thanks. I should read the help file in more detail. – ewlung Mar 15 '11 at 15:34
3  
@ewlung: You should accept one of the answers by clicking the checkmark to the left of the answer. – Andreas Rejbrand Mar 15 '11 at 15:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.