Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Get a Total Page Count for All the Word Documents in a FolderContent of Get a Total Page Count for All the Word Documents in a Folder.vbsMD5 Hash: 0EDCC6EE9BC8427290761DE854499D43 |
||
Const wdStatisticPages = 2
strComputer = "." Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2") Set colFiles = objWMIService.ExecQuery _ ("ASSOCIATORS OF {Win32_Directory.Name='C:\Scripts'} Where " _ & "ResultClass = CIM_DataFile") Set objWord = CreateObject("Word.Application") objWord.Visible = True For Each objFile in colFiles If objFile.Extension = "doc" Then Set objDoc = objWord.Documents.Open(objFile.Name) intPages = intPages + objDoc.ComputeStatistics(wdStatisticPages) objDoc.Saved = True objDoc.Close End If Next Wscript.Echo "Total pages: " & intPages objWord.Quit | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |