I tried the following code

use strict; 
use warnings;

use Term::ReadPassword::Win32 qw(read_password);

my $pw = read_password('pw: ');
print "pw $pw\n";
my $x = <STDIN>;
print "x: $x\n";

It indeed asks for a password and does not echo the answer but then it skips over the <STDIN> that follows it. I guess this is a bug in Term::ReadPassword::Win32 so I wonder if there is another module that works well on Windows?

link|improve this question

54% accept rate
4  
perlmonks.org/?node_id=886306 reports the same issue and provides an alternate read-password implementation using Term::ReadKey. The underlying issue is this bug in Win32::Console, which can be worked around by reopening STDIN and/or STDOUT. – nandhp Jan 18 at 14:20
@nandhp perfect. Thanks. – szabgab Jan 18 at 14:26
@nandhp You should post your comment as a solution. – JRFerguson Jan 18 at 14:48
feedback

2 Answers

http://www.perlmonks.org/?node_id=886306 reports the same issue and provides an alternate read-password implementation using Term::ReadKey. The underlying issue is this bug in Win32::Console, which can be worked around by reopening STDIN and/or STDOUT.

link|improve this answer
feedback

Try adodb and ldap installation method

http://adodb.sourceforge.net/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.