Re: File property values

2005-08-22 Thread Сергей Черниенко
Здравствуйте Matt, Friday, August 19, 2005, 9:35:42 PM, Вы написали: MR Hello all, MR I have created an Excel workbook via the OLE of all my music files and I MR was wondering how I can pull the summery properties from the each file, like MR the Song title, Artiest and Track Number. MR All

spawn a process

2005-08-22 Thread Ken Perl
I want to implement a module in perl to do the same thing as the tool PsExec (http://www.sysinternals.com/Utilities/PsExec.html) does, which is used to copy and run a program on remote windows, a very cool tool! So, I want to know if anyone has done this before. and If I do the implement from

copy and run a program on remote windows

2005-08-22 Thread Ken Perl
I want to implement a module in perl to do the same thing as the tool PsExec (http://www.sysinternals.com/Utilities/PsExec.html) does, which is used to copy and run a program on remote windows, a very cool tool! So, I want to know if anyone has done this before. and If I do the implement from

panic: COND_INIT (1450).

2005-08-22 Thread Ross Draper
? Hi guys I wrote a snmp poller app in perl 5.8.6(Build 811) on Win32. All was fine, however I needed to speed things up dramaticaly so I looked at doing parrallel polling using threads. Essentially I have a controlling process which feeds device names to a variable number of worker

RE: File property values

2005-08-22 Thread Aaron.Tesch
You can use the Shell Object. http://www.microsoft.com/technet/scriptcenter/guide/sas_fil_lunl.mspx Example in PERL --- use strict; use warnings; use Win32::OLE; my $fileName = PutFileNameHere; my $myDir = PutDirectoryNameHere; my $objShell; #create instance of the

RE: Creating outlook calendar items

2005-08-22 Thread Ken Cornetet
It really doesn't need a module - using the outlook object model is pretty simple. Here's something I whipped up to put some training in my calendar this year. use strict; use Win32::OLE; use Win32::OLE::Const 'Microsoft Outlook'; use Win32::OLE::Variant; use Date::Manip; $ENV{TZ} = EST5EST;

Re: perl2exe and the Missing Files: Win32::ActAcc and Dlls

2005-08-22 Thread Veli-Pekka Tätilä
Hi Sisyphus, And sorry for the delay as I did some experiments rather than doing a rushed reply, hehe. Firstly, I tried to track down the cause of the problem and repeatedly ran a small test script for perl2exe adding in a module at a time and using one function per module in the script. I had

Re: File property values

2005-08-22 Thread Reinhard Pagitsch
Chaddai wrote: Matt Ross a écrit : OK I downloaded the script that you referenced and ran the following code ( found the snippet in another e-mail) it does not return any errors. The Sites documentation states that it the DSOFile only works on office files. So I set it up to pull from an

RE: File property values

2005-08-22 Thread Ross Matt-QMR000
Chaddai, Thanks for responding. I was able to get the data using the WMA:Tag Module very easily. So updating your Module any be a redundant effort. Thanks again Matt Ross -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Reinhard Pagitsch Sent: Monday,

RE: Issue with POST

2005-08-22 Thread Jerry Kassebaum
I tried to install LWP::RobotUA with ppm. Am I correct that it is not available in a Windows ME format, or did I just do something wrong? I searched for RobotUA and came up with nothing. * jzaba wrote: I have some issues with POST I need to create spider for this URL.

Re: perl2exe and the Missing Files: Win32::ActAcc and Dlls

2005-08-22 Thread Don VanSyckel
I've had a similar issue with perl2exe. The issue is use is executed at run time and the modules can't be found. Try require instead of use, it causes the modules to be 'loaded at compile time. Don Veli-Pekka Tätilä wrote: Hi Sisyphus, And sorry for the delay as I did some experiments

Re: spawn a process

2005-08-22 Thread Chris Wagner
I just happened to recently have a similar question. Example 9.14: wmi_PS.pl (http://http://www.roth.net/perl/scripts/scripts.asp?WMI_PS.pl) Example 9.15: wmi_Kill.pl (http://http://www.roth.net/perl/scripts/scripts.asp?WMI_Kill.pl) Example 9.16: wmi_Run.pl

Re: perl2exe and the Missing Files: Win32::ActAcc and Dlls

2005-08-22 Thread Sisyphus
- Original Message - From: Veli-Pekka Tätilä So here's yet another minimal test script that should fail nicely when you run it as an exe but works fine as a script file (dot plx): use strict; # As usual. use bytes; use Win32::OLE; # Required by Win32::ActAcc. use Win32::ActAcc;

Re: perl2exe and the Missing Files: Win32::ActAcc and Dlls

2005-08-22 Thread Sisyphus
- Original Message - From: Don VanSyckel [EMAIL PROTECTED] To: perl-win32-users@listserv.ActiveState.com Sent: Tuesday, August 23, 2005 9:45 AM Subject: Re: perl2exe and the Missing Files: Win32::ActAcc and Dlls I've had a similar issue with perl2exe. The issue is use is executed at