The driver of the printer must be installed on the server by: 1. Open printers 2. File, server properties, drivers 3. Make sure that the driver exists, if not add the driver. @Echo off REM this command file will add a network printer to a computer remotely REM the parameters are: REM 1 - the name of the computer to which the network printer is to be added REM 2 - the UNC name of the printer to be added REM for example, to add the printer called ThePrinter that is shared from the computer PrintServer REM to the computer called TheClient: REM key this command in a Command Prompt window: REM addglobalprinterremotely theclient printserver\theprinter REM add the specified printer to the specified computer @Echo On rundll32 printui.dll,PrintUIEntry /ga /c\\%1 /n\\%2 REM Restart Spooler