本文介绍了如何检查网络打印机是否已连接?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想检查我的网络打印机的连接.我用

I would like to check the connection of my networkprinter.I connected my printer with

Add-Printer -ConnectionName $Printer

现在想知道连接是否成功.我用

and now want to know if the connecting was succesfull. I tried it with

gwmi win32_printer -ComputerName $Printername

现在想把它放在一个 if 中,这样我就可以输出连接或未连接.

and now want to put it in a if so I can output connected or not connected.

感谢您的帮助.

推荐答案

你必须是这样的:

Add-Printer -ConnectionName $Printer
if((Get-Printer -Name $printer).PrinterStatus -eq "Normal"){
Write-host "Connection is successful"
}else{
 do something....
 }

这篇关于如何检查网络打印机是否已连接?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-09 05:47