Reputation: 11
I want to retrieve document properties such as author, last edited by, etc using vbscript.
Is there a way to get the above info without using dsolefile extension ?
Upvotes: 1
Views: 184
Reputation: 116110
Well you could parse the file yourself, but Word documents are assentially structured storage files. You don't need to read them with dsOleFile, because you can treat them as any structured storage file. It is however convenient to use dsOleFile. Why don't you want to use it?
Upvotes: 1