On Mon, 07 Feb 2005 10:35:39 -0500, the.noonings <[EMAIL PROTECTED]> wrote: > Robert wrote: > > >Here is the script: > > > >use strict; > >use warnings; > >use Mail::Sender; > > > ># run the program > >my @run1 = ( "M:\\Program Files\\Mincom\\MIMS Open > >Enterprise\\5.2.3.2\\bin\\msqupd.exe ", "ellprd" ); > > Just a guess, but try this: > Search and replace "Program Files" with "Program\ Files" > Search and replace "MIMS Open Enterprise" with "MIMS\ Open\ Enterprise"
Alternatively, surround the pathnames to the exes with quotes, which is what DOS usually prefers: my @run1 = ( "\"M:\\Program Files\\Mincom\\MIMS Open Enterprise\\5.2.3.2\\bin\\msqupd.exe\" ", "ellprd" ); -- Yoz