Install Printer Driver Command Line

Epson lx 300 ii driver for windows 7. Moreover, it is also a good thing to know that the printer offers you several paper paths.

Jul 07, 2016  Is it possible to install.inf files/drivers via command prompt? Or is there a way I can automate the.inf files to install when I login into a windows 7 pc? [SOLVED] Install INF file From CMD - IT Programming - Spiceworks. Installing a Network Printer via Command Line. Recently I had to install a printer on a lot of workstations in a short amount of time. Server data test drivers 32. Install Network Printers Via Batch File or Command Line in Windows 7/8 and Server 2008 Posted November 21, 2013 by Jimmy S in Batch file programming, Windows installation, Windows networking As a desktop administrator, I like to automate as many tasks as possible. Installing a driver(.inf) file from command line. I need to install a driver file(.inf file) from command line. Which command i need to use.? I know i have many other method for installing a.inf file, but i must install this from command line. Please help me Thanks in advance. Command-line driver inf.

Learning has never been so easy!

Adding a network printer from the command line (or bat file)
@Echo Off
REM Change COMPUTERPRINTER by your printer's UNC

REM Add printer
rundll32 printui.dll,PrintUIEntry /in /nCOMPUTERPRINTER

Install Printer Driver Hp Officejet

REM Set printer as default
rundll32 printui.dll,PrintUIEntry /y /nCOMPUTERPRINTER

Work on:
Windows Server 2008 R2
Windows Server 2008
Windows Server 2003
Windows 7
Windows Vista
Windows XP
Windows 2000

Where Are Printer Drivers Stored

Using VBS script
Set WshNetwork = CreateObject('WScript.Network')
WshNetwork.AddWindowsPrinterConnection 'PrintServCanon'
WshNetwork.SetDefaultPrinter 'PrintServCanon'

11 Comments

List Installed Printer Drivers Command Line

  • Mace
    hsc5775 Dec 13, 2012 at 03:09pm

    thx for share the script

  • Datil
    Merryworks Dec 13, 2012 at 03:13pm

    Interesting script.

    Mar 17, 2011  100 hp Yamaha 4 stroke outboard motor in pretty good shape xl shaft remote control power tilt good prop I have no idea on hours not a guide motor runs excellent. Gets my 20' Willie Predator to around 38 mph. Got an extra cdi unit It is set up for prop but I also have a jet pump for it. I'll try to get pictures soon. Yamaha 4 stroke outboard motors. YAMAHA 100 HP 4-STROKE 100 HP Model: F100D. [Product Type: Engine] Product Specifications Outboard Outboard Engine Type 100 HP 4-STROKE Lubrication Wet sump Fuelinduction Electronic Fuel Injection Trim Power Trim and Tilt. Three Yamaha four-stroke outboards, the Yamaha V MAX SHO® VF200, the Yamaha V MAX SHO® VF225 and the Yamaha. 100hp - f100betl The F100B is a highly reliable state-of-the-art model armed with original Yamaha four stroke technology and know-how gathered from nearly 40 years of experience in the outboard motor industry. Origins of the engine aside, the Yamaha F100D outboard motor is fairly unique because it slots neatly between the lighter BF90 and bulked-up F115A. It may not have the torque of the bigger-displacement Suzuki DF100, but then neither does it have the weight. 1-16 of 83 results for '100 hp yamaha 4 stroke outboard'. 100% New aftermarket unit built to meet OEM specifications. Big-Autoparts Outboard Impeller Water Pump Repair Kit for Yamaha 75-100HP Four Stroke F75 F80 F90 F100 Replace Yamaha 67F-W0078-00-00, Sierra 18-3451, GLM 12275.

  • Ghost Chili
    Nick42 Dec 17, 2012 at 09:39pm

    Will have to give this a try.

  • Tabasco
    Tom2338 Nov 17, 2013 at 08:04pm

    This is really just adding a shared printer. When I think 'network' printer, I think IP, not shared. A shared printer is basically a 'print server' (yes, even a desktop pc can be a print server).

  • Anaheim
    jwilliams85 Sep 29, 2014 at 03:46pm

    This worked great, thank you very much. I can drop this on a shared drive and run it from each computer for seamless adding of printers.

  • Pimiento
    brockjantke Feb 16, 2015 at 11:03pm

    how would we go having this vbscript prompt for a domain username and password

  • Pimiento
    David1126 Aug 1, 2016 at 05:01pm

    Thanks for this! Made a project I am working on a lot simpler

  • Pimiento
    treyh2 Mar 8, 2017 at 10:12pm

    My server is protected by network credentials; is there anyway this will interfere with the access?

  • Pimiento
    petervanborg May 3, 2018 at 11:36pm

    Life saver! I needed a process to backup files/printers on old PC's to be moved to a new PC. The backup screens for networked only printers.


    Backup
    SETLOCAL ENABLEDELAYEDEXPANSION
    for /f 'tokens=2 delims' %%a in ('wmic printer get name /value') do (
    set printer=%%a
    if defined printer (
    if '!printer:~0,2!'' (
    echo !printer! >> 'U:move_backupprinters.txt'
    )
    )
    )

    Restore
    IF EXIST U:move_backupprinters.txt (
    ECHO Installing Printers
    for /f 'delims=' %%i in (U:move_backupprinters.txt) do (
    echo added printer %%i
    rundll32 printui.dll,PrintUIEntry /in /n%%i
    )
    )

  • Pimiento
    Trithum1364 May 22, 2018 at 09:39am

    @Echo Off
    REM Change COMPUTERPRINTER by your printer's UNC

    REM Add printer
    rundll32 printui.dll,PrintUIEntry /in /nengn-pc05EPSON L360 Series

    REM Set printer as default
    rundll32 printui.dll,PrintUIEntry /y /nengn-pc05EPSON L360 Series

    --------------
    input null ????
    EPSON L360 Series

    help .,pl

  • Pimiento
    KARTHIK6135 Aug 28, 2018 at 10:30am

    How to run the command to a remote computer, As it can be added for very user / particular user in remote computer.