How to find out which driver files belong to a certain hardware device like a printer?

1,480

Solution 1

you can see all file associated with Specific Driver in Driver File Details

  • Open Device Manager window ( Go to RUN menu and type "devmgmt.msc")

Device manager Window

  • rigght Click on particular Device that you want and select Properties
    Go To Properties Of Device
  • in Properties window Click on Driver Details button
    Driver Details

    • in Driver Details Window You can see What files are associated with this Device Driver
      associated files with Device Driver

Good Luck!

Solution 2

In my case the drivers for one of my network printers were located in system32\spool.

To find out, I opened the printer porperties in DeviceManager/PrintQueues/[14]

enter image description here

Share:
1,480
lonelymo
Author by

lonelymo

Updated on September 18, 2022

Comments

  • lonelymo
    lonelymo over 1 year

    ABAP Databases, oracle, MaxDB et al., are mostly RDBMS. Right now, I have a JSON structure that cannot be normalised and hence I want to store it as is. So, I want a MongoDB like Object store in ABAP.

    What's the best way to achieve this? Is data cluster an option? Perhaps the only option?

    • vwegert
      vwegert about 7 years
      It is one option. A simple LOB field would be another. You are certain you don't need database support when accessing the contents?
    • lonelymo
      lonelymo about 7 years
      You are certain you don't need database support when accessing the contents? That's certainly necessary. CRUD operations should be possible on this JSON.
    • lonelymo
      lonelymo about 7 years
      @vwegert: how about creating a DDIC table MANDT type MANDT JSON-IDENTIFYING-KEY1 type CHAR10 JSON-IDENTIFYING-KEY2 type CHAR10 JSON_STRING type STRING/XSTRING This way I can store the JSON in a normal DDIC table.
    • Jagger
      Jagger about 7 years
      What is your underlying database? If it supports json type natively then you can consider using ADBC.
    • Suncatcher
      Suncatcher about 7 years
      If CRUD operations are certainly necessary, then you should edit the question. As is and CRUD are contradictory statements. Though, dunno, what CRUD ops can you apply to JSON.
  • lonelymo
    lonelymo about 7 years
    I cannot convert JSON to ABAP and vice versa. JSON object has to be stored as is.
  • szako
    szako about 7 years
    Data in cluster tables are stored as raw, if you must edit the JSON, you have to convert it to an editable format, that's why I wrote a technical approach.
  • Suncatcher
    Suncatcher about 7 years
    RAW format perfectly fits for as is, dunno why this answer was downvoted.