在我的环境中,我有多个工作站(赢10),Xerox 3610通过网络连接.但我不确定,这些工作站的驱动程序安装的最佳实践是什么.根据我的经验和网络搜索,似乎“Xerox 3610 PCL6”驱动程序用于实现(通用?)PCL,而“Xerox 3610类驱动程序”用于为Xerox 3610打印机(或一般的Xerox打印机)实现(通用?)打印?).
我应该使用什么驱动程序?两者都有效.@H_403_4@然而,PCL驱动程序的问题在于,它为用户提供了更多的自由(错误)配置,例如,可以手动选择纸盘,也可以(部分)覆盖打印机配置.打印速度等问题也可能有所不同.
https://docs.microsoft.com/en-us/windows-hardware/drivers/print/v4-printer-driver
Printer sharing is a key value proposition item for Windows servers.@H_403_4@ The v4 printer driver model was designed to make sharing easier and@H_403_4@ more efficient by eliminating the need to manage drivers across@H_403_4@ processor architectures.
基本上,驱动程序更加通用,可以在x86(32位)和x86_64(64位)架构上运行.其他优点是增强了与UWP应用程序的兼容性以及更快的打印服务器驱动程序设置此外,这些驱动程序的功能往往比普通驱动程序少.
一个缺点是这些驱动程序不适合使用macOS.如果您运行混合环境并希望Mac通过打印服务器进行打印,那么最好使用Type 3打印驱动程序.
如果使用Type 4驱动程序并尝试使用LPD从macOS打印到Windows打印队列,则打印作业可能会无提示失败.如果在事件查看器中启用PrintService日志并查看管理日志,您将看到以下错误:
The document Print Document,owned by {user} ({IP address}),Failed to print on printer {Printer Name}. Try to print the document again,or restart the print spooler. Data type: RAW. Size of the spool file in bytes: 26114. Number of bytes printed: 26114. Total number of pages in the document: 0. Number of pages printed: 0. Client computer: \\{Print Server}. Win32 error code returned by the print processor: 2147500037. Unspecified error
在Windows Server上,您可以通过查看“打印管理”中的“驱动程序类型”列来判断您的驱动程序是类型3还是4.
获取非类驱动程序的最简单方法是单击“新驱动程序…”,然后单击“Windows Update”按钮.加载驱动程序列表后,所有类驱动程序都应该消失.如果您想要的驱动程序不在该列表中,您可能必须尝试从制造商处获取驱动程序,尽管它们可能只提供v4驱动程序.