Curtis360it
IS-IT--Management
Is this how I would initiate the following from VBA?
Shell(copy /b filename \\servername\printername)
Shell(copy /b filename \\servername\printername)
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.
Set fso = CreateObject("Scripting.FileSystemObject")
fso.CopyFile yourfile, "\\yourserver\yourfolder" & yourfile, True
x = "COPY /B C:\Escript\output.prn \\Sheronc\HPDeskje"
Debug.Print x
Call Shell(x, vbHide)