Re: Win32::AdminMisc module on linux

2002-12-26 Thread Kevin Pendleton
Dave Roth <[EMAIL PROTECTED]> writes: > I am not aware of any authentication modules that would do what you > are looking for. However years ago there was a groovy open source > library that did interact with an NT domain controller for the sake > of authentication. I had modified an old version o

Re: Net::Telnet on Win2K

2002-11-27 Thread Kevin Pendleton
John, The problem is outlined in the Net:Telnet documentation. The "loads of gibberish" is ANSI terminal escape characters. I haven't worked with that exact telnet application, but some allow you to turn ANSI off and on http://search.cpan.org/author/JROGERS/Net-Telnet-3.03/lib/Net/Telnet.

RE: Remotely adding a machine to a domain

2002-08-30 Thread Kevin Pendleton
Specifically netdom.exe found at: ftp://ftp.microsoft.com/reskit/nt4/x86/netdom_x86.exe allows you to add NT workstations to the domain. For example you could feed a bunch of workstations into a script that took each box as $host and run the following line from the domain controller. I would

Re: Disabling Anonymous FTP

2002-04-04 Thread Kevin Pendleton
ot;} = [ "0x", "REG_DWORD" ]; $test = $remoteKey->{"/AllowAnonymous"}; if ($test eq $remoteData){ print "Update successful at $host\n";} else{ print "Failed to update $host. Logging Error...\n";

Disabling Anonymous FTP

2002-03-29 Thread Kevin Pendleton
nyone have any ideas on how I can automate this? I want to keep the FTP service running, just get rid of the anonymous access. Thanks for your help, I really enjoy this list. Kevin Pendleton _ Get your FREE download of MSN Explor

Re: net::telnet

2002-02-18 Thread Kevin Pendleton
you can also change the next 5 lines to: $telnet->login($user, $pass); # cmd also includes the return so you don't need the \n $line = $telnet->cmd("dir"); print $line; I don't have net::telnet installed at home so I couldn't test it for errors, so I went from me

Win32 module in UNIX

2002-01-31 Thread Kevin Pendleton
you have it. Thanks in advance... Kevin Pendleton _ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp. ___ Perl-Win32-Admin mailing list [EMAIL PROTECTED] To

TieRegistry and REG_BINARY (w/o html)

2001-12-31 Thread Kevin Pendleton
Sorry about the Rich Text Formatted message that I just sent... I am trying to write a script that adds the default settings for a program to the registry. Most of the settings are REG_DWORD and work great. However, one of the settings is for the password and is REG_BINARY. I can not seem t

TieRegistry and REG_BINARY

2001-12-31 Thread Kevin Pendleton
I am trying to write a script that adds the default settings for a program to the registry.  Most of the settings are REG_DWORD and work great.  However, one of the settings is for the password and is REG_BINARY.  I can not seem to replicate the correct value for the password using either the SetVa