RE: how to read header of messages on server using socket

2004-11-19 Thread adisegna
Hi Everyone, I have an excel spreadsheet that contains the itinerary of our traveling technicians. I would like to parse that info and be notified of an upcoming trip. For example: Say there is a trip coming up the Sunday after next. I would like to be warned 3 days in advance to (windows

Parsing Excel Spreadsheets for Itinerary notifications

2004-11-19 Thread adisegna
Oops sorry everyone... I forgot to change the subject line on the previous post. Hi Everyone, I have an excel spreadsheet that contains the itinerary of our traveling technicians. I would like to parse that info and be notified of an upcoming trip. For example: Say there is a trip coming

RE: Changing registry ACL?

2004-11-15 Thread adisegna
How do you compensate for the huge memory leak in Win32::Perms? When I run this script (which I don't know if it is correct) the memory climbs forcing me to kill the perl proccess. Anyone have an alternative means to get this to work? Thanks.. AD #!C:\perl\bin\perl use Win32::Perms; $Dir

Changing registry ACL?

2004-11-12 Thread adisegna
Does anyone know of a way to change the registry ACL on a registry key using Perl? Thanks AD -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/ http://learn.perl.org/first-response

RE: installing perl

2004-11-11 Thread adisegna
Hey all, I have a question about the below script I am writing/copying. #!\\server\perl net use w: \\server\perl use Win32::Registry; my $Register = Software\\INTEL\\LANDesk\\VirusProtect6\\CurrentVersion; my $hkey,SubKey; #Why is this needed?? $HKEY_LOCAL_MACHINE-Open($Register,$hkey)|| die

Poster's subject lines.

2004-10-30 Thread adisegna
Not to be a pain in the ass but can posters please use a subject line that better describes their topic. Help me and need help type subjects usually get deleted without a second thought... Thanks AD

RE: Editting the registry?

2004-10-27 Thread adisegna
I will get started on it. Thanks for the information Jenda. Arthur DiSegna Information Technology Group Security Identification Systems Corporation -Original Message- From: Jenda Krynicky [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 26, 2004 4:56 PM To: [EMAIL PROTECTED] Subject:

RE: Editting the registry?

2004-10-27 Thread adisegna
Hey Jenda, I am still trying to figure out the syntax/structure, etc of Perl but I figured it out. Here is my simple script.. #!path\to\perl\ use Win32::Registry $HKEY_LOCAL_MACHINE-DeleteValue($AutoShareWks); Win32::Registry::DeleteValue('HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSe

RE: Editting the registry?

2004-10-27 Thread adisegna
I have a Quick question about running the script as a logon script in Windows using Active Directory. How? When the user logs on the script is run local. Obviously, I need Perl installed on the server to interpret locally run scripts. If the user doesn't have Perl installed locally how will it

RE: Editting the registry?

2004-10-27 Thread adisegna
Perl2bat creates the batch file below. However, running it on my local machine does not delete the registry key. Is there anything I'm missing? @rem = '--*-Perl-*-- @echo off if %OS% == Windows_NT goto WinNT perl -x -S %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 goto endofperl :WinNT perl -x -S %0 %* if NOT

Editting the registry?

2004-10-26 Thread adisegna
I want to restore the default admin shares on a user's machine. I have to delete the following key from the registry. To restore the default hidden administrative shares, delete the AutoShareWks DWORD value in the following registry key, and then restart your computer:

RE: uninstall perlmodule

2004-10-23 Thread adisegna
http://aspn.activestate.com/ASPN/docs/ActivePerl-5.6/faq/ActivePerl-faq2.html#uninstall -Original Message- From: Bob Showalter [mailto:[EMAIL PROTECTED] Sent: Sat 10/23/2004 8:44 PM To: Adam Saeed; [EMAIL PROTECTED] Cc: Subject: Re:

RE: script how to interactive mode in telnet

2004-10-22 Thread adisegna
Hey guys, A few questions from a beginner. :) What does the \r in system(\r\n\r); do? Where can I find some info on the system function/method? Is it function or method? What is the proper terminology? And regarding all system (command)'s below is the parenthesis required around the quotations

RE: simple regular expression problem

2004-10-20 Thread adisegna
So \w means the first non word character. What about the ~ / before the (\w? And what does the + sign do? Is $buf a command? Thanks AD -Original Message- From: Bob Showalter [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 19, 2004 8:57 AM To: 'Khairul Azmi'; [EMAIL PROTECTED] Subject: