将打印目录中所有文件(.pdf 和 .docs)的批处理文件
Batch file that will print all files (.pdf's and .docs) in a directory
运行 Win7,我需要一个批处理文件来打印特定目录中的所有 .doc 和 .pdf 文件。非常感谢任何帮助!
首先,您需要 printJS.bat 在同一目录中:
@echo off
pushd "C:\directory_with_documents"
for %%a in (*.pdf *.doc) do (
call printjs.bat "%%~fa"
)
并更改开头的目录。
请记住,printJS 使用 invokeverb 函数,如果系统上的语言不同于英语,该函数可能会失败。
运行 Win7,我需要一个批处理文件来打印特定目录中的所有 .doc 和 .pdf 文件。非常感谢任何帮助!
首先,您需要 printJS.bat 在同一目录中:
@echo off
pushd "C:\directory_with_documents"
for %%a in (*.pdf *.doc) do (
call printjs.bat "%%~fa"
)
并更改开头的目录。 请记住,printJS 使用 invokeverb 函数,如果系统上的语言不同于英语,该函数可能会失败。