Prevent network printers from reinstalling themselves

M

Miles

I've deleted unwanted printers from Control Panel -> Printers and Faxes.

I've unchecked "Automatically search for network folders and printers"
in explorer files and folders advanced settings.

Yet, every time I restart the PC, the unwanted printers are back again.

How can I stop this?
 
M

Miles

Are these networked printers? Were the printers originally added using a
script? Is there a logon script that adds these for you?

Yes they are network printers.

It could well be a logon script. How do I find out? Can I stop the
script from running?
 
M

Miles

You will need to ask your network administrator.

:)
If *they* were any use I wouldn't be posting here in the first place...

Anyway, I've sort of resolved my issue. I've found a quick and dirty vbs
script to run at startup, which removes the unwanted printers. There's
probably a much more elaborate way to achieve this, but this works for
me.

In case it will help anyone else, here is the script:

Option Explicit
Dim objNetwork, strUNCPrinter
strUNCPrinter = "\\[server name]\[printer name]"

Set objNetwork = CreateObject("WScript.Network") WScript.sleep 20000
objNetwork.RemovePrinterConnection strUNCPrinter
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top