Enumerate and then remove all networked printers



Does this script look right to enumerate which network printers are attached to a user's profile and then delete them?
(I'll be able to check it out after the weekend when the school opens back up. But I thought I'd also check in here in the meantime).

CODE
---------

On error resume next
Set WshNetwork = WScript.CreateObject("WScript.Network")
Set oDrives = WshNetwork.EnumNetworkDrives
Set oPrinters = WshNetwork.EnumPrinterConnections
For i = 0 to oDrives.Count - 1 Step 2
WshNetwork.RemoveNetworkDrive oDrives.Item(i),true,true
Next
For i = 0 to oPrinters.Count - 1 Step 2
WshNetwork.RemovePrinterConnection oPrinters.Item(i+1)
Next

.