Page 22 of 94 FirstFirst ... 1220212223243272 ... LastLast
Results 211 to 220 of 935

Thread: Office Activating

  1. #211
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    10,458
    Rep Power
    10
    _____ Workbook: ExplorerBefore Double Driver V DriverStore.xlsm ( Using Excel 2007 32 bit )
    Row\Col
    E
    F
    13
    USB
    14
    15
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C8
    16
    restore.ini
    17
    usbport.inf
    18
    usbehci.sys
    19
    usbport.sys
    20
    usbohci.sys
    21
    usbuhci.sys
    22
    usbhub.sys
    23
    usbuhci.sys
    24
    25
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C9
    26
    restore.ini
    27
    usbport.sys
    28
    usbehci.sys
    29
    usbport.sys
    30
    usbohci.sys
    31
    usbuhci.sys
    32
    usbhub.sys
    33
    usbd.sys
    34
    35
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CA
    36
    restore.ini
    37
    usbport.inf
    38
    usbehci.sys
    39
    usbport.sys
    40
    usbohci.sys
    41
    usbuhci.sys
    42
    usbhub.sys
    43
    usbd.sys
    44
    45
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CB
    46
    restore.ini
    47
    usbport.inf
    48
    usbehci.sys
    49
    usbport.sys
    50
    usbohci.sys
    51
    usbuhci.sys
    52
    usbhub.sys
    53
    usbd.sys
    54
    55
    Intel(R) 82801G (ICH7 Family) USB2 Enhanced Host Controller - 27CC
    56
    restore.ini
    57
    usbport.inf
    58
    usbehci.sys
    59
    usbport.sys
    60
    usbohci.sys
    61
    usbuhci.sys
    62
    usbhub.sys
    63
    usbd.sys
    64
    65
    USB Root Hub
    66
    restore.ini
    67
    usbport.inf
    68
    usbehci.sys
    69
    usbport.sys
    70
    usbohci.sys
    71
    usbuhci.sys
    72
    usbhub.sys
    73
    usbd.sys
    74
    75
    USB Mass Storage Device
    76
    restore.ini
    77
    usbstor.inf
    78
    usbstor.sys
    79
    80
    USB Composite Device
    81
    restore.ini
    82
    usb.inf
    83
    usbccgp.sys
    Worksheet: DDAllBefore




    _____ Workbook: ExplorerBefore Double Driver V DriverStore.xlsm ( Using Excel 2007 32 bit )
    Row\Col
    B
    C
    D
    E
    3867
    G:\Win 10 Devices\Before\DriverStore\FileRepository\usbstor. inf_amd64_c45fc8d7d5e0de02 usbstor.inf_amd64_c45fc8d7d5e0de02
    3868
    usbstor.inf
    3869
    usbstor.PNF
    3870
    USBSTOR.SYS
    3871
    Worksheet: DriverStore


    Note by virtue of the double entries In DriverStore, usbstor.inf was mistaskenly underlined in Doubl Driver
    ….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. #212
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    10,458
    Rep Power
    10
    The last results show us that we were in error..

    It is time to make an Abort2

    ExplorerBefore Double Driver V DriverStore Abort2.xlsm : https://app.box.com/s/yby374gkrprb8lnucvflrpado8gqmspb
    And then start again.


    So, on further thinking, we actually should have just the second part, 4b) in the Do While Loop
    As the macro stands, any second match in DriverStore, will cause section 4b) to detect the color made in the first run in DoiubleDriver and give the underline in error.

    The Do While Loop start must be brought down as follows

    Code:
                If Not FndCel Is Nothing Then ' the range is set, so the file string has been found in a cell in  DDAllBefore
                  'Do While Not FndCel Is Nothing ' Start Find next loop =
                    Rem 4 we have two matching cells
                    '4a) but we might already have a match,
                        If SrchForCel.Font.Color <> 0 Then ' Extra things to do if we already found the cell value in drivers
                         Let ClrIdx = SrchForCel.Font.ColorIndex ' this will make the line below to colorthe text of this cell redundant but will ensure that we use the same color in the DriverStore worksheet rather than the randomly generated one
                         WsDD.Activate: SrchForCel.Select
                         Let SrchForCel.Font.Underline = True
                        Else
                        End If
                    'Debug.Print FndCel.Value
                   Do While Not FndCel Is Nothing ' Start Find next loop ======
                    '4b) color matching file names in each worksheet, we do the unecerssary activating and selecting so we can see what is going in
                     WsDD.Activate: SrchForCel.Select ' This worksheet will be colured
                     Application.Wait (Now + TimeValue("00:00:01"))
                     'Let SrchForCel.Characters(((InStrRev(CelVl, "\", -1, vbBinaryCompare)) + 1), (Len(CelVl)) - (InStrRev(CelVl, "\", -1, vbBinaryCompare))).Font.ColorIndex = ClrIdx
                     Let SrchForCel.Font.ColorIndex = ClrIdx
                     Let SrchForCel.Font.Italic = True
                     
                     WsDrSt.Activate: FndCel.Select ' the other workseet
                     Application.Wait (Now + TimeValue("00:00:02"))
                     Let FndCel.Font.ColorIndex = ClrIdx
                  Set FndCel = Application.Range("=DriverStore!D" & FndCel.Row + 1 & ":DriverStore!F4437").Find(what:=FileNmeSrchFor, After:=Application.Range("=DriverStore!F4437"), LookIn:=xlValues, LookAt:=xlPart, searchorder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False)  '
                  Loop  '  End Find next loop =================================
                Else ' No match was found - the thing in the cell in this worksheet is not in the other worksheet
                End If
            Else ' case no file path string in cell

    here is the full macro http://www.excelfox.com/forum/showth...2568#post12568




    Once again we re begin in the next posts , the comparisons with the latest macro
    ….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. #213
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    10,458
    Rep Power
    10
    _____ Workbook: ExplorerBefore Double Driver V DriverStore.xlsm ( Using Excel 2007 32 bit )
    Row\Col
    B
    C
    D
    E
    F
    9
    G:\Win 10 Devices\Before\Double Driver Backup All\EG41MFT-US2H 09.02.2020 17-50-05\PrintQueue\Local Print Queue Local Print Queue
    10
    restore.ini
    11
    printqueue.inf
    12
    Worksheet: DDAllBefore






    Code:
    de-DE
    1394.inf_loc
    3ware.inf_loc
    61883.inf_loc
    acpi.inf_loc
    AcpiDev.inf_loc
    acpipagr.inf_loc
    acpipmi.inf_loc
    acpitime.inf_loc
    adp80xx.inf_loc
    amdsata.inf_loc
    AMDSBS.inf_loc
    arcsas.inf_loc
    athw8x.INF_loc
    AudioEndpoint.inf_loc
    avc.inf_loc
    basicdisplay.inf_loc
    BasicRender.inf_loc
    battery.inf_loc
    bcmwdidhdpcie.inf_loc
    btampm.inf_loc
    bth.inf_loc
    bthhfenum.inf_loc
    BthLEEnum.inf_loc
    bthmtpenum.inf_loc
    bthpan.inf_loc
    bthprint.inf_loc
    bthspp.inf_loc
    buttonconverter.inf_loc
    capimg.inf_loc
    cdrom.inf_loc
    ChargeArbitration.inf_loc
    cht4nulx64.inf_loc
    cht4sx64.inf_loc
    cht4vx64.inf_loc
    circlass.inf_loc
    cmbatt.inf_loc
    CompositeBus.inf_loc
    cpu.inf_loc
    c_apo.inf_loc
    c_camera.inf_loc
    c_diskdrive.inf_loc
    c_display.inf_loc
    c_extension.inf_loc
    c_firmware.inf_loc
    c_fsactivitymonitor.inf_loc
    c_fsantivirus.inf_loc
    c_fscfsmetadataserver.inf_loc
    c_fscompression.inf_loc
    c_fscontentscreener.inf_loc
    c_fscontinuousbackup.inf_loc
    c_fscopyprotection.inf_loc
    c_fsencryption.inf_loc
    c_fshsm.inf_loc
    c_fsinfrastructure.inf_loc
    c_fsopenfilebackup.inf_loc
    c_fsphysicalquotamgmt.inf_loc
    c_fsquotamgmt.inf_loc
    c_fsreplication.inf_loc
    c_fssecurityenhancer.inf_loc
    c_fssystem.inf_loc
    c_fssystemrecovery.inf_loc
    c_fsundelete.inf_loc
    c_fsvirtualization.inf_loc
    c_holographic.inf_loc
    c_magneticstripereader.inf_loc
    c_media.inf_loc
    c_monitor.inf_loc
    c_net.inf_loc
    c_netdriver.inf_loc
    c_processor.inf_loc
    c_proximity.inf_loc
    c_scmdisk.inf_loc
    c_scmvolume.inf_loc
    c_sensor.inf_loc
    c_smrdisk.inf_loc
    c_smrvolume.inf_loc
    c_sslaccel.inf_loc
    c_swcomponent.inf_loc
    c_swdevice.inf_loc
    c_ucm.inf_loc
    c_volume.inf_loc
    dc1-controller.inf_loc
    dc21x4vm.inf_loc
    DigitalMediaDevice.inf_loc
    disk.inf_loc
    display.inf_loc
    displayoverride.inf_loc
    e2xw10x64.inf_loc
    EhStorPwdDrv.inf_loc
    EhStorTcgDrv.inf_loc
    fdc.inf_loc
    flpydisk.inf_loc
    FusionV2.inf_loc
    gameport.inf_loc
    genericusbfn.inf_loc
    hal.inf_loc
    HalExtIntcLpioDma.inf_loc
    HalExtPL080.inf_loc
    hdaudbus.inf_loc
    hdaudio.inf_loc
    hdaudss.inf_loc
    hidbatt.inf_loc
    hidbth.inf_loc
    hidbthle.inf_loc
    hiddigi.inf_loc
    hidi2c.inf_loc
    hidinterrupt.inf_loc
    hidir.inf_loc
    hidirkbd.inf_loc
    hidscanner.inf_loc
    hidserv.inf_loc
    hidvhf.inf_loc
    hpsamd.inf_loc
    iagpio.inf_loc
    iai2c.inf_loc
    iaLPSS2i_GPIO2_BXT_P.inf_loc
    iaLPSS2i_GPIO2_SKL.inf_loc
    iaLPSS2i_I2C_BXT_P.inf_loc
    iaLPSS2i_I2C_SKL.inf_loc
    ialpssi_gpio.INF_loc
    iaLPSSi_I2C.INF_loc
    iastorav.inf_loc
    iastorv.inf_loc
    idtsec.inf_loc
    image.inf_loc
    input.inf_loc
    intelpep.inf_loc
    ipmidrv.inf_loc
    ipoib6x.inf_loc
    iscsi.inf_loc
    itSAS35i.inf_loc
    kdnic.inf_loc
    keyboard.inf_loc
    ks.inf_loc
    kscaptur.inf_loc
    ksfilter.inf_loc
    lltdio.inf_loc
    lsi_sas.inf_loc
    lsi_sas2i.inf_loc
    lsi_sas3i.inf_loc
    lsi_sss.inf_loc
    machine.inf_loc
    mausbhost.inf_loc
    mbtr8897w81x64.inf_loc
    mchgr.inf_loc
    mdmbtmdm.inf_loc
    mdmcxpv6.inf_loc
    mdmgen.inf_loc
    mdmhayes.inf_loc
    mdmirmdm.inf_loc
    mdmusrk1.inf_loc
    mdmvv.inf_loc
    megasas.inf_loc
    megasas35i.inf_loc
    megasr.inf_loc
    memory.inf_loc
    mf.inf_loc
    mgtdyn.inf_loc
    Microsoft_Bluetooth_AvrcpTransport.inf_loc
    miradisp.inf_loc
    mlx4_bus.inf_loc
    modemcsa.inf_loc
    monitor.inf_loc
    mrvlpcie8897.inf_loc
    msclmd.inf_loc
    msdv.inf_loc
    msgpiowin32.inf_loc
    mshdc.inf_loc
    msmouse.inf_loc
    msports.inf_loc
    mssmbios.inf_loc
    mstape.inf_loc
    msux64w10.INF_loc
    MTConfig.inf_loc
    multiprt.inf_loc
    mvumis.inf_loc
    mwlu97w8x64.inf_loc
    ndiscap.inf_loc
    NdisImPlatform.inf_loc
    NdisImPlatformMp.inf_loc
    ndisuio.inf_loc
    NdisVirtualBus.inf_loc
    net1ic64.inf_loc
    net1yx64.inf_loc
    net44amd.inf_loc
    net7400-x64-n650.inf_loc
    net7500-x64-n650f.inf_loc
    net7800-x64-n650f.inf_loc
    NET8185.inf_loc
    net8187bv64.inf_loc
    net8187se64.inf_loc
    net8192se64.inf_loc
    net8192su64.inf_loc
    net819xp.inf_loc
    net9500-x64-n650f.inf_loc
    netathr10x.INF_loc
    netavpna.inf_loc
    NETAX88179_178a.inf_loc
    NETAX88772.inf_loc
    netb57va.inf_loc
    netbc64.INF_loc
    netbvbda.inf_loc
    netbxnda.inf_loc
    nete1e3e.inf_loc
    nete1g3e.inf_loc
    neteFE3e.inf_loc
    netelx.inf_loc
    netevbda.inf_loc
    netg664.inf_loc
    netimm.inf_loc
    netip6.inf_loc
    netirda.inf_loc
    netjme.inf_loc
    netk57a.inf_loc
    netl160a.inf_loc
    netl1c63x64.inf_loc
    netl1e64.inf_loc
    netl260a.inf_loc
    netlldp.inf_loc
    netloop.inf_loc
    netmlx4eth63.inf_loc
    netmlx5.inf_loc
    netmscli.inf_loc
    netmyk64.inf_loc
    netnb.inf_loc
    netnvm64.inf_loc
    netnvma.inf_loc
    netnwifi.inf_loc
    netpacer.inf_loc
    netpgm.inf_loc
    netr28ux.inf_loc
    netr28x.inf_loc
    netr7364.inf_loc
    netrasa.inf_loc
    netrass.inf_loc
    netrast.inf_loc
    netrndis.inf_loc
    netrtl64.inf_loc
    netrtwlane.inf_loc
    netrtwlane_13.inf_loc
    netrtwlans.inf_loc
    netrtwlanu.inf_loc
    Netserv.inf_loc
    netsstpa.inf_loc
    nett4x64.inf_loc
    nettcpip.inf_loc
    netv1x64.inf_loc
    netvchannel.inf_loc
    netvf63a.inf_loc
    netvg63a.inf_loc
    netvwifibus.inf_loc
    netvwififlt.inf_loc
    netvwifimp.inf_loc
    netvwwanmp.inf_loc
    Netwbw02.INF_loc
    Netwew01.INF_loc
    netwlv64.inf_loc
    netwmbclass.inf_loc
    netwns64.inf_loc
    NETwtw04.inf_loc
    netxex64.inf_loc
    ntprint.inf_loc
    nulhprs8.inf_loc
    nvdimm.inf_loc
    nvraid.inf_loc
    oposdrv.inf_loc
    pci.inf_loc
    pcmcia.inf_loc
    percsas2i.inf_loc
    percsas3i.inf_loc
    pmem.inf_loc
    PnPXInternetGatewayDevices.inf_loc
    PrintQueue.inf_loc
    prnfxcl2.inf_loc
    prngeclv.inf_loc
    prnhpcl1.inf_loc
    prnhpcl2.inf_loc
    prnms013.inf_loc
    prnokcl2.inf_loc
    prnrccl1.inf_loc
    prnsacl1.inf_loc
    prnxxcl3.inf_loc
    prnxxcl4.inf_loc
    qd3x64.inf_loc
    rawsilo.inf_loc
    RDCameraDriver.inf_loc
    rdpbus.inf_loc
    rdvgwddmdx11.inf_loc
    remoteposdrv.inf_loc
    rhproxy.inf_loc
    rndiscmp.inf_loc
    rspndr.inf_loc
    rt640x64.inf_loc
    rtux64w10.inf_loc
    rtvdevx64.INF_loc
    rtwlanu_oldIC.inf_loc
    sbp2.inf_loc
    scmbus.inf_loc
    scmvolume.inf_loc
    SCRAWPDO.inf_loc
    scsidev.inf_loc
    scunknown.inf_loc
    sdbus.inf_loc
    SDFLauncher.inf_loc
    SDFRd.inf_loc
    sdstor.inf_loc
    SensorsAlsDriver.inf_loc
    SensorsHidClassDriver.inf_loc
    SensorsServiceDriver.inf_loc
    sisraid2.inf_loc
    sisraid4.inf_loc
    smrdisk.inf_loc
    smrvolume.inf_loc
    spaceport.inf_loc
    STEXSTOR.inf_loc
    sti.inf_loc
    stornvme.inf_loc
    storufs.inf_loc
    swenum.inf_loc
    tape.inf_loc
    termkbd.inf_loc
    termmou.inf_loc
    tpm.inf_loc
    tpmvsc.inf_loc
    TransferCable.inf_loc
    TSGenericUSBDriver.inf_loc
    tsprint.inf_loc
    TsUsbHubFilter.inf_loc
    ts_generic.inf_loc
    ts_wpdmtp.inf_loc
    uaspstor.inf_loc
    UcmUcsi.inf_loc
    uefi.inf_loc
    ufxchipidea.inf_loc
    ufxsynopsys.inf_loc
    uicciso.inf_loc
    uiccspb.inf_loc
    umbus.inf_loc
    umpass.inf_loc
    unknown.inf_loc
    urschipidea.inf_loc
    urssynopsys.inf_loc
    usb.inf_loc
    usbaudio2.inf_loc
    UsbccidDriver.inf_loc
    usbcir.inf_loc
    usbhub3.inf_loc
    usbport.inf_loc
    usbprint.inf_loc
    usbser.inf_loc
    usbstor.inf_loc
    usbvideo.inf_loc
    usbxhci.inf_loc
    vdrvroot.inf_loc
    vhdmp.inf_loc
    virtdisk.inf_loc
    volmgr.inf_loc
    volsnap.inf_loc
    volume.inf_loc
    vsmraid.inf_loc
    vstxraid.inf_loc
    wave.inf_loc
    WceISVista.inf_loc
    wdmaudio.inf_loc
    wdma_bt.inf_loc
    wdma_usb.inf_loc
    wdmvsc.inf_loc
    wfcvsc.inf_loc
    wfpcapture.inf_loc
    wGenCounter.inf_loc
    whvcrash.inf_loc
    whyperkbd.inf_loc
    WindowsTrustedRTProxy.inf_loc
    winusb.inf_loc
    wmbclass_wmc_union.inf_loc
    wmiacpi.inf_loc
    wnetvsc.inf_loc
    wnetvsc_vfpp.inf_loc
    wpdcomp.inf_loc
    wpdfs.inf_loc
    wpdmtp.inf_loc
    wpdmtphw.inf_loc
    ws3cap.inf_loc
    WSDPrint.inf_loc
    WSDScDrv.inf_loc
    wstorflt.inf_loc
    wstorvsc.inf_loc
    wsynth3dvsc.inf_loc
    WUDFUsbccidDriver.inf_loc
    wvmbus.inf_loc
    wvmbushid.inf_loc
    wvmbusvideo.inf_loc
    wvmgid.inf_loc
    wvmic_ext.inf_loc
    wvmic_guestinterface.inf_loc
    wvmic_heartbeat.inf_loc
    wvmic_kvpexchange.inf_loc
    wvmic_shutdown.inf_loc
    wvmic_timesync.inf_loc
    wvpci.inf_loc
    xboxgip.inf_loc
    xboxgipSynthetic.inf_loc
    xinputhid.inf_loc
    xusb22.inf_loc
    ykinx64.inf_loc



    _____ Workbook: ExplorerBefore Double Driver V DriverStore.xlsm ( Using Excel 2007 32 bit )
    Row\Col
    B
    C
    D
    E
    2598
    G:\Win 10 Devices\Before\DriverStore\FileRepository\printque ue.inf_amd64_d92ccb9c4322d66b printqueue.inf_amd64_d92ccb9c4322d66b
    2599
    printqueue.inf
    2600
    printqueue.PNF
    2601
    Worksheet: DriverStore
    ….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. #214
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    10,458
    Rep Power
    10
    _____ Workbook: ExplorerBefore Double Driver V DriverStore.xlsm ( Using Excel 2007 32 bit )
    Row\Col
    E
    F
    13
    USB
    14
    15
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C8
    16
    restore.ini
    17
    usbport.inf
    18
    usbehci.sys
    19
    usbport.sys
    20
    usbohci.sys
    21
    usbuhci.sys
    22
    usbhub.sys
    23
    usbd.sys
    24
    25
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C9
    26
    restore.ini
    27
    usbport.inf
    28
    usbehci.sys
    29
    usbport.sys
    30
    usbohci.sys
    31
    usbuhci.sys
    32
    usbhub.sys
    33
    usbd.sys
    34
    35
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CA
    36
    restore.ini
    37
    usbport.inf
    38
    usbehci.sys
    39
    usbport.sys
    40
    usbohci.sys
    41
    usbuhci.sys
    42
    usbhub.sys
    43
    usbd.sys
    44
    45
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CB
    46
    restore.ini
    47
    usbport.inf
    48
    usbehci.sys
    49
    usbport.sys
    50
    usbohci.sys
    51
    usbuhci.sys
    52
    usbhub.sys
    53
    usbd.sys
    54
    55
    Intel(R) 82801G (ICH7 Family) USB2 Enhanced Host Controller - 27CC
    56
    restore.ini
    57
    usbport.inf
    58
    usbehci.sys
    59
    usbport.sys
    60
    usbohci.sys
    61
    usbuhci.sys
    62
    usbhub.sys
    63
    usbd.sys
    64
    65
    USB Root Hub
    66
    restore.ini
    67
    usbport.inf
    68
    usbehci.sys
    69
    usbport.sys
    70
    usbohci.sys
    71
    usbuhci.sys
    72
    usbhub.sys
    73
    usbd.sys
    74
    75
    USB Mass Storage Device
    76
    restore.ini
    77
    usbstor.inf
    78
    usbstor.sys
    79
    80
    USB Composite Device
    81
    restore.ini
    82
    usb.inf
    83
    usbccgp.sys
    84
    Worksheet: DDAllBefore







    _____ Workbook: ExplorerBefore Double Driver V DriverStore.xlsm ( Using Excel 2007 32 bit )
    Row\Col
    B
    C
    D
    E
    3849
    G:\Win 10 Devices\Before\DriverStore\FileRepository\usbport. inf_amd64_6c8d049f5073a198 usbport.inf_amd64_6c8d049f5073a198
    3850
    usbd.sys
    3851
    usbehci.sys
    3852
    usbhub.sys
    3853
    usbohci.sys
    3854
    usbport.inf
    3855
    usbport.PNF
    3856
    usbport.sys
    3857
    usbuhci.sys
    3858
    Worksheet: DriverStore
    _____ Workbook: ExplorerBefore Double Driver V DriverStore.xlsm ( Using Excel 2007 32 bit )
    Row\Col
    B
    C
    D
    E
    3742
    G:\Win 10 Devices\Before\DriverStore\FileRepository\tsusbhub .inf_amd64_553447f844bdec99 tsusbhub.inf_amd64_553447f844bdec99
    3743
    tsusbhub.inf
    3744
    tsusbhub.sys
    3745
    3746
    G:\Win 10 Devices\Before\DriverStore\FileRepository\tsusbhub .inf_amd64_71bafe46689e1f9c tsusbhub.inf_amd64_71bafe46689e1f9c
    3747
    tsusbhub.inf
    3748
    tsusbhub.sys
    3749
    Worksheet: DriverStore
    ….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. #215
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    10,458
    Rep Power
    10
    _____ Workbook: ExplorerBefore Double Driver V DriverStore.xlsm ( Using Excel 2007 32 bit )
    Row\Col
    E
    F
    13
    USB
    14
    15
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C8
    16
    restore.ini
    17
    usbport.inf
    18
    usbehci.sys
    19
    usbport.sys
    20
    usbohci.sys
    21
    usbuhci.sys
    22
    usbhub.sys
    23
    usbd.sys
    24
    25
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C9
    26
    restore.ini
    27
    usbport.inf
    28
    usbehci.sys
    29
    usbport.sys
    30
    usbohci.sys
    31
    usbuhci.sys
    32
    usbhub.sys
    33
    usbd.sys
    34
    35
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CA
    36
    restore.ini
    37
    usbport.inf
    38
    usbehci.sys
    39
    usbport.sys
    40
    usbohci.sys
    41
    usbuhci.sys
    42
    usbhub.sys
    43
    usbd.sys
    44
    45
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CB
    46
    restore.ini
    47
    usbport.inf
    48
    usbehci.sys
    49
    usbport.sys
    50
    usbohci.sys
    51
    usbuhci.sys
    52
    usbhub.sys
    53
    usbd.sys
    54
    55
    Intel(R) 82801G (ICH7 Family) USB2 Enhanced Host Controller - 27CC
    56
    restore.ini
    57
    usbport.inf
    58
    usbehci.sys
    59
    usbport.sys
    60
    usbohci.sys
    61
    usbuhci.sys
    62
    usbhub.sys
    63
    usbd.sys
    64
    65
    USB Root Hub
    66
    restore.ini
    67
    usbport.inf
    68
    usbehci.sys
    69
    usbport.sys
    70
    usbohci.sys
    71
    usbuhci.sys
    72
    usbhub.sys
    73
    usbd.sys
    74
    75
    USB Mass Storage Device
    76
    restore.ini
    77
    usbstor.inf
    78
    usbstor.sys
    79
    80
    USB Composite Device
    81
    restore.ini
    82
    usb.inf
    83
    usbccgp.sys
    Worksheet: DDAllBefore





    _____ Workbook: ExplorerBefore Double Driver V DriverStore.xlsm ( Using Excel 2007 32 bit )
    Row\Col
    B
    C
    D
    E
    3849
    G:\Win 10 Devices\Before\DriverStore\FileRepository\usbport. inf_amd64_6c8d049f5073a198 usbport.inf_amd64_6c8d049f5073a198
    3850
    usbd.sys
    3851
    usbehci.sys
    3852
    usbhub.sys
    3853
    usbohci.sys
    3854
    usbport.inf
    3855
    usbport.PNF
    3856
    usbport.sys
    3857
    usbuhci.sys
    Worksheet: DriverStore


    And in next post
    ….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. #216
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    10,458
    Rep Power
    10
    From last post

    Code:
    G:\Win 10 Devices\Before\DriverStore\de-DE		de-DE
    		1394.inf_loc
    		3ware.inf_loc
    		61883.inf_loc
    		acpi.inf_loc
    		AcpiDev.inf_loc
    		acpipagr.inf_loc
    		acpipmi.inf_loc
    		acpitime.inf_loc
    		adp80xx.inf_loc
    		amdsata.inf_loc
    		AMDSBS.inf_loc
    		arcsas.inf_loc
    		athw8x.INF_loc
    		AudioEndpoint.inf_loc
    		avc.inf_loc
    		basicdisplay.inf_loc
    		BasicRender.inf_loc
    		battery.inf_loc
    		bcmwdidhdpcie.inf_loc
    		btampm.inf_loc
    		bth.inf_loc
    		bthhfenum.inf_loc
    		BthLEEnum.inf_loc
    		bthmtpenum.inf_loc
    		bthpan.inf_loc
    		bthprint.inf_loc
    		bthspp.inf_loc
    		buttonconverter.inf_loc
    		capimg.inf_loc
    		cdrom.inf_loc
    		ChargeArbitration.inf_loc
    		cht4nulx64.inf_loc
    		cht4sx64.inf_loc
    		cht4vx64.inf_loc
    		circlass.inf_loc
    		cmbatt.inf_loc
    		CompositeBus.inf_loc
    		cpu.inf_loc
    		c_apo.inf_loc
    		c_camera.inf_loc
    		c_diskdrive.inf_loc
    		c_display.inf_loc
    		c_extension.inf_loc
    		c_firmware.inf_loc
    		c_fsactivitymonitor.inf_loc
    		c_fsantivirus.inf_loc
    		c_fscfsmetadataserver.inf_loc
    		c_fscompression.inf_loc
    		c_fscontentscreener.inf_loc
    		c_fscontinuousbackup.inf_loc
    		c_fscopyprotection.inf_loc
    		c_fsencryption.inf_loc
    		c_fshsm.inf_loc
    		c_fsinfrastructure.inf_loc
    		c_fsopenfilebackup.inf_loc
    		c_fsphysicalquotamgmt.inf_loc
    		c_fsquotamgmt.inf_loc
    		c_fsreplication.inf_loc
    		c_fssecurityenhancer.inf_loc
    		c_fssystem.inf_loc
    		c_fssystemrecovery.inf_loc
    		c_fsundelete.inf_loc
    		c_fsvirtualization.inf_loc
    		c_holographic.inf_loc
    		c_magneticstripereader.inf_loc
    		c_media.inf_loc
    		c_monitor.inf_loc
    		c_net.inf_loc
    		c_netdriver.inf_loc
    		c_processor.inf_loc
    		c_proximity.inf_loc
    		c_scmdisk.inf_loc
    		c_scmvolume.inf_loc
    		c_sensor.inf_loc
    		c_smrdisk.inf_loc
    		c_smrvolume.inf_loc
    		c_sslaccel.inf_loc
    		c_swcomponent.inf_loc
    		c_swdevice.inf_loc
    		c_ucm.inf_loc
    		c_volume.inf_loc
    		dc1-controller.inf_loc
    		dc21x4vm.inf_loc
    		DigitalMediaDevice.inf_loc
    		disk.inf_loc
    		display.inf_loc
    		displayoverride.inf_loc
    		e2xw10x64.inf_loc
    		EhStorPwdDrv.inf_loc
    		EhStorTcgDrv.inf_loc
    		fdc.inf_loc
    		flpydisk.inf_loc
    		FusionV2.inf_loc
    		gameport.inf_loc
    		genericusbfn.inf_loc
    		hal.inf_loc
    		HalExtIntcLpioDma.inf_loc
    		HalExtPL080.inf_loc
    		hdaudbus.inf_loc
    		hdaudio.inf_loc
    		hdaudss.inf_loc
    		hidbatt.inf_loc
    		hidbth.inf_loc
    		hidbthle.inf_loc
    		hiddigi.inf_loc
    		hidi2c.inf_loc
    		hidinterrupt.inf_loc
    		hidir.inf_loc
    		hidirkbd.inf_loc
    		hidscanner.inf_loc
    		hidserv.inf_loc
    		hidvhf.inf_loc
    		hpsamd.inf_loc
    		iagpio.inf_loc
    		iai2c.inf_loc
    		iaLPSS2i_GPIO2_BXT_P.inf_loc
    		iaLPSS2i_GPIO2_SKL.inf_loc
    		iaLPSS2i_I2C_BXT_P.inf_loc
    		iaLPSS2i_I2C_SKL.inf_loc
    		ialpssi_gpio.INF_loc
    		iaLPSSi_I2C.INF_loc
    		iastorav.inf_loc
    		iastorv.inf_loc
    		idtsec.inf_loc
    		image.inf_loc
    		input.inf_loc
    		intelpep.inf_loc
    		ipmidrv.inf_loc
    		ipoib6x.inf_loc
    		iscsi.inf_loc
    		itSAS35i.inf_loc
    		kdnic.inf_loc
    		keyboard.inf_loc
    		ks.inf_loc
    		kscaptur.inf_loc
    		ksfilter.inf_loc
    		lltdio.inf_loc
    		lsi_sas.inf_loc
    		lsi_sas2i.inf_loc
    		lsi_sas3i.inf_loc
    		lsi_sss.inf_loc
    		machine.inf_loc
    		mausbhost.inf_loc
    		mbtr8897w81x64.inf_loc
    		mchgr.inf_loc
    		mdmbtmdm.inf_loc
    		mdmcxpv6.inf_loc
    		mdmgen.inf_loc
    		mdmhayes.inf_loc
    		mdmirmdm.inf_loc
    		mdmusrk1.inf_loc
    		mdmvv.inf_loc
    		megasas.inf_loc
    		megasas35i.inf_loc
    		megasr.inf_loc
    		memory.inf_loc
    		mf.inf_loc
    		mgtdyn.inf_loc
    		Microsoft_Bluetooth_AvrcpTransport.inf_loc
    		miradisp.inf_loc
    		mlx4_bus.inf_loc
    		modemcsa.inf_loc
    		monitor.inf_loc
    		mrvlpcie8897.inf_loc
    		msclmd.inf_loc
    		msdv.inf_loc
    		msgpiowin32.inf_loc
    		mshdc.inf_loc
    		msmouse.inf_loc
    		msports.inf_loc
    		mssmbios.inf_loc
    		mstape.inf_loc
    		msux64w10.INF_loc
    		MTConfig.inf_loc
    		multiprt.inf_loc
    		mvumis.inf_loc
    		mwlu97w8x64.inf_loc
    		ndiscap.inf_loc
    		NdisImPlatform.inf_loc
    		NdisImPlatformMp.inf_loc
    		ndisuio.inf_loc
    		NdisVirtualBus.inf_loc
    		net1ic64.inf_loc
    		net1yx64.inf_loc
    		net44amd.inf_loc
    		net7400-x64-n650.inf_loc
    		net7500-x64-n650f.inf_loc
    		net7800-x64-n650f.inf_loc
    		NET8185.inf_loc
    		net8187bv64.inf_loc
    		net8187se64.inf_loc
    		net8192se64.inf_loc
    		net8192su64.inf_loc
    		net819xp.inf_loc
    		net9500-x64-n650f.inf_loc
    		netathr10x.INF_loc
    		netavpna.inf_loc
    		NETAX88179_178a.inf_loc
    		NETAX88772.inf_loc
    		netb57va.inf_loc
    		netbc64.INF_loc
    		netbvbda.inf_loc
    		netbxnda.inf_loc
    		nete1e3e.inf_loc
    		nete1g3e.inf_loc
    		neteFE3e.inf_loc
    		netelx.inf_loc
    		netevbda.inf_loc
    		netg664.inf_loc
    		netimm.inf_loc
    		netip6.inf_loc
    		netirda.inf_loc
    		netjme.inf_loc
    		netk57a.inf_loc
    		netl160a.inf_loc
    		netl1c63x64.inf_loc
    		netl1e64.inf_loc
    		netl260a.inf_loc
    		netlldp.inf_loc
    		netloop.inf_loc
    		netmlx4eth63.inf_loc
    		netmlx5.inf_loc
    		netmscli.inf_loc
    		netmyk64.inf_loc
    		netnb.inf_loc
    		netnvm64.inf_loc
    		netnvma.inf_loc
    		netnwifi.inf_loc
    		netpacer.inf_loc
    		netpgm.inf_loc
    		netr28ux.inf_loc
    		netr28x.inf_loc
    		netr7364.inf_loc
    		netrasa.inf_loc
    		netrass.inf_loc
    		netrast.inf_loc
    		netrndis.inf_loc
    		netrtl64.inf_loc
    		netrtwlane.inf_loc
    		netrtwlane_13.inf_loc
    		netrtwlans.inf_loc
    		netrtwlanu.inf_loc
    		Netserv.inf_loc
    		netsstpa.inf_loc
    		nett4x64.inf_loc
    		nettcpip.inf_loc
    		netv1x64.inf_loc
    		netvchannel.inf_loc
    		netvf63a.inf_loc
    		netvg63a.inf_loc
    		netvwifibus.inf_loc
    		netvwififlt.inf_loc
    		netvwifimp.inf_loc
    		netvwwanmp.inf_loc
    		Netwbw02.INF_loc
    		Netwew01.INF_loc
    		netwlv64.inf_loc
    		netwmbclass.inf_loc
    		netwns64.inf_loc
    		NETwtw04.inf_loc
    		netxex64.inf_loc
    		ntprint.inf_loc
    		nulhprs8.inf_loc
    		nvdimm.inf_loc
    		nvraid.inf_loc
    		oposdrv.inf_loc
    		pci.inf_loc
    		pcmcia.inf_loc
    		percsas2i.inf_loc
    		percsas3i.inf_loc
    		pmem.inf_loc
    		PnPXInternetGatewayDevices.inf_loc
    		PrintQueue.inf_loc
    		prnfxcl2.inf_loc
    		prngeclv.inf_loc
    		prnhpcl1.inf_loc
    		prnhpcl2.inf_loc
    		prnms013.inf_loc
    		prnokcl2.inf_loc
    		prnrccl1.inf_loc
    		prnsacl1.inf_loc
    		prnxxcl3.inf_loc
    		prnxxcl4.inf_loc
    		qd3x64.inf_loc
    		rawsilo.inf_loc
    		RDCameraDriver.inf_loc
    		rdpbus.inf_loc
    		rdvgwddmdx11.inf_loc
    		remoteposdrv.inf_loc
    		rhproxy.inf_loc
    		rndiscmp.inf_loc
    		rspndr.inf_loc
    		rt640x64.inf_loc
    		rtux64w10.inf_loc
    		rtvdevx64.INF_loc
    		rtwlanu_oldIC.inf_loc
    		sbp2.inf_loc
    		scmbus.inf_loc
    		scmvolume.inf_loc
    		SCRAWPDO.inf_loc
    		scsidev.inf_loc
    		scunknown.inf_loc
    		sdbus.inf_loc
    		SDFLauncher.inf_loc
    		SDFRd.inf_loc
    		sdstor.inf_loc
    		SensorsAlsDriver.inf_loc
    		SensorsHidClassDriver.inf_loc
    		SensorsServiceDriver.inf_loc
    		sisraid2.inf_loc
    		sisraid4.inf_loc
    		smrdisk.inf_loc
    		smrvolume.inf_loc
    		spaceport.inf_loc
    		STEXSTOR.inf_loc
    		sti.inf_loc
    		stornvme.inf_loc
    		storufs.inf_loc
    		swenum.inf_loc
    		tape.inf_loc
    		termkbd.inf_loc
    		termmou.inf_loc
    		tpm.inf_loc
    		tpmvsc.inf_loc
    		TransferCable.inf_loc
    		TSGenericUSBDriver.inf_loc
    		tsprint.inf_loc
    		TsUsbHubFilter.inf_loc
    		ts_generic.inf_loc
    		ts_wpdmtp.inf_loc
    		uaspstor.inf_loc
    		UcmUcsi.inf_loc
    		uefi.inf_loc
    		ufxchipidea.inf_loc
    		ufxsynopsys.inf_loc
    		uicciso.inf_loc
    		uiccspb.inf_loc
    		umbus.inf_loc
    		umpass.inf_loc
    		unknown.inf_loc
    		urschipidea.inf_loc
    		urssynopsys.inf_loc
    		usb.inf_loc
    		usbaudio2.inf_loc
    		UsbccidDriver.inf_loc
    		usbcir.inf_loc
    		usbhub3.inf_loc
    		usbport.inf_loc
    		usbprint.inf_loc
    		usbser.inf_loc
    		usbstor.inf_loc
    		usbvideo.inf_loc
    		usbxhci.inf_loc
    		vdrvroot.inf_loc
    		vhdmp.inf_loc
    		virtdisk.inf_loc
    		volmgr.inf_loc
    		volsnap.inf_loc
    		volume.inf_loc
    		vsmraid.inf_loc
    		vstxraid.inf_loc
    		wave.inf_loc
    		WceISVista.inf_loc
    		wdmaudio.inf_loc
    		wdma_bt.inf_loc
    		wdma_usb.inf_loc
    		wdmvsc.inf_loc
    		wfcvsc.inf_loc
    		wfpcapture.inf_loc
    		wGenCounter.inf_loc
    		whvcrash.inf_loc
    		whyperkbd.inf_loc
    		WindowsTrustedRTProxy.inf_loc
    		winusb.inf_loc
    		wmbclass_wmc_union.inf_loc
    		wmiacpi.inf_loc
    		wnetvsc.inf_loc
    		wnetvsc_vfpp.inf_loc
    		wpdcomp.inf_loc
    		wpdfs.inf_loc
    		wpdmtp.inf_loc
    		wpdmtphw.inf_loc
    		ws3cap.inf_loc
    		WSDPrint.inf_loc
    		WSDScDrv.inf_loc
    		wstorflt.inf_loc
    		wstorvsc.inf_loc
    		wsynth3dvsc.inf_loc
    		WUDFUsbccidDriver.inf_loc
    		wvmbus.inf_loc
    		wvmbushid.inf_loc
    		wvmbusvideo.inf_loc
    		wvmgid.inf_loc
    		wvmic_ext.inf_loc
    		wvmic_guestinterface.inf_loc
    		wvmic_heartbeat.inf_loc
    		wvmic_kvpexchange.inf_loc
    		wvmic_shutdown.inf_loc
    		wvmic_timesync.inf_loc
    		wvpci.inf_loc
    		xboxgip.inf_loc
    		xboxgipSynthetic.inf_loc
    		xinputhid.inf_loc
    		xusb22.inf_loc
    		ykinx64.inf_loc
    ….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. #217
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    10,458
    Rep Power
    10
    _____ Workbook: ExplorerBefore Double Driver V DriverStore.xlsm ( Using Excel 2007 32 bit )
    G:\Win 10 Devices\Before\Double Driver Backup All\EG41MFT-US2H 09.02.2020 17-50-05\USB USB
    G:\Win 10 Devices\Before\Double Driver Backup All\EG41MFT-US2H 09.02.2020 17-50-05\USB\Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C8 Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C8
    restore.ini
    usbport.inf
    usbehci.sys
    usbport.sys
    usbohci.sys
    usbuhci.sys
    usbhub.sys
    usbd.sys
    G:\Win 10 Devices\Before\Double Driver Backup All\EG41MFT-US2H 09.02.2020 17-50-05\USB\Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C9 Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C9
    restore.ini
    usbport.inf
    usbehci.sys
    usbport.sys
    usbohci.sys
    usbuhci.sys
    usbhub.sys
    usbd.sys
    G:\Win 10 Devices\Before\Double Driver Backup All\EG41MFT-US2H 09.02.2020 17-50-05\USB\Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CA Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CA
    restore.ini
    usbport.inf
    usbehci.sys
    usbport.sys
    usbohci.sys
    usbuhci.sys
    usbhub.sys
    usbd.sys
    G:\Win 10 Devices\Before\Double Driver Backup All\EG41MFT-US2H 09.02.2020 17-50-05\USB\Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CB Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CB
    restore.ini
    usbport.inf
    usbehci.sys
    usbport.sys
    usbohci.sys
    usbuhci.sys
    usbhub.sys
    usbd.sys
    G:\Win 10 Devices\Before\Double Driver Backup All\EG41MFT-US2H 09.02.2020 17-50-05\USB\Intel(R) 82801G (ICH7 Family) USB2 Enhanced Host Controller - 27CC Intel(R) 82801G (ICH7 Family) USB2 Enhanced Host Controller - 27CC
    restore.ini
    usbport.inf
    usbehci.sys
    usbport.sys
    usbohci.sys
    usbuhci.sys
    usbhub.sys
    usbd.sys
    G:\Win 10 Devices\Before\Double Driver Backup All\EG41MFT-US2H 09.02.2020 17-50-05\USB\USB Root Hub USB Root Hub
    restore.ini
    usbport.inf
    usbehci.sys
    usbport.sys
    usbohci.sys
    usbuhci.sys
    usbhub.sys
    usbd.sys
    G:\Win 10 Devices\Before\Double Driver Backup All\EG41MFT-US2H 09.02.2020 17-50-05\USB\USB Mass Storage Device USB Mass Storage Device
    restore.ini
    usbstor.inf
    usbstor.sys
    G:\Win 10 Devices\Before\Double Driver Backup All\EG41MFT-US2H 09.02.2020 17-50-05\USB\USB Composite Device USB Composite Device
    restore.ini
    usb.inf
    usbccgp.sys
    Worksheet: DDAllBefore






    _____ Workbook: ExplorerBefore Double Driver V DriverStore.xlsm ( Using Excel 2007 32 bit )
    Row\Col
    B
    C
    D
    E
    3849
    G:\Win 10 Devices\Before\DriverStore\FileRepository\usbport. inf_amd64_6c8d049f5073a198 usbport.inf_amd64_6c8d049f5073a198
    3850
    usbd.sys
    3851
    usbehci.sys
    3852
    usbhub.sys
    3853
    usbohci.sys
    3854
    usbport.inf
    3855
    usbport.PNF
    3856
    usbport.sys
    3857
    usbuhci.sys
    3858
    Worksheet: DriverStore
    ….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. #218
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    10,458
    Rep Power
    10
    _____ Workbook: ExplorerBefore Double Driver V DriverStore.xlsm ( Using Excel 2007 32 bit )
    Row\Col
    E
    F
    13
    USB
    14
    15
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C8
    16
    restore.ini
    17
    usbport.inf
    18
    usbehci.sys
    19
    usbport.sys
    20
    usbohci.sys
    21
    usbuhci.sys
    22
    usbhub.sys
    23
    usbd.sys
    24
    25
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C9
    26
    restore.ini
    27
    usbport.inf
    28
    usbehci.sys
    29
    usbport.sys
    30
    usbohci.sys
    31
    usbuhci.sys
    32
    usbhub.sys
    33
    usbd.sys
    34
    35
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CA
    36
    restore.ini
    37
    usbport.inf
    38
    usbehci.sys
    39
    usbport.sys
    40
    usbohci.sys
    41
    usbuhci.sys
    42
    usbhub.sys
    43
    usbd.sys
    44
    45
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CB
    46
    restore.ini
    47
    usbport.inf
    48
    usbehci.sys
    49
    usbport.sys
    50
    usbohci.sys
    51
    usbuhci.sys
    52
    usbhub.sys
    53
    usbd.sys
    54
    55
    Intel(R) 82801G (ICH7 Family) USB2 Enhanced Host Controller - 27CC
    56
    restore.ini
    57
    usbport.inf
    58
    usbehci.sys
    59
    usbport.sys
    60
    usbohci.sys
    61
    usbuhci.sys
    62
    usbhub.sys
    63
    usbd.sys
    64
    65
    USB Root Hub
    66
    restore.ini
    67
    usbport.inf
    68
    usbehci.sys
    69
    usbport.sys
    70
    usbohci.sys
    71
    usbuhci.sys
    72
    usbhub.sys
    73
    usbd.sys
    74
    75
    USB Mass Storage Device
    76
    restore.ini
    77
    usbstor.inf
    78
    usbstor.sys
    79
    80
    USB Composite Device
    81
    restore.ini
    82
    usb.inf
    83
    usbccgp.sys
    84
    Worksheet: DDAllBefore






    _____ Workbook: ExplorerBefore Double Driver V DriverStore.xlsm ( Using Excel 2007 32 bit )
    Row\Col
    B
    C
    D
    E
    3849
    G:\Win 10 Devices\Before\DriverStore\FileRepository\usbport. inf_amd64_6c8d049f5073a198 usbport.inf_amd64_6c8d049f5073a198
    3850
    usbd.sys
    3851
    usbehci.sys
    3852
    usbhub.sys
    3853
    usbohci.sys
    3854
    usbport.inf
    3855
    usbport.PNF
    3856
    usbport.sys
    3857
    usbuhci.sys
    3858
    Worksheet: DriverStore
    ….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. #219
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    10,458
    Rep Power
    10
    _____ Workbook: ExplorerBefore Double Driver V DriverStore.xlsm ( Using Excel 2007 32 bit )
    Row\Col
    B
    C
    D
    E
    F
    75
    G:\Win 10 Devices\Before\Double Driver Backup All\EG41MFT-US2H 09.02.2020 17-50-05\USB\USB Mass Storage Device USB Mass Storage Device
    76
    restore.ini
    77
    usbstor.inf
    78
    usbstor.sys
    Worksheet: DDAllBefore








    Code:
    de-DE
    1394.inf_loc
    3ware.inf_loc
    61883.inf_loc
    acpi.inf_loc
    AcpiDev.inf_loc
    acpipagr.inf_loc
    acpipmi.inf_loc
    acpitime.inf_loc
    adp80xx.inf_loc
    amdsata.inf_loc
    AMDSBS.inf_loc
    arcsas.inf_loc
    athw8x.INF_loc
    AudioEndpoint.inf_loc
    avc.inf_loc
    basicdisplay.inf_loc
    BasicRender.inf_loc
    battery.inf_loc
    bcmwdidhdpcie.inf_loc
    btampm.inf_loc
    bth.inf_loc
    bthhfenum.inf_loc
    BthLEEnum.inf_loc
    bthmtpenum.inf_loc
    bthpan.inf_loc
    bthprint.inf_loc
    bthspp.inf_loc
    buttonconverter.inf_loc
    capimg.inf_loc
    cdrom.inf_loc
    ChargeArbitration.inf_loc
    cht4nulx64.inf_loc
    cht4sx64.inf_loc
    cht4vx64.inf_loc
    circlass.inf_loc
    cmbatt.inf_loc
    CompositeBus.inf_loc
    cpu.inf_loc
    c_apo.inf_loc
    c_camera.inf_loc
    c_diskdrive.inf_loc
    c_display.inf_loc
    c_extension.inf_loc
    c_firmware.inf_loc
    c_fsactivitymonitor.inf_loc
    c_fsantivirus.inf_loc
    c_fscfsmetadataserver.inf_loc
    c_fscompression.inf_loc
    c_fscontentscreener.inf_loc
    c_fscontinuousbackup.inf_loc
    c_fscopyprotection.inf_loc
    c_fsencryption.inf_loc
    c_fshsm.inf_loc
    c_fsinfrastructure.inf_loc
    c_fsopenfilebackup.inf_loc
    c_fsphysicalquotamgmt.inf_loc
    c_fsquotamgmt.inf_loc
    c_fsreplication.inf_loc
    c_fssecurityenhancer.inf_loc
    c_fssystem.inf_loc
    c_fssystemrecovery.inf_loc
    c_fsundelete.inf_loc
    c_fsvirtualization.inf_loc
    c_holographic.inf_loc
    c_magneticstripereader.inf_loc
    c_media.inf_loc
    c_monitor.inf_loc
    c_net.inf_loc
    c_netdriver.inf_loc
    c_processor.inf_loc
    c_proximity.inf_loc
    c_scmdisk.inf_loc
    c_scmvolume.inf_loc
    c_sensor.inf_loc
    c_smrdisk.inf_loc
    c_smrvolume.inf_loc
    c_sslaccel.inf_loc
    c_swcomponent.inf_loc
    c_swdevice.inf_loc
    c_ucm.inf_loc
    c_volume.inf_loc
    dc1-controller.inf_loc
    dc21x4vm.inf_loc
    DigitalMediaDevice.inf_loc
    disk.inf_loc
    display.inf_loc
    displayoverride.inf_loc
    e2xw10x64.inf_loc
    EhStorPwdDrv.inf_loc
    EhStorTcgDrv.inf_loc
    fdc.inf_loc
    flpydisk.inf_loc
    FusionV2.inf_loc
    gameport.inf_loc
    genericusbfn.inf_loc
    hal.inf_loc
    HalExtIntcLpioDma.inf_loc
    HalExtPL080.inf_loc
    hdaudbus.inf_loc
    hdaudio.inf_loc
    hdaudss.inf_loc
    hidbatt.inf_loc
    hidbth.inf_loc
    hidbthle.inf_loc
    hiddigi.inf_loc
    hidi2c.inf_loc
    hidinterrupt.inf_loc
    hidir.inf_loc
    hidirkbd.inf_loc
    hidscanner.inf_loc
    hidserv.inf_loc
    hidvhf.inf_loc
    hpsamd.inf_loc
    iagpio.inf_loc
    iai2c.inf_loc
    iaLPSS2i_GPIO2_BXT_P.inf_loc
    iaLPSS2i_GPIO2_SKL.inf_loc
    iaLPSS2i_I2C_BXT_P.inf_loc
    iaLPSS2i_I2C_SKL.inf_loc
    ialpssi_gpio.INF_loc
    iaLPSSi_I2C.INF_loc
    iastorav.inf_loc
    iastorv.inf_loc
    idtsec.inf_loc
    image.inf_loc
    input.inf_loc
    intelpep.inf_loc
    ipmidrv.inf_loc
    ipoib6x.inf_loc
    iscsi.inf_loc
    itSAS35i.inf_loc
    kdnic.inf_loc
    keyboard.inf_loc
    ks.inf_loc
    kscaptur.inf_loc
    ksfilter.inf_loc
    lltdio.inf_loc
    lsi_sas.inf_loc
    lsi_sas2i.inf_loc
    lsi_sas3i.inf_loc
    lsi_sss.inf_loc
    machine.inf_loc
    mausbhost.inf_loc
    mbtr8897w81x64.inf_loc
    mchgr.inf_loc
    mdmbtmdm.inf_loc
    mdmcxpv6.inf_loc
    mdmgen.inf_loc
    mdmhayes.inf_loc
    mdmirmdm.inf_loc
    mdmusrk1.inf_loc
    mdmvv.inf_loc
    megasas.inf_loc
    megasas35i.inf_loc
    megasr.inf_loc
    memory.inf_loc
    mf.inf_loc
    mgtdyn.inf_loc
    Microsoft_Bluetooth_AvrcpTransport.inf_loc
    miradisp.inf_loc
    mlx4_bus.inf_loc
    modemcsa.inf_loc
    monitor.inf_loc
    mrvlpcie8897.inf_loc
    msclmd.inf_loc
    msdv.inf_loc
    msgpiowin32.inf_loc
    mshdc.inf_loc
    msmouse.inf_loc
    msports.inf_loc
    mssmbios.inf_loc
    mstape.inf_loc
    msux64w10.INF_loc
    MTConfig.inf_loc
    multiprt.inf_loc
    mvumis.inf_loc
    mwlu97w8x64.inf_loc
    ndiscap.inf_loc
    NdisImPlatform.inf_loc
    NdisImPlatformMp.inf_loc
    ndisuio.inf_loc
    NdisVirtualBus.inf_loc
    net1ic64.inf_loc
    net1yx64.inf_loc
    net44amd.inf_loc
    net7400-x64-n650.inf_loc
    net7500-x64-n650f.inf_loc
    net7800-x64-n650f.inf_loc
    NET8185.inf_loc
    net8187bv64.inf_loc
    net8187se64.inf_loc
    net8192se64.inf_loc
    net8192su64.inf_loc
    net819xp.inf_loc
    net9500-x64-n650f.inf_loc
    netathr10x.INF_loc
    netavpna.inf_loc
    NETAX88179_178a.inf_loc
    NETAX88772.inf_loc
    netb57va.inf_loc
    netbc64.INF_loc
    netbvbda.inf_loc
    netbxnda.inf_loc
    nete1e3e.inf_loc
    nete1g3e.inf_loc
    neteFE3e.inf_loc
    netelx.inf_loc
    netevbda.inf_loc
    netg664.inf_loc
    netimm.inf_loc
    netip6.inf_loc
    netirda.inf_loc
    netjme.inf_loc
    netk57a.inf_loc
    netl160a.inf_loc
    netl1c63x64.inf_loc
    netl1e64.inf_loc
    netl260a.inf_loc
    netlldp.inf_loc
    netloop.inf_loc
    netmlx4eth63.inf_loc
    netmlx5.inf_loc
    netmscli.inf_loc
    netmyk64.inf_loc
    netnb.inf_loc
    netnvm64.inf_loc
    netnvma.inf_loc
    netnwifi.inf_loc
    netpacer.inf_loc
    netpgm.inf_loc
    netr28ux.inf_loc
    netr28x.inf_loc
    netr7364.inf_loc
    netrasa.inf_loc
    netrass.inf_loc
    netrast.inf_loc
    netrndis.inf_loc
    netrtl64.inf_loc
    netrtwlane.inf_loc
    netrtwlane_13.inf_loc
    netrtwlans.inf_loc
    netrtwlanu.inf_loc
    Netserv.inf_loc
    netsstpa.inf_loc
    nett4x64.inf_loc
    nettcpip.inf_loc
    netv1x64.inf_loc
    netvchannel.inf_loc
    netvf63a.inf_loc
    netvg63a.inf_loc
    netvwifibus.inf_loc
    netvwififlt.inf_loc
    netvwifimp.inf_loc
    netvwwanmp.inf_loc
    Netwbw02.INF_loc
    Netwew01.INF_loc
    netwlv64.inf_loc
    netwmbclass.inf_loc
    netwns64.inf_loc
    NETwtw04.inf_loc
    netxex64.inf_loc
    ntprint.inf_loc
    nulhprs8.inf_loc
    nvdimm.inf_loc
    nvraid.inf_loc
    oposdrv.inf_loc
    pci.inf_loc
    pcmcia.inf_loc
    percsas2i.inf_loc
    percsas3i.inf_loc
    pmem.inf_loc
    PnPXInternetGatewayDevices.inf_loc
    PrintQueue.inf_loc
    prnfxcl2.inf_loc
    prngeclv.inf_loc
    prnhpcl1.inf_loc
    prnhpcl2.inf_loc
    prnms013.inf_loc
    prnokcl2.inf_loc
    prnrccl1.inf_loc
    prnsacl1.inf_loc
    prnxxcl3.inf_loc
    prnxxcl4.inf_loc
    qd3x64.inf_loc
    rawsilo.inf_loc
    RDCameraDriver.inf_loc
    rdpbus.inf_loc
    rdvgwddmdx11.inf_loc
    remoteposdrv.inf_loc
    rhproxy.inf_loc
    rndiscmp.inf_loc
    rspndr.inf_loc
    rt640x64.inf_loc
    rtux64w10.inf_loc
    rtvdevx64.INF_loc
    rtwlanu_oldIC.inf_loc
    sbp2.inf_loc
    scmbus.inf_loc
    scmvolume.inf_loc
    SCRAWPDO.inf_loc
    scsidev.inf_loc
    scunknown.inf_loc
    sdbus.inf_loc
    SDFLauncher.inf_loc
    SDFRd.inf_loc
    sdstor.inf_loc
    SensorsAlsDriver.inf_loc
    SensorsHidClassDriver.inf_loc
    SensorsServiceDriver.inf_loc
    sisraid2.inf_loc
    sisraid4.inf_loc
    smrdisk.inf_loc
    smrvolume.inf_loc
    spaceport.inf_loc
    STEXSTOR.inf_loc
    sti.inf_loc
    stornvme.inf_loc
    storufs.inf_loc
    swenum.inf_loc
    tape.inf_loc
    termkbd.inf_loc
    termmou.inf_loc
    tpm.inf_loc
    tpmvsc.inf_loc
    TransferCable.inf_loc
    TSGenericUSBDriver.inf_loc
    tsprint.inf_loc
    TsUsbHubFilter.inf_loc
    ts_generic.inf_loc
    ts_wpdmtp.inf_loc
    uaspstor.inf_loc
    UcmUcsi.inf_loc
    uefi.inf_loc
    ufxchipidea.inf_loc
    ufxsynopsys.inf_loc
    uicciso.inf_loc
    uiccspb.inf_loc
    umbus.inf_loc
    umpass.inf_loc
    unknown.inf_loc
    urschipidea.inf_loc
    urssynopsys.inf_loc
    usb.inf_loc
    usbaudio2.inf_loc
    UsbccidDriver.inf_loc
    usbcir.inf_loc
    usbhub3.inf_loc
    usbport.inf_loc
    usbprint.inf_loc
    usbser.inf_loc
    usbstor.inf_loc
    usbvideo.inf_loc
    usbxhci.inf_loc
    vdrvroot.inf_loc
    vhdmp.inf_loc
    virtdisk.inf_loc
    volmgr.inf_loc
    volsnap.inf_loc
    volume.inf_loc
    vsmraid.inf_loc
    vstxraid.inf_loc
    wave.inf_loc
    WceISVista.inf_loc
    wdmaudio.inf_loc
    wdma_bt.inf_loc
    wdma_usb.inf_loc
    wdmvsc.inf_loc
    wfcvsc.inf_loc
    wfpcapture.inf_loc
    wGenCounter.inf_loc
    whvcrash.inf_loc
    whyperkbd.inf_loc
    WindowsTrustedRTProxy.inf_loc
    winusb.inf_loc
    wmbclass_wmc_union.inf_loc
    wmiacpi.inf_loc
    wnetvsc.inf_loc
    wnetvsc_vfpp.inf_loc
    wpdcomp.inf_loc
    wpdfs.inf_loc
    wpdmtp.inf_loc
    wpdmtphw.inf_loc
    ws3cap.inf_loc
    WSDPrint.inf_loc
    WSDScDrv.inf_loc
    wstorflt.inf_loc
    wstorvsc.inf_loc
    wsynth3dvsc.inf_loc
    WUDFUsbccidDriver.inf_loc
    wvmbus.inf_loc
    wvmbushid.inf_loc
    wvmbusvideo.inf_loc
    wvmgid.inf_loc
    wvmic_ext.inf_loc
    wvmic_guestinterface.inf_loc
    wvmic_heartbeat.inf_loc
    wvmic_kvpexchange.inf_loc
    wvmic_shutdown.inf_loc
    wvmic_timesync.inf_loc
    wvpci.inf_loc
    xboxgip.inf_loc
    xboxgipSynthetic.inf_loc
    xinputhid.inf_loc
    xusb22.inf_loc
    ykinx64.inf_loc
    _____ Workbook: ExplorerBefore Double Driver V DriverStore.xlsm ( Using Excel 2007 32 bit )
    Row\Col
    B
    C
    D
    E
    3867
    G:\Win 10 Devices\Before\DriverStore\FileRepository\usbstor. inf_amd64_c45fc8d7d5e0de02 usbstor.inf_amd64_c45fc8d7d5e0de02
    3868
    usbstor.inf
    3869
    usbstor.PNF
    3870
    USBSTOR.SYS
    3871
    Worksheet: DriverStore
    ….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. #220
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    10,458
    Rep Power
    10
    _____ Workbook: ExplorerBefore Double Driver V DriverStore.xlsm ( Using Excel 2007 32 bit )
    Row\Col
    B
    C
    D
    E
    F
    80
    G:\Win 10 Devices\Before\Double Driver Backup All\EG41MFT-US2H 09.02.2020 17-50-05\USB\USB Composite Device USB Composite Device
    81
    restore.ini
    82
    usb.inf
    83
    usbccgp.sys
    Worksheet: DDAllBefore








    _____ Workbook: ExplorerBefore Double Driver V DriverStore.xlsm ( Using Excel 2007 32 bit )
    Row\Col
    B
    C
    D
    E
    3811
    G:\Win 10 Devices\Before\DriverStore\FileRepository\usb.inf_ amd64_3b351e8afee70f3b usb.inf_amd64_3b351e8afee70f3b
    3812
    usb.inf
    3813
    usb.PNF
    3814
    usbccgp.sys
    3815
    Worksheet: DriverStore
    ….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. Windows 10 and Office Excel
    By DocAElstein in forum Test Area
    Replies: 934
    Last Post: 04-26-2022, 06:16 PM
  2. Office RibbonX - Large SubMenu Items Within A Dynamic Menu
    By mahat in forum Excel Ribbon and Add-Ins
    Replies: 5
    Last Post: 12-19-2014, 09:21 AM
  3. Replies: 4
    Last Post: 07-02-2013, 03:43 PM
  4. Replies: 1
    Last Post: 02-15-2013, 03:35 PM
  5. Using Office.CommandBar
    By Rasm in forum Excel Help
    Replies: 2
    Last Post: 12-03-2011, 06:04 AM

Posting Permissions

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