Norrgard, Nate wrote: > I need to have this password passed in before the command will execute. I then want > to move the next command, which will prompt for a password, etc.
Depending on the program, I've been able to get away with this in the past. I think it was W2k, it might have been NT4. #################### open(PROG,"| my.program.exe") || die "Could not open a pipe to my.program.exe!\n $^E\n$!\n"; print PROG "password\n"; ####################