我有程序使用'lpr'命令将文件发送到打印机。 我安装了Windows SDK 7.1。它在32位Windows 7系统中运行良好,但在64位Windows 7中无法正常工作。
Process proc = new Process();
proc.StartInfo.FileName = "lpr";
proc.StartInfo.WorkingDirectory = GlobalConstants.outBaseDir;
proc.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
proc.StartInfo.Arguments = " -S " + GlobalConstants.printerIP + " -P RAW " + filePath;
proc.Start();
它会抛出一个执行。
答案 0 :(得分:9)
我终于得到了我的问题的答案。
步骤1: 我必须启用“LPR端口监视器”。这可以通过“控制面板/程序和功能/打开或关闭Windows功能”来完成。在对话框中展开“打印和文档服务”。检查“LPR端口监视器”。
步骤2: 安装Windows SDK 7.1时。它会将lpr.exe和相关文件复制到“C:\ Windows \ winsxs \ amd64_microsoft-windows-p..ting-lprportmonitor_xxxx ...”。将文件lpr.exe,lprhelp.dll和lprmonui.dll复制到C:\ Windows \ sysWOW64文件夹中。
多数民众赞成!
参考:http://www.tomshardware.com/forum/240019-44-error-windows