Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Shqipetari

    Windows - Open an html file in a window from script

    I wrote a similar script lately and found this code to work very well. use Win32::OLE; $outputFile = "$fileName.html"; $IE = Win32::OLE->new("InternetExplorer.Application") || die "Could not start IE"; $IE->{visible} = 1; $IE->Navigate($outputFile);
  2. Shqipetari

    Win32::TieRegistry Question

    I am trying to write a script that will parse certain keys from offline registry files (i.e. SAM, SYSTEM, SOFTWARE, and NTUser.dat files). I have stored these files in my local drive under: C:\regfiles\ It seems to me that by default this module points to the systems registry files. Is there...

Part and Inventory Search

Back
Top