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
- :
- Vb script calling problem in IA .
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
May 27, 2009
09:46 AM
Vb script calling problem in IA .
Hi friends,
AM trying to call VB script from install anywhere it is not working.
I selected Execute script/batch file action to execute the vb script.
Example script.
cd /d $USER_INSTALL_DIR$$/$Uninstall_EN
envPath.vbs
And also I tried using .bat file to call the VB script.
Example script.
cd /d $USER_INSTALL_DIR$$/$Uninstall_EN
Path.bat
In both scenarios it is not working.
But I tried using java code to call the VB script it was working fine.
In java I written the code .for the code I created jar file.
For this I selected Execute script/batch file action to execute the vb script
Example script.
cd /d $USER_INSTALL_DIR$$/$Uninstall_EN
Java -jar envPath.jar
IS INSTALLANYWHERE 2008 standard version won’t support to execute the VB script. If it support can you please tell me how to do this.
Can you please help me how to call vbscipt without java help.
Advanced Thanks
Reddy611
AM trying to call VB script from install anywhere it is not working.
I selected Execute script/batch file action to execute the vb script.
Example script.
cd /d $USER_INSTALL_DIR$$/$Uninstall_EN
envPath.vbs
And also I tried using .bat file to call the VB script.
Example script.
cd /d $USER_INSTALL_DIR$$/$Uninstall_EN
Path.bat
In both scenarios it is not working.
But I tried using java code to call the VB script it was working fine.
In java I written the code .for the code I created jar file.
For this I selected Execute script/batch file action to execute the vb script
Example script.
cd /d $USER_INSTALL_DIR$$/$Uninstall_EN
Java -jar envPath.jar
IS INSTALLANYWHERE 2008 standard version won’t support to execute the VB script. If it support can you please tell me how to do this.
Can you please help me how to call vbscipt without java help.
Advanced Thanks
Reddy611
(1) Reply
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
May 28, 2009
05:13 AM
hi ,
i solved the problem ..
Solution for this.
cd /d $USER_INSTALL_DIR$$/$Uninstall_EN
call.bat >> f:$\$output.txt
i solved the problem ..
Solution for this.
cd /d $USER_INSTALL_DIR$$/$Uninstall_EN
call.bat >> f:$\$output.txt
