I hope somebody can help me with this.
I am trying to use OLE to load a 'Scripting.FileSystemObject' object to get at a file's version. All is well when I run this as a pure script, but when bundled inside a pp built exe, I get an error.
I have seen that some other people have asked questions along these lines, but I was unable to find any resolutions out there?
CODE:
use Win32::OLE ;
sub getVersion($){
return undef unless defined $_[0] ;
my $vbsObject = Win32::OLE->new('Scripting.FileSystemObject') ;
my $vbsFile = $vbsObject->getFile("$_[0]") ;
return $vbsObject->GetFileVersion($vbsFile->{'Path'}) eq '' ? unde
+f : $vbsObject->GetFileVersion($vbsFile->{'Path'}) ;
}
ERROR:
Can't load 'C:\DOCUME~1\dcooper\LOCALS~1\Temp\par_priv.2564.tmp\nDCEaSeL9M.dll' for module Win32::OLE: load_file:The specified procedure cou
ld not be found at D:/cpanrun/build/5-8-0/lib/DynaLoader.pm line 229.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.