bbimis
asked on
how would i do this - put the name of document and its statics into an excel file
how would i go about rather it is powershell, vbscript, autoit (i don't have a compiler for c++ or any language like that)
i'm wanting to parse the file>properties>advanced properties then characters with spaces count into a spreadsheet
so its something like this
title count
jan23-2016 5412
can it be done with powershell? if so how?
or any other scripting language?
Thanks!
i'm wanting to parse the file>properties>advanced properties then characters with spaces count into a spreadsheet
so its something like this
title count
jan23-2016 5412
can it be done with powershell? if so how?
or any other scripting language?
Thanks!
ASKER
Well I'm wanting to take all documents on desktop and read the filename, then the statistics ad stated above into an excel file. Basically to make an invoice for transcription. . So once they are parsed then the document is moved to a complete folder. I just haven't a clue how to do it and what scripting language to use.
Sure, this is doable in a VBScript approach.
What columns do you want in the output file? I would suggest creating it as a comma delimited file, which can then easily be opened in Excel.
I assume Word will be installed on the computer you need to do this on?
~bp
What columns do you want in the output file? I would suggest creating it as a comma delimited file, which can then easily be opened in Excel.
I assume Word will be installed on the computer you need to do this on?
~bp
And where would you like the output file written to?
~bp
~bp
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
wow, this will do the trick. You happen to know any good books to learn vbscript or online resources?
I do have a few links and will share them with you shortly, headed out just now...
~bp
~bp
Here are some links I have bookmarked, some more useful that others, but take a look and see if any help you get going. There are books for purchase as well, google will turn up options there.
Tutorials
http://www.softwaretrainingtutorials.com/vbscript.php
http://www.academictutorials.com/vbscript
http://www.w3schools.com/asp/vbscript_default.asp
General reference
http://ss64.com/vb/
http://www.w3schools.com/asp/vbscript_ref_functions.asp
http://www.devguru.com/technologies/vbscript/home
http://msdn.microsoft.com/en-us/library/t0aew7h6%28VS.85%29.aspx
http://msdn.microsoft.com/en-us/library/6kxy1a51%28VS.85%29.aspx
Sample Scripts
http://technet.microsoft.com/en-us/scriptcenter/default.aspx
http://www.computerperformance.co.uk/vbscript/index.htm
http://www.activexperts.com/activmonitor/windowsmanagement/adminscripts/
http://www.rgagnon.com/topics/wsh-vbs.html
http://www.wisesoft.co.uk/scripts/vbscript.aspx
http://www.vbsedit.com/scripts/default.asp
http://www.activexperts.com/activmonitor/windowsmanagement/adminscripts/
http://www.rlmueller.net/index.html
~bp
Tutorials
http://www.softwaretrainingtutorials.com/vbscript.php
http://www.academictutorials.com/vbscript
http://www.w3schools.com/asp/vbscript_default.asp
General reference
http://ss64.com/vb/
http://www.w3schools.com/asp/vbscript_ref_functions.asp
http://www.devguru.com/technologies/vbscript/home
http://msdn.microsoft.com/en-us/library/t0aew7h6%28VS.85%29.aspx
http://msdn.microsoft.com/en-us/library/6kxy1a51%28VS.85%29.aspx
Sample Scripts
http://technet.microsoft.com/en-us/scriptcenter/default.aspx
http://www.computerperformance.co.uk/vbscript/index.htm
http://www.activexperts.com/activmonitor/windowsmanagement/adminscripts/
http://www.rgagnon.com/topics/wsh-vbs.html
http://www.wisesoft.co.uk/scripts/vbscript.aspx
http://www.vbsedit.com/scripts/default.asp
http://www.activexperts.com/activmonitor/windowsmanagement/adminscripts/
http://www.rlmueller.net/index.html
~bp
I'd use VBA for this.
What is the trigger for adding to / updating the spreadsheet?
How many documents? How many people are involved in this?