cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Reddy611
Level 6

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
Labels (1)
0 Kudos
(1) Reply
Reddy611
Level 6

hi ,

i solved the problem ..

Solution for this.

cd /d $USER_INSTALL_DIR$$/$Uninstall_EN
call.bat >> f:$\$output.txt
0 Kudos