Advertisement
Guest User

Untitled

a guest
Sep 4th, 2015
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. Here is how I solved it.
  2.  
  3. The PrintService event logs with the failure was referencing InfPath C:\Windows\System32\DriverStore\FileRepository\hpcu115v.inf_amd64_neutral_f6a5b51fb5c5ab11\hpcu115v.inf. I checked that path and there was only 2 files in that directory, which isn't a complete installation. I took full permissions of the folder and deleted it. Attempting to install the driver still failed.
  4. I validated the UPD 5.3.1 PS driver was not already installed by using the Print Management console.
  5. After checking c:\windows\inf\setupapi.dev.log, I found the following:
  6. >>> [Import Driver Package - C:\Windows\system32\spool\{75E26786-6C98-4443-9E2F-BC41BC50486D}\hpcu115v.inf]
  7. >>> Section start 2012/03/13 11:07:39.013
  8. cmd: C:\Windows\System32\spoolsv.exe
  9. sto: Importing driver package into Driver Store:
  10. sto: Driver Store = C:\Windows\System32\DriverStore (Online | 6.1.7601)
  11. sto: Driver Package = C:\Windows\system32\spool\{75E26786-6C98-4443-9E2F-BC41BC50486D}\hpcu115v.inf
  12. sto: Architecture = amd64
  13. sto: Locale Name = neutral
  14. sto: Flags = 0x0000000C
  15. ! sto: Driver package 'hpcu115v.inf' already exists in Driver Store:
  16. ! sto: Filename = C:\Windows\System32\DriverStore\FileRepository\hpcu115v.inf_amd64_neutral_f6a5b51fb5c5ab11\hpcu115v.inf (oem52.inf)
  17. sto: Imported driver package into Driver Store:
  18. sto: Filename = C:\Windows\System32\DriverStore\FileRepository\hpcu115v.inf_amd64_neutral_f6a5b51fb5c5ab11\hpcu115v.inf
  19. sto: Time = 47 ms
  20. <<< Section end 2012/03/13 11:07:39.066
  21. <<< [Exit status: SUCCESS]
  22. Interesting that it still thinks the driver exists when that FileRepository path does NOT exist. After reading Remove a Driver Package from the Driver Store, I used: pnputil -e and sure enough, oem52.inf was present. I then used: pnputil -d oem52.inf to delete the inf from the driver store.
  23. Finally, installing the driver from Print Management worked!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement