Hi,
I want to do following operations:
1. Execute exe from perl script.
I am using following code:
system ("start \.\.\\Client\.exe");
Perl script is one directory up the directory where Client.exe is present.
My problem is that the it starts the client.exe with error. Actually the libraries that i have called in the exe program are not getting executed( or called).
I compiled Winbatch script to get Client.exe.
2. Open Outlook using perl script.
system ("start C:\\Program Files\\Microsoft Office\\outlook\.exe");
It gives an error saying system can not find the file "C;\Progrm".
Even if I use
system ("start C:\\Program\s Files\\Microsoft\sOffice\\outlook\.exe");
I gives an error: system can not find the file
"C;\ProgrmsFiles\MicrosoftsOffice\outlook.exe" .
Any direction to solve the problem would ba a great help.