windows-7 – 如何在Windows 7中使用“net use”进行打印机连接?

前端之家收集整理的这篇文章主要介绍了windows-7 – 如何在Windows 7中使用“net use”进行打印机连接?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我一直在使用“net use”成功连接到 Windows 7上的网络共享驱动器.
现在,我正在尝试将Windows 7计算机连接到Windows 7上的共享打印机.

所以,在客户端计算机上,我已经完成了GUI,看看一切正常.然后,我断开了打印机并尝试使用命令行执行相同的操作:

net use \\FRONTPC\FCPrinter

它说:

The command completed successfuly.

但是我没有在“设备和打印机”下看到打印机.那么,打印机在哪里?我究竟做错了什么?

ss64开始:

“NET USE command can map a network printer to an LPT port (for DOS type applications that print to a port.) but this does not add the printer to the Control Panel GUI.”

如果您仅限于使用cmd,则可能需要使用Rundll32 printui.dll,PrintUIEntry.

如果您可以使用PowerShell,您可以执行以下操作:

$prnt = [wmiclass]”Win32_Printer” $prnt.AddPrinterConnection(“\\PrintServer\PrintShare”)

原文链接:https://www.f2er.com/windows/367828.html

猜你在找的Windows相关文章