I wrote a vbs to remove and install a printer using printui. The script removed the printer and then popped an "Operation could not be completed" error. I'm not familiar with installing printers. Will somebody please help? Also, I've the inf file in c:\windows\inf\OEMSETUP.inf and the other files (kyofonts2.dll, KYORES2.dll, and KMFS3800.GPD) in c:\windows\system32\spool\drivers\w32x86. Will somebody please let me know if I have them in the right location? Thanks!

If FSO.FileExists("C:\windows\inf\OEMSETUP.inf") Then
prPort = " ""Kyocera Mita"" "
prName = " ""Kyocera Mita"" "
shareName = "SC" & MYSCNUM & "KM"
model = " ""Kyocera Mita FS-3800"" "
CMD = "rundll32 printui.dll,PrintUIEntry /if /n " & prName _
& " /f c:\windows\inf\OEMSETUP.inf /r " & prPort _
& " /m " & model & " /Z " & shareName & " /q"
WshShell.run CMD