"RUNDLL32 PRINTUI.DLL,PrintUIEntry /Sr /n... Operation could not be completed (error 0x0000000c)

user2531854 picture user2531854 · Jun 28, 2013 · Viewed 7.2k times · Source

I stored my printer settings in a .dat file with this command:

RUNDLL32 PRINTUI.DLL,PrintUIEntry /Ss /n "SATO CG408" /a "c:\INI\small-tag.dat

I'm then trying to restore the printer setting in VB.net with this command (passing in my ini values).

Call Shell("RUNDLL32 PRINTUI.DLL,PrintUIEntry /Sr /n " & """" & My.LabelPrinter & """" & " /a " & """" & My.MediumTag & """")

I get the following error: Operation could not be completed (error 0x0000000c).

It works on my developer machine but when I install the application on a client's computer it comes up with that error. Any ideas?

Answer

user2531854 picture user2531854 · Jun 30, 2013

I figured it out. I need to use the existing driver on the client's computer. So the command would use the " u " flag.

Call Shell("RUNDLL32 PRINTUI.DLL,PrintUIEntry /Sr /n " & """" & My.LabelPrinter & """" & " /a " & """" & My.SmallTag & """" & " u ")