Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Printer Software

Featured Replies

I am having real trouble finding a way to silently install the driver and software for an Epson R220 Printer, does anyone have any idea’s

any other options?

why do ya need em?

Maybe OSes have already been deployed and he'd like to deploy a package with the printer's driver WITHOUT having to reinstall Windows everywhere. Can nLite do this ? No. Then, no need to be rude... :)

Miller, have a package copy files around the printer driver's .INF in a temp directory.

Then, call a VBS custom action to do something similar to this :

dim WshShell, KYOCERA, PPath, PUser, PPass
set WshShell = CreateObject("Wscript.Shell")

KYOCERA = Split(Session.Property("CustomActionData"), ";")(0)
PPath = Split(Session.Property("CustomActionData"), ";")(1)
PUser = Split(Session.Property("CustomActionData"), ";")(2)
PPass = Split(Session.Property("CustomActionData"), ";")(3)

'Install the drivers.
'
CMD = "rundll32 printui.dll,PrintUIEntry /ia /m " & chr(34) & "Kyocera Mita FS-1900" & chr(34) & " /h " & chr(34) & "Kyocera" & chr(34) & " /f " & chr(34) & KYOCERA & "oemsetup.inf" & chr(34)

'Dont keep the (of course non-keypath) source files installed
'by the package in a temp directory.
'
CMD = CMD & " & rd /S/Q " & chr(34) & KYOCERA & chr(34)

'Connect to the printer.
'
CMD = CMD & " & net use " & PPath & " /user:" & PUser & " " & PPass

'Install it locally.
'
CMD = CMD & " & rundll32 printui.dll,PrintUIEntry /ga /n" & PPath & " /j" & chr(34) & "LanMan Print Services" & chr(34)
CMD = CMD & " & net stop " & chr(34) & "print spooler" & chr(34)
CMD = CMD & " & net start " & chr(34) & "print spooler" & chr(34)
CMD = CMD & " & sleep 5"

'Open the Spool, so to open the printer queue.
'
CMD = CMD & " & rundll32 printui.dll,PrintUIEntry /o /n" & PPath
CMD = CMD & " & sleep 15"

'Close the printer queue window.
'
CMD = CMD & " & taskkill /F /im rundll32.exe"

'Uninstall the locally-installed printer --drivers and rights
'to reinstall, this printer as others using the same drivers,
'will remain for all the users of the station.
'
CMD = CMD & " & rundll32 printui.dll,PrintUIEntry /gd /n" & PPath
CMD = CMD & " & net stop " & chr(34) & "print spooler" & chr(34)
CMD = CMD & " & net start " & chr(34) & "print spooler" & chr(34)

'Remove the net mapping.
'
CMD = CMD & " & net use " & PPath & " /d"

'Background task to kill the printer queue window, whatever happens.
'
WshShell.run "cmd.exe /c sleep 60 & taskkill /F /IM rundll32.exe", 2, False
WshShell.run "cmd.exe /c sleep 600 & taskkill /F /IM rundll32.exe", 2, False

'Launch the commands, in the right order.
'
WshShell.run "cmd.exe /c " & CMD, 2, True

set WshShell = Nothing

As you can see, in the case of this driver, there was a need to REALLY install an existing printer. I did so, and wrote code to uninstall the printer afterwards. The drivers remain on the system; this works.

Regards,

Natan

http://winner.windowsdream.com -- Windows Is Not Necessary for Everyone's RIS

http://dvdgen.windowsdream.com -- Burn your own complete and unattended Windows installer on a DVD

http://updater.windowsdream.com -- Auto-update your PC with freeware/opensource

http://ping.windowsdream.com -- Partimage Is Not Ghost

http://www.windowsdream.com -- Corporate homepage.

It would be better in this instance to run a script to map them off a print server much simpler.

Jim

It would be better in this instance to run a script to map them off a print server much simpler.

Jim

If only drivers didn't have to be installed, or if only our users were all admins... printers are a real problem here in my company. I'd be interested in any working solution enabling standard users (no admin, no power user) to install any new printer on their XP computers, even if drivers have to be installed.

Have found no other working solution so far.

Regards

Natan

If the drivers for the printer are stored on a print server they dont have to be admins. This is only a problem if everyone has their own printer.

Jim

  • Author

I actually want to install the drivers and software, the driver isn’t so much the problem it’s the software. Printer monitor, printing utilities ect I have tried a silent install, but nothing I tried seems to work

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.