Board logo

标题: [系统相关] 批处理设置默认打印机变量中的空格如何处理? [打印本页]

作者: yyuanstudio    时间: 2022-4-13 18:11     标题: 批处理设置默认打印机变量中的空格如何处理?

各位大佬,小弟在用批处理设置默认打印机。

我们的打印机名称安装完,默认是 HP PageWide MFP P57750 PCL 6 ,中间会有空格,有空格就无法设置默认打印机。请问大佬有方法解决吗?

这个是我写的:d:\printerlist.txt 里面保存了打印机列表信息,然后我通过P57750查找到对应的打印机名称:HP PageWide MFP P57750 PCL 6
  1. wmic path win32_printer get deviceid > d:\printerlist.txt
  2. for /f "tokens=* delims= " %%a in ('type d:\printerlist.txt ^| find /i "P57750"') do  rundll32 printui.dll,PrintUIEntry /y /n %%a
复制代码

作者: smss    时间: 2022-4-13 18:31

加双引号""
作者: yyuanstudio    时间: 2022-4-13 18:32

回复 2# smss


    变量加双引号试过,不行。 这样子的 “%%a”
作者: ygqiang    时间: 2022-4-13 21:03

回复  smss


    变量加双引号试过,不行。 这样子的 “%%a”
yyuanstudio 发表于 2022-4-13 18:32



    经过测试,你获取的变量%%a,后面带空格,所以命令无法执行。对比下面2个。
rundll32 printui.dll,PrintUIEntry /y /n "Microsoft XPS Document Writer"
rundll32 printui.dll,PrintUIEntry /y /n "Microsoft XPS Document Writer     "
作者: Batcher    时间: 2022-4-13 21:12

回复 4# ygqiang


这样就行了:
  1. @echo off
  2. for /f "tokens=2 delims==" %%a in ('wmic path win32_printer get deviceid /value ^| findstr /i "P57750"') do (
  3.     for /f "delims=" %%b in ("%%a") do (
  4.         rundll32 printui.dll,PrintUIEntry /y /n "%%b"
  5.     )
  6. )
复制代码

作者: yyuanstudio    时间: 2022-4-14 17:46

回复 5# Batcher


    大佬厉害啦,解决了我的问题。感谢感谢!!!




欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2