[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

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

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

我们的打印机名称安装完,默认是 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
复制代码

加双引号""

TOP

回复 2# smss


    变量加双引号试过,不行。 这样子的 “%%a”

TOP

回复  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     "

TOP

回复 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. )
复制代码
我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

回复 5# Batcher


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

TOP

返回列表