Re[2]: Does NET::SFTP work on Win32?

2006-05-16 Thread Christopher Taranto
Tuesday, May 16, 2006, 12:44:00 PM, you wrote: BN> I have not found the build to be stable IMHO. On Unix, it works great. BN> I use the secure dev kit with WS_FTP. It costs a few bucks but it is BN> stable and object oriented which give you a lot of flexibility. BN> BN> Let me know if you get it

RE: Checking a local password

2006-05-16 Thread Timothy Johnson
Try using the UserCheckPassword function of Win32::AdminMisc. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ng, Bill Sent: Tuesday, May 16, 2006 12:24 PM To: Paul Sobey; perl-win32-users@listserv.ActiveState.com Subject: RE: Checking a local password I

Re: Does NET::SFTP work on Win32?

2006-05-16 Thread A. Pollock
It does work. I can confirm. The order in which you install the modules is important. Install first Net::SSH::W32Perl, after that Net::SFTP. At least it finally worked for me in Perl 5.8. You may have to uninstall everything first then reinstall, starting with W32Perl, as I did. This is covered

RE: Does NET::SFTP work on Win32?

2006-05-16 Thread Bharucha, Nikhil
I have not found the build to be stable IMHO. On Unix, it works great. I use the secure dev kit with WS_FTP. It costs a few bucks but it is stable and object oriented which give you a lot of flexibility. Let me know if you get it working. Since my needs are for work I did not feel comfortable r

RE: Checking a local password

2006-05-16 Thread Ng, Bill
I have a script that sets the local admin password, but it can't read it, it's encrypted. Bill -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paul Sobey Sent: Tuesday, May 16, 2006 2:29 PM To: perl-win32-users@listserv.ActiveState.com Subject: Checking

RE: Does NET::SFTP work on Win32?

2006-05-16 Thread Timothy Johnson
I think you would need to have an ssh server running on your Windows box first, but I haven’t tried it.   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, May 16, 2006 8:45 AM To: perl-win32-users@listserv.ActiveState.com Subject: Doe

Checking a local password

2006-05-16 Thread Paul Sobey
I have a requirement to test the local admin password in my startup script to make sure it isn't one of several defaults people have been setting. What's the best way to do this? Ideally I'd like a direct way to call LogonUser() - has anyone done this via Win32::API? Cheers, Paul ___

Does NET::SFTP work on Win32?

2006-05-16 Thread robert . w . sturdevant
Hi all,   I have a perl ftp client that connects to IIS and I need to update the client to use a secure means of transfer to a SSH/SSL server. All I need to do is open, login, send, get, and size for files on a remote box. I have net::sftp and net::ssh::win32 and other associated modules

Perl NLS?

2006-05-16 Thread h . wilder
Hi there, does Perl have national language support? I want to sort an array containing german characters. In english my testprog looks like this: @countries = ( "germany","switzerland","austria" ); foreach $country (sort @countries) { print "$country\n"; } and produces: austria