标签: windows winapi
我想在Windows标准嵌入式系统上安装USB打印机而不使用Plug&播放功能,无需硬件向导。
要使用.inf文件安装打印机,请使用以下代码:
.inf
sprintf(c_Buffer, "rundll32 printui.dll,PrintUIEntry /ii /f %s", FileName); system(c_Buffer);
完成此功能后,我可以使用Windows向导添加打印机。
是否有办法同时使用此功能或类似功能安装USB打印机?