2015-06-01 233 views

回答

2

首先,您需要printJS.bat在同一个目录:

@echo off 
pushd "C:\directory_with_documents" 
for %%a in (*.pdf *.doc) do (
    call printjs.bat "%%~fa" 
) 

,并在开始更改目录。 请记住,如果系统上的语言与英语不同,printJS将使用可能失败的invokeverb函数。

相关问题