in reply to How to execute .exe from perl script

system() expects a string (or a list of strings) — not a mixture of whitespace-separated strings and barewords.

system('"C:\\Program files\\Borland\\SilkTest\\partner.exe" -q -r "C:\ +\Perfrom_Acce\\Investigate\\Investigate_ACCEPTANCE.t" WelcomePagesOn' +);

(note the single quotes around the entire command)

Replies are listed 'Best First'.
Re^2: How to execute .exe from perl script
by Rijwan (Novice) on Dec 03, 2008 at 13:31 UTC
    Thanks it works...... sorry for not posting question effetely