We're upgrading our printers, and we're not currently using GPOs to manage printers on our clients. (coming soon though).

But we've just started a new lease on some printers and we'd like remove the old printers, and swap the new ones. I'm not really familiar with writing VB code.

Basically, I'd like the code to go:

If Printer = \\printServer\printer0
Then
'remove printer
Set objNetwork = WScript.CreateObject("WScript.Network")
objNetwork.RemovePrinterConnection "\\PrintServer\printer0"

'add printer
Set WshNetwork = CreateObject("WScript.Network")
WshNetwork.AddWindowsPrinterConnection "\\PrintServer\Printer1"
WshNetwork.SetDefaultPrinter "\\PrintServer\Pritner1"

We have a whole series of printers to go through..so it would run bunch of IF THEN statements. We may tune it per group in the GPO, but thats yet to be decided.