Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

Executing another prog in code

gelarimer
Beginner
235 Views

I would like to createan autorun CD with a short program, Setup.exe, that calls/executes a Windows Installer Package, Install.msi. However, not sure what statement to put into Setup.exe to execute Install.msi.Thefollowing code appears to be what I need: iret = SYSTEM(Install.msi). However, not sure.

Thank for any commentsinformation.

0 Kudos
1 Reply
TimP
Honored Contributor III
235 Views
If this is a Fortran SYSTEM function call, the argument is quoted such as iret=system("install.msi")
0 Kudos
Reply