This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallAnywhere
- :
- InstallAnywhere Forum
- :
- How to Use EXECUTE COMMAND ?
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Oct 13, 2008
12:36 AM
How to Use EXECUTE COMMAND ?
I am using "execute command" action in installanywhere.
can i excute something like :
$USER_INSTALL_DIR$$\$xyz.exe arg1
where xyz.exe : i am putting during installation and it takes "arg1" as argument?
plz help !
can i excute something like :
$USER_INSTALL_DIR$$\$xyz.exe arg1
where xyz.exe : i am putting during installation and it takes "arg1" as argument?
plz help !
(5) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Oct 13, 2008
12:48 AM
i tried CMD \C $USER_INSTALL_DIR$$\$xyz.exe arg1 ... this also..
how to do this?
any clue?
how to do this?
any clue?
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Oct 13, 2008
03:28 AM
If this is an exe that you're installing, why not use Execute Target instead?
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Oct 13, 2008
03:45 AM
i have to put that xyz via "expand this archive" (so it does not show up in "execute target file")
+ I have to pass the arguments to it.
+ I have to pass the arguments to it.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Oct 13, 2008
04:40 AM
qqqqqq wrote:
i tried CMD \C $USER_INSTALL_DIR$$\$xyz.exe arg1 ... this also..
how to do this?
any clue?
I think that the correct syntax should be something like
CMD /C "$USER_INSTALL_DIR$$\$xyz.exe arg1"
So it's slash C and not backslash C and also assuming that your USER_INSTALL_DIR contains spaces you need quotes around.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Oct 17, 2008
01:43 AM
thanks Vlad 🙂