Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
'This script will open all word docs in a directory and print them.
'Must specify directory name WITHOUT path
'Default printer must be set to desired printer
'djtech2k sportsfan@teamarsenal.net
strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colFiles = objWMIService. _
ExecQuery("Select * from CIM_DataFile where Path = '\\docs_folder_name\\'")
For Each objFile in colFiles
Set objWord = CreateObject("Word.Application")
Set objDoc = objWord.Documents.Open(objFile.Name)
objDoc.PrintOut()
objWord.Quit
Next