> I want to know if I can open a dos command console and run a > command on > it (i.e. dir or cd $some_dir) with the Win32::Process module. I used > the following code but the command didn't get pass into the new dos > console that it opened.
If I remember correctly, dir and cd are built-in to the cmd shell. So you would have to do something like this for your command: cmd /c "cd somedir" cmd /c "dir somedir" Luke -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]