in reply to Accessing COM Objects from Perl

If you are instantiating a COM object for IIS (using ActiveState PerlScript), you can simply use the $Server object to do so. Remember, ADO is really just a complex series of COM objects, so you would do is instead of:
my $rs = $Server->CreateObject("ADODB.Recordset");


You can do:


my $ea = $Server->CreateObject("Excel.Application"); #or any other sort of COM object reference #look in your registry to see what you have
If you are just looking for an object in a normal shebang script, then try CPAN / ActiveState documentation.