cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
shivaker
Level 2

Need some help on where or how to add command prompt codes

Hi, im kinda new to installshield...

Here is my prob, we found some windows 7 compatibility issue on the application we have created...

But, we have already found a solution to that problem.
Which is by typing in some commands on the command prompt environment...

The command looks something like this
" C:\Windows\system32\cscript.exe adsutil.vbs set W3SVC/AppPools/Enable32BitAppOnWin64 true "

Basically, I just want to automate this task and include in on the installation project. Where do i put those commands?

Any help would be greatly appreciated...thanks
Labels (1)
0 Kudos
(2) Replies
girishkatti123
Level 7

use LaunchApp function to automate you requirement.
For more details see help file how to use this function.
0 Kudos
Johannes_T
Level 6

You can add something like this to the function OnFirstUIAfter, which is called right after the files have been copied:

LaunchAppAndWait($yourCodeHere, WAIT)

I don't know where your adsutil.vbs file is located, but you might need to specify an absolute path.
0 Kudos