You will need to ask your network administrator.

Signature
Alan Morris
Windows Printing Team
Search the Microsoft Knowledge Base here:
http://support.microsoft.com/default.aspx?scid=fh;[ln];kbhowto
This posting is provided "AS IS" with no warranties, and confers no rights.
>> Are these networked printers? Were the printers originally added using a
>> script? Is there a logon script that adds these for you?
[quoted text clipped - 3 lines]
> It could well be a logon script. How do I find out? Can I stop the
> script from running?
Miles - 28 Apr 2006 19:35 GMT
> 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