我在这一行中特别收到此错误:
# Calculate password using PwdMangler
$PwdMangler = Win32::OLE->new('PWDMangler.Mangler');
my $error1=Win32::OLE->LastError();
print "the error is $error1\n";
unless($password = $PwdMangler->Mangle($user , $password_plain))
{
print $log_file "Error occured in PwdMangler\n";
exit (1);
}
我收到以下错误:
the error is Win32::OLE
0.1709) error 0x80040154: "Class not registered"
can't call method 'Mangle' on an undefined values.
*之前这个 perl 脚本是在安装了 32 perl 的 32 位服务器上运行,但现在在 64 位服务器上安装了 64 位 perl。
我无法找出未注册的内容