是否可以根据打印机信息搜索打印假脱机文件?

时间:2018-01-23 20:09:37

标签: windows powershell batch-file

Windows server 2012 r2包含扩展名为.spl和.shd的假脱机文件。有兴趣知道是否有任何方法可以在假脱机目录中搜索打印机的打印队列和该打印机的相关假脱机文件。

1 个答案:

答案 0 :(得分:0)

如果您准备每次都停止假脱机程序,那么只需创建一个批处理文件并添加:

net stop spooler 
del c:\path\to\shd_files\*.shd 
del c:\path\to\spl_files\*.spl 
net start spooler