Page 12 of 94 FirstFirst ... 210111213142262 ... LastLast
Results 111 to 120 of 935

Thread: Windows 10 and Office Excel

  1. #111
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    9,323
    Rep Power
    10

    Comparing against large folders, DriverStore and drivers


    Making comparisons to the large Folders, drivers and DriverStore

    As noted previously, http://www.excelfox.com/forum/showth...ll=1#post12124 , it is often suggested that all things related to drivers, can be found in two main files.
    drivers
    DriverStore

    We have examined them and found them to be very large.
    http://www.excelfox.com/forum/showth...ce-Excel/page3 ,

    I propose to check initially the

    Device Manager Property list against
    each folder in turn
    drivers
    DriverStore


    and similarly the

    Double Driver 3rd party software list against
    each folder in turn
    drivers
    DriverStore



















    ( This post http://www.excelfox.com/forum/showth...e-Excel/page11
    http://www.excelfox.com/forum/showth...ge11#post12275





    Last edited by DocAElstein; 02-20-2020 at 03:19 AM.
    ….If you are my competitor, I will try all I can to beat you. But if I do, I will not belittle you. I will Salute you, because without you, I am nothing.
    If you are my enemy, we will try to kick the fucking shit out of you…..
    Winston Churchill, 1939
    Save your Forum..._
    _...KILL A MODERATOR!!

  2. #112
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    9,323
    Rep Power
    10

    Device Manager Property list against drivers and DriverStore
    Device Manager Property list against drivers

    From Device Manager Properties we have 120 files.
    sys 95
    dll 13
    bin 6
    cpa 1
    vp 5
    els 0
    Total 120


    In drivers we find 151-154 files . ( There are 3 strange things in:
    Microsoft.Bluetooth.AvrcpTransport.sys.mui
    Microsoft.Bluetooth.Profiles.HidOverGatt.dll
    Microsoft.Bluetooth.Profiles.HidOverGatt.dll.mui
    )

    These are/ were found as follows…

    I will proceed as in previous posts, starting with a list of the file types in the worksheet that we are considering for the first time, here in this example it is slightly more difficult than in previous cases, so the basic coding used of this form ( http://www.excelfox.com/forum/showth...ll=1#post12347 ) will need to be modified. The extra difficulty arises because we have files of this type
    hidscanner.dll.mui
    sdstor.sys.mui

    I am not sure what those extensions are, but I will list them separately.
    ( The previous coding for a simple list was based on expecting
    _ a single . for the case of a file
    or
    no dot for the case of a Folder. )

    Actually I could just add in the Case list two sets of lines for
    Case sys.mui ” and “ dll.mui
    The macro would then work.
    But I thought I would change a few parts so as allow to add a section to catch the new double dot things

    Here is a final macro: http://www.excelfox.com/forum/showth...ll=1#post12353

    Here is the output it produces for the Before drivers folder
    Code:
    Folder?    de-DE
    More than 2 dots   --  Microsoft.Bluetooth.AvrcpTransport.sys.mui
    Folder?    DriverData
    Folder?    en-US
    Folder?    etc
    Folder?    hosts
    Folder?    networks
    Folder?    protocol
    Folder?    services
    Folder?    UMDF
    More than 2 dots   --  Microsoft.Bluetooth.Profiles.HidOverGatt.dll
    Folder?    de-DE
    More than 2 dots   --  Microsoft.Bluetooth.Profiles.HidOverGatt.dll.mui
    Folder?    en-US
    Folder?    wd
    sys       3
    dll       12
    bin       0
    cpa       0
    vp       0
    Else1     0
    bag       0
    xml       0
    js       0
    gdl       0
    cab       0
    ini       0
    cat       0
    inf       0
    pnf       0
    gpd       0
    exe       0
    sam       1
    dll.mui   10
    sys.mui   125
    Else2     0
    Total files is  151
    Total Folders is    12
    Total things with more than 2 dots is  3
    In previous post we have shown that the Device Manager list has these file

    Code:
    sys   95
    dll   13
    bin   6
    cpa   1
    vp   5
    Total   120
    A quick look at the two list suggests that we may not find many matches in the two list.

    The next post discuses in detail the comparison of the Device Manager Properties list to the drivers Folder


















    ExplorerBefore Device Manager Properties V driver.xlsm : https://app.box.com/s/tgd6k3sgs1d0w09dhlizuq8a9asvmu2k



    Ref
    http://www.excelfox.com/forum/showth...ge11#post12276
    Last edited by DocAElstein; 02-24-2020 at 12:09 AM.
    ….If you are my competitor, I will try all I can to beat you. But if I do, I will not belittle you. I will Salute you, because without you, I am nothing.
    If you are my enemy, we will try to kick the fucking shit out of you…..
    Winston Churchill, 1939
    Save your Forum..._
    _...KILL A MODERATOR!!

  3. #113
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    9,323
    Rep Power
    10


    A similar macro is used as previously to color match entries in the two worksheets. The basic coding will not change.
    But some notes on how the existing coding is working is useful to refresh and clarify what is being done.
    In my manually produced worksheet, I have included the information as given in the Device manager properties ( https://imgur.com/74D8vLN , https://imgur.com/T5Jhcii ,
    https://imgur.com/zTZgx9S , https://imgur.com/uO7qRrO
    http://www.excelfox.com/forum/showth...ll=1#post12124
    )
    In the worksheet I have typed in the information as given in the full path and file name format, such as in this example :
    C:\Windows\system32\DRIVERS\hidparse.sys
    However, my coding separates just the file name.
    Code:
             Let FileNmeSrchFor = Right(CelVl, (Len(CelVl)) - (InStrRev(CelVl, "\", -1, vbBinaryCompare))) ' Determine the file name as that looking from the right as many characters as (the total character number) - (the position looking from the right of a "\")  ---   the characters count left over after the subtraction is equal to the character length of the file name 
    Using the above example, we are left with just the file name
    hidparse.sys

    That file name is then searched for in the appropriate worksheet, drivers , in this case. This is done by trying to assign a range object variable, FndCel , to the cell found in a search of the appropriate range in the drivers worksheet.

    These are the appropriate code lines.
    Code:
            Dim SrchRng As Range: Set SrchRng = Application.Range("=drivers!D4:drivers!E180")    '
            Dim FndCel As Range: Set FndCel = SrchRng.Find(what:=FileNmeSrchFor, After:=Application.Range("=drivers!D4"), LookAt:=xlPart, searchorder:=xlNext, MatchCase:=False) ' 
    First the full range to be searched is set. ( drivers worksheet D4:E180 )
    Then an attempt is made to find hidparse.sys ( which is in the variable FileNmeSrchFor )
    Important to note is the argument LookAt:=xlPart If we had alternatively used LookAt:=xlWhole , then only a matched cell would be returned if a cell was found with exactly hidparse.sys in it. Using LookAt:=xlPart means that, for example, this would also be considered a match
    xyxyxyxhidparse.sys.mui
    Furthermore, the argument , MatchCase:=False , would allow a match to this
    xyxyxyxhiDparse.SYS.mui
    I am hoping the careful selection of the arguments will help me not miss out any possible matches. I would ,prefer to select a few extra than miss some. By inspection I can see easier if I have some falsely selected, than trying to find any that got missed.
    ( One thing to note however, is that this way will only attempt a single match. Any additional matches will not be revealed by this method).

    A selection is made,
    DeviceManagerSelection.JPG : https://imgur.com/oSGqABp
    , and then the macro run.


    The next few posts show the results









    Last edited by DocAElstein; 02-22-2020 at 01:18 AM.
    ….If you are my competitor, I will try all I can to beat you. But if I do, I will not belittle you. I will Salute you, because without you, I am nothing.
    If you are my enemy, we will try to kick the fucking shit out of you…..
    Winston Churchill, 1939
    Save your Forum..._
    _...KILL A MODERATOR!!

  4. #114
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    9,323
    Rep Power
    10
    None of thes can be found

    _____ Workbook: ExplorerBefore Device Manager Properties V driver.xlsm ( Using Excel 2007 32 bit )
    Row\Col
    B
    C
    D
    E
    2
    Audio, Video und Gamecontroller
    3
    High definition Audio-Gerät
    4
    C:\Windows\system32\DRIVERS\dmk.sys
    5
    C:\Windows\system32\DRIVERS\HdAudio.sys
    6
    C:\Windows\system32\drivers\ksthunk.sys
    7
    C:\Windows\system32\DRIVERS\portcls.sys
    8
    C:\Windows\system32\SysFxUl.dll
    9
    C:\Windows\system32\WMALFXGFXDSP.dll
    10
    High definition Audio-Gerät
    11
    C:\Windows\system32\DRIVERS\dmk.sys
    12
    C:\Windows\system32\DRIVERS\HdAudio.sys
    13
    C:\Windows\system32\drivers\ksthunk.sys
    14
    C:\Windows\system32\DRIVERS\portcls.sys
    15
    C:\Windows\system32\SysFxUl.dll
    16
    C:\Windows\system32\WMALFXGFXDSP.dll
    Worksheet: DeviceManagerProperties
    Last edited by DocAElstein; 02-22-2020 at 01:15 AM.
    ….If you are my competitor, I will try all I can to beat you. But if I do, I will not belittle you. I will Salute you, because without you, I am nothing.
    If you are my enemy, we will try to kick the fucking shit out of you…..
    Winston Churchill, 1939
    Save your Forum..._
    _...KILL A MODERATOR!!

  5. #115
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    9,323
    Rep Power
    10
    _____ Workbook: ExplorerBefore Device Manager Properties V driver.xlsm ( Using Excel 2007 32 bit )
    DVD/CD-ROM-Laufwerke
    TSSTcorpDVD-ROM SH-D163C ATA Device
    C:\Windows\system32\DRIVERS\cdrom.sys
    Worksheet: DeviceManagerProperties







    Code:
    G:\Win 10 Devices\Before\drivers\de-DE		de-DE
    		1394OHCI.sys.mui
    		acpi.sys.mui
    		afd.sys.mui
    		agilevpn.sys.mui
    		amdk8.sys.mui
    		amdppm.sys.mui
    		ataport.sys.mui
    		battc.sys.mui
    		bthenum.sys.mui
    		BthMini.SYS.mui
    		bthport.sys.mui
    		BTHUSB.SYS.mui
    		CAD.sys.mui
    		cdrom.sys.mui
    		cmimcext.sys.mui
    		disk.sys.mui
    		dmvsc.sys.mui
    		dumpsd.sys.mui
    		EhStorTcgDrv.sys.mui
    		fltmgr.sys.mui
    		fvevol.sys.mui
    		hidbatt.sys.mui
    		hidbth.sys.mui
    		hidclass.sys.mui
    		hidi2c.sys.mui
    		http.sys.mui
    		i8042prt.sys.mui
    		IndirectKmd.sys.mui
    		intelppm.sys.mui
    		iorate.sys.mui
    		IPMIDRV.sys.mui
    		isapnp.sys.mui
    		kbdclass.sys.mui
    		kbdhid.sys.mui
    		luafv.sys.mui
    		Microsoft.Bluetooth.AvrcpTransport.sys.mui
    		modem.sys.mui
    		mouclass.sys.mui
    		mouhid.sys.mui
    		mountmgr.sys.mui
    		mrxsmb.sys.mui
    		msgpiowin32.sys.mui
    		mshidumdf.sys.mui
    		mslldp.sys.mui
    		mssecflt.sys.mui
    		mssmbios.sys.mui
    		MTConfig.sys.mui
    		mup.sys.mui
    		ndis.sys.mui
    		ndiscap.sys.mui
    		NdisImPlatform.sys.mui
    		ndisuio.sys.mui
    		NdisVirtualBus.sys.mui
    		netvsc.sys.mui
    		ntfs.sys.mui
    		nvdimm.sys.mui
    		nwifi.sys.mui
    		pacer.sys.mui
    		parport.sys.mui
    		partmgr.sys.mui
    		pci.sys.mui
    		pcmcia.sys.mui
    		pdc.sys.mui
    		pmem.sys.mui
    		pnpmem.sys.mui
    		processr.sys.mui
    		qwavedrv.sys.mui
    		rdbss.sys.mui
    		rdpdr.sys.mui
    		rdvgkmd.sys.mui
    		refs.sys.mui
    		refsv1.sys.mui
    		rfxvmt.sys.mui
    		scfilter.sys.mui
    		scmbus.sys.mui
    		sdbus.sys.mui
    		sdstor.sys.mui
    		serial.sys.mui
    		sermouse.sys.mui
    		smbdirect.sys.mui
    		spaceport.sys.mui
    		srv2.sys.mui
    		storqosflt.sys.mui
    		synth3dvsc.sys.mui
    		tcpip.sys.mui
    		tpm.sys.mui
    		tsusbflt.sys.mui
    		tsusbhub.sys.mui
    		tunnel.sys.mui
    		UmBus.sys.mui
    		usbehci.sys.mui
    		usbhub.sys.mui
    		USBHUB3.SYS.mui
    		usbport.sys.mui
    		usbstor.sys.mui
    		usbvideo.sys.mui
    		USBXHCI.SYS.mui
    		vdrvroot.sys.mui
    		VerifierExt.sys.mui
    		vhdmp.sys.mui
    		vhf.sys.mui
    		vmbus.sys.mui
    		vmstorfl.sys.mui
    		volmgr.sys.mui
    		volmgrx.sys.mui
    		volsnap.sys.mui
    		wacompen.sys.mui
    		wdf01000.sys.mui
    		wfplwfs.sys.mui
    		winnat.sys.mui
    		wmbclass.sys.mui
    		wof.sys.mui
    		ws2ifsl.sys.mui
    		wudfpf.sys.mui
    Last edited by DocAElstein; 02-22-2020 at 01:22 AM.
    ….If you are my competitor, I will try all I can to beat you. But if I do, I will not belittle you. I will Salute you, because without you, I am nothing.
    If you are my enemy, we will try to kick the fucking shit out of you…..
    Winston Churchill, 1939
    Save your Forum..._
    _...KILL A MODERATOR!!

  6. #116
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    9,323
    Rep Power
    10
    _____ Workbook: ExplorerBefore Device Manager Properties V driver.xlsm ( Using Excel 2007 32 bit )
    Eingabegeräte (Human Interface Device)
    HID-Konformer Sysgtemcontroller
    HID-Konformer Benutzersteuergeräte
    HID-Konformer vom Hersteller definiertes Gerät
    HID-Konformer vom Hersteller definiertes Gerät
    USB-Eingabegerät
    C:\Windows\system32\DRIVERS\hidclass.sys
    C:\Windows\system32\DRIVERS\hidparse.sys
    C:\Windows\system32\DRIVERS\hidusb.sys
    Worksheet: DeviceManagerProperties








    _____ Workbook: ExplorerBefore Device Manager Properties V driver.xlsm ( Using Excel 2007 32 bit )
    G:\Win 10 Devices\Before\drivers\de-DE de-DE
    1394OHCI.sys.mui
    acpi.sys.mui
    afd.sys.mui
    agilevpn.sys.mui
    amdk8.sys.mui
    amdppm.sys.mui
    ataport.sys.mui
    battc.sys.mui
    bthenum.sys.mui
    BthMini.SYS.mui
    bthport.sys.mui
    BTHUSB.SYS.mui
    CAD.sys.mui
    cdrom.sys.mui
    cmimcext.sys.mui
    disk.sys.mui
    dmvsc.sys.mui
    dumpsd.sys.mui
    EhStorTcgDrv.sys.mui
    fltmgr.sys.mui
    fvevol.sys.mui
    hidbatt.sys.mui
    hidbth.sys.mui
    hidclass.sys.mui
    hidi2c.sys.mui
    http.sys.mui
    i8042prt.sys.mui
    IndirectKmd.sys.mui
    intelppm.sys.mui
    iorate.sys.mui
    IPMIDRV.sys.mui
    isapnp.sys.mui
    kbdclass.sys.mui
    kbdhid.sys.mui
    luafv.sys.mui
    Microsoft.Bluetooth.AvrcpTransport.sys.mui
    modem.sys.mui
    mouclass.sys.mui
    mouhid.sys.mui
    mountmgr.sys.mui
    mrxsmb.sys.mui
    msgpiowin32.sys.mui
    mshidumdf.sys.mui
    Worksheet: drivers
    Last edited by DocAElstein; 02-22-2020 at 01:25 AM.
    ….If you are my competitor, I will try all I can to beat you. But if I do, I will not belittle you. I will Salute you, because without you, I am nothing.
    If you are my enemy, we will try to kick the fucking shit out of you…..
    Winston Churchill, 1939
    Save your Forum..._
    _...KILL A MODERATOR!!

  7. #117
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    9,323
    Rep Power
    10
    _____ Workbook: ExplorerBefore Device Manager Properties V driver.xlsm ( Using Excel 2007 32 bit )
    Eingabegeräte (Human Interface Device)
    HID-Konformer Sysgtemcontroller
    HID-Konformer Benutzersteuergeräte
    HID-Konformer vom Hersteller definiertes Gerät
    HID-Konformer vom Hersteller definiertes Gerät
    USB-Eingabegerät
    C:\Windows\system32\DRIVERS\hidclass.sys
    C:\Windows\system32\DRIVERS\hidparse.sys
    C:\Windows\system32\DRIVERS\hidusb.sys
    USB-Eingabegerät
    C:\Windows\system32\DRIVERS\hidclass.sys
    C:\Windows\system32\DRIVERS\hidparse.sys
    C:\Windows\system32\DRIVERS\hidusb.sys
    Worksheet: DeviceManagerProperties






    _____ Workbook: ExplorerBefore Device Manager Properties V driver.xlsm ( Using Excel 2007 32 bit )
    G:\Win 10 Devices\Before\drivers\de-DE de-DE
    1394OHCI.sys.mui
    acpi.sys.mui
    afd.sys.mui
    agilevpn.sys.mui
    amdk8.sys.mui
    amdppm.sys.mui
    ataport.sys.mui
    battc.sys.mui
    bthenum.sys.mui
    BthMini.SYS.mui
    bthport.sys.mui
    BTHUSB.SYS.mui
    CAD.sys.mui
    cdrom.sys.mui
    cmimcext.sys.mui
    disk.sys.mui
    dmvsc.sys.mui
    dumpsd.sys.mui
    EhStorTcgDrv.sys.mui
    fltmgr.sys.mui
    fvevol.sys.mui
    hidbatt.sys.mui
    hidbth.sys.mui
    hidclass.sys.mui
    hidi2c.sys.mui
    http.sys.mui
    i8042prt.sys.mui
    IndirectKmd.sys.mui
    intelppm.sys.mui
    iorate.sys.mui
    IPMIDRV.sys.mui
    isapnp.sys.mui
    kbdclass.sys.mui
    kbdhid.sys.mui
    luafv.sys.mui
    Microsoft.Bluetooth.AvrcpTransport.sys.mui
    modem.sys.mui
    mouclass.sys.mui
    mouhid.sys.mui
    mountmgr.sys.mui
    Worksheet: drivers



    Note this is the same file as in the last post
    Last edited by DocAElstein; 02-22-2020 at 01:29 AM.
    ….If you are my competitor, I will try all I can to beat you. But if I do, I will not belittle you. I will Salute you, because without you, I am nothing.
    If you are my enemy, we will try to kick the fucking shit out of you…..
    Winston Churchill, 1939
    Save your Forum..._
    _...KILL A MODERATOR!!

  8. #118
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    9,323
    Rep Power
    10
    None of these have been found in drivers

    _____ Workbook: ExplorerBefore Device Manager Properties V driver.xlsm ( Using Excel 2007 32 bit )
    Row\Col
    B
    C
    D
    E
    58
    Grafikkarten
    59
    Intel(R) G41 Express Chipset (Microsoft Corporation - WDDM 1.1)
    60
    C:\Windows\system32\DRIVERS\igdkmd64.sys
    61
    C:\Windows\system32\igcompkmg500.bin
    62
    C:\Windows\system32\igd10umd64.dll
    63
    C:\Windows\system32\igdumd64.dll
    64
    C:\Windows\system32\igfcg500m.bin
    65
    C:\Windows\system32\igkmg500.bin
    66
    C:\Windows\system32\iglhcp64.dll
    67
    C:\Windows\system32\iglhsip64.dll
    68
    C:\Windows\system32\iglhxa64.cpa
    69
    C:\Windows\system32\iglhxa64.vp
    70
    C:\Windows\system32\iglhxc64.vp
    71
    C:\Windows\system32\iglhxg64.vp
    72
    C:\Windows\system32\iglhxo64.vp
    73
    C:\Windows\system32\iglhxs64.vp
    74
    C:\Windows\SysWow64\igcompkmg500.bin
    75
    C:\Windows\SysWow64\igd10umd32.dll
    76
    C:\Windows\SysWow64\igdumd32.dll
    77
    C:\Windows\SysWow64\igfcg500m.bin
    78
    C:\Windows\SysWow64\igkmg500.bin
    79
    C:\Windows\SysWow64\iglhcp32.dll
    80
    C:\Windows\SysWow64\iglhsip32.dll
    Worksheet: DeviceManagerProperties
    Last edited by DocAElstein; 02-22-2020 at 01:30 AM.
    ….If you are my competitor, I will try all I can to beat you. But if I do, I will not belittle you. I will Salute you, because without you, I am nothing.
    If you are my enemy, we will try to kick the fucking shit out of you…..
    Winston Churchill, 1939
    Save your Forum..._
    _...KILL A MODERATOR!!

  9. #119
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    9,323
    Rep Power
    10
    _____ Workbook: ExplorerBefore Device Manager Properties V driver.xlsm ( Using Excel 2007 32 bit )
    IDE ATA/ATAPI-Controller
    C:\Windows\system32\DRIVERS\atapi.sys
    C:\Windows\system32\DRIVERS\ataport.sys
    ATA Chanel 1
    C:\Windows\system32\DRIVERS\atapi.sys
    C:\Windows\system32\DRIVERS\ataport.sys
    Intel(R) 82801GB/GR/GH(ICH7 Familie) Serieller ATA-Speichercomtroller - 27C0
    C:\Windows\system32\DRIVERS\atapi.sys
    C:\Windows\system32\DRIVERS\ataport.sys
    C:\Windows\system32\DRIVERS\intelide.sys
    C:\Windows\system32\DRIVERS\pciidx.sys
    Worksheet: DeviceManagerProperties









    _____ Workbook: ExplorerBefore Device Manager Properties V driver.xlsm ( Using Excel 2007 32 bit )
    G:\Win 10 Devices\Before\drivers\de-DE de-DE
    1394OHCI.sys.mui
    acpi.sys.mui
    afd.sys.mui
    agilevpn.sys.mui
    amdk8.sys.mui
    amdppm.sys.mui
    ataport.sys.mui
    battc.sys.mui
    bthenum.sys.mui
    BthMini.SYS.mui
    bthport.sys.mui
    BTHUSB.SYS.mui
    CAD.sys.mui
    cdrom.sys.mui
    cmimcext.sys.mui
    disk.sys.mui
    dmvsc.sys.mui
    dumpsd.sys.mui
    EhStorTcgDrv.sys.mui
    fltmgr.sys.mui
    fvevol.sys.mui
    hidbatt.sys.mui
    hidbth.sys.mui
    hidclass.sys.mui
    hidi2c.sys.mui
    http.sys.mui
    i8042prt.sys.mui
    IndirectKmd.sys.mui
    intelppm.sys.mui
    iorate.sys.mui
    IPMIDRV.sys.mui
    isapnp.sys.mui
    kbdclass.sys.mui
    Worksheet: drivers
    Last edited by DocAElstein; 02-22-2020 at 01:34 AM.
    ….If you are my competitor, I will try all I can to beat you. But if I do, I will not belittle you. I will Salute you, because without you, I am nothing.
    If you are my enemy, we will try to kick the fucking shit out of you…..
    Winston Churchill, 1939
    Save your Forum..._
    _...KILL A MODERATOR!!

  10. #120
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    9,323
    Rep Power
    10
    _____ Workbook: ExplorerBefore Device Manager Properties V driver.xlsm ( Using Excel 2007 32 bit )
    Row\Col
    B
    C
    D
    E
    95
    IEEE 1394-Hostcontroller
    96
    OHCI-konformer texas Instruments1394-Hostcontroller
    97
    C:\Windows\system32\DRIVERS\1394ohci.sys
    Worksheet: DeviceManagerProperties








    _____ Workbook: ExplorerBefore Device Manager Properties V driver.xlsm ( Using Excel 2007 32 bit )
    G:\Win 10 Devices\Before\drivers\de-DE de-DE
    1394OHCI.sys.mui
    acpi.sys.mui
    afd.sys.mui
    agilevpn.sys.mui
    amdk8.sys.mui
    amdppm.sys.mui
    ataport.sys.mui
    battc.sys.mui
    bthenum.sys.mui
    BthMini.SYS.mui
    bthport.sys.mui
    BTHUSB.SYS.mui
    CAD.sys.mui
    cdrom.sys.mui
    cmimcext.sys.mui
    disk.sys.mui
    dmvsc.sys.mui
    dumpsd.sys.mui
    EhStorTcgDrv.sys.mui
    fltmgr.sys.mui
    fvevol.sys.mui
    hidbatt.sys.mui
    hidbth.sys.mui
    hidclass.sys.mui
    hidi2c.sys.mui
    http.sys.mui
    i8042prt.sys.mui
    Worksheet: drivers
    Last edited by DocAElstein; 02-22-2020 at 01:36 AM.
    ….If you are my competitor, I will try all I can to beat you. But if I do, I will not belittle you. I will Salute you, because without you, I am nothing.
    If you are my enemy, we will try to kick the fucking shit out of you…..
    Winston Churchill, 1939
    Save your Forum..._
    _...KILL A MODERATOR!!

Similar Threads

  1. Tests and Notes on Range Referrencing
    By DocAElstein in forum Test Area
    Replies: 70
    Last Post: 02-20-2024, 01:54 AM
  2. Tests and Notes for EMail Threads
    By DocAElstein in forum Test Area
    Replies: 29
    Last Post: 11-15-2022, 04:39 PM
  3. Replies: 39
    Last Post: 03-20-2018, 04:09 PM
  4. Notes tests. Excel VBA Folder File Search
    By DocAElstein in forum Test Area
    Replies: 39
    Last Post: 03-20-2018, 04:09 PM
  5. Replies: 2
    Last Post: 12-04-2012, 02:05 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •