Jump to content

Is there a way to get a list of files a program has opened?


Recommended Posts

This works with MS-Word:

$oWord = ObjGet("","Word.Application")

For $i = 1 To $oWord.Documents.Count
    ConsoleWrite( $oWord.Documents($i).Name  & @CRLF)
Next

and the same way in MS-Excel:

$oExcel = ObjGet("","Excel.Application")

For $i = 1 To $oExcel.Workbooks.Count
    ConsoleWrite( $oExcel.Workbooks($i).Name  & @CRLF)
Next
Edited by BugFix

Best Regards BugFix  

Link to comment
Share on other sites

Thanks for the info Kafu. I looked around on the thread, but the original script's download link is 404'd, and I can't run the other script mods that were posted for some reason. Can you explain how it works?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...