Multi-OEM/Retail Project {MRP} - Mk3

Discussion in 'MDL Projects and Applications' started by mxman2k, Oct 15, 2016.

  1. mad_max

    mad_max MDL Junior Member

    Mar 31, 2014
    77
    40
    0
    That is true. MSInfo32 give me the same value: 1 073 741 824 bytes.
     
  2. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,209
    90,793
    340
    @mad_max
    does this work in Win7 powershell?
    Code:
    [uint32]('0x{0:x}' -f  -1073741824)
     
  3. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    6,324
    21,065
    210
    At times i get frustrated that i think i got a decent solution for something and then m$ go and screw it all up. :(

    It seems like they not fixed it, or they may have with a update?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    6,324
    21,065
    210
    I try to avoid powershell stuff so would have to make something with vbs or AutoIT which could convert if a negative number found in the adapterram result... :g:

    may take me a while to work something out. :D
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,209
    90,793
    340
    I read that vbs don't recognize 32-bit unsigned integer :)
     
  6. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    6,324
    21,065
    210
    damn - see i cant win :D:D
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. l30

    l30 GFX Wizard

    Apr 14, 2014
    465
    572
    10
    Velocity Micro Source Updated
    VELOCITY_BADGE.PNG
     

    Attached Files:

  8. mad_max

    mad_max MDL Junior Member

    Mar 31, 2014
    77
    40
    0
    Yes it does. The result is: 3221225472
     
  9. l30

    l30 GFX Wizard

    Apr 14, 2014
    465
    572
    10
    Vestel Source Updated
    VESTEL_BADGE.PNG
     

    Attached Files:

  10. l30

    l30 GFX Wizard

    Apr 14, 2014
    465
    572
    10
    Viliv Source Updated
    VILIV_BADGE.png
     

    Attached Files:

  11. l30

    l30 GFX Wizard

    Apr 14, 2014
    465
    572
    10
    VMWARE Source Updated
    VMWARE_BADGE.PNG
     

    Attached Files:

  12. l30

    l30 GFX Wizard

    Apr 14, 2014
    465
    572
    10
    Finally updated all the OEM Sources, It feels so good to be part of this project, I really really want to thank you for making this project awesome and must have tool for windows installation. You can literally save hours of struggle in tweaking your system by using this project.
    Thank you very very much @mxman2k
     
  13. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    6,324
    21,065
    210
    your welcome, there is still much to do as new tweaks appear that can be safely added.

    Many thanks for all your help with the oems. :hug2:

    The Toshiba (original OEM) may need a new set of wallpapers as they a bit 'bland' but i will see if i can find something at a later date. :)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    6,324
    21,065
    210
    all oems added :)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  15. l30

    l30 GFX Wizard

    Apr 14, 2014
    465
    572
    10
    I found some Toshiba Wallpapers

    WALLPAPER2.jpg
    Wallpaper 2
    WALLPAPER3.jpg
     

    Attached Files:

  16. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    6,324
    21,065
    210
    #4696 mxman2k, Feb 11, 2019
    Last edited: Feb 11, 2019
    (OP)
    with a bit of messing about i believe i have 'fixed' that uint32 limitation using a bit of extra code. :)

    may not be pretty but as long as it converts to the correct number without minus signs etc who cares :p

    Convert the adaptor ram to hex then with a bit of Jscript convert back to decimal. Sorted. Tried with wacky numbers and as long as it not over 999GB it should work ok.

    Test script using the minus number for a test on 'Adaptor 2' -- Adaptor 1 is my 1050ti to show it still works with normal large numbers :)
    Code:
    
    
    Before Convert : 4293918720 [hex: FFF00000]
    After Convert  : 4293918720
    
    Before Convert : -1073741824 [hex: C0000000]
    After Convert  : 3221225472
    
    Adaptor 1 Info             : NVIDIA GeForce GTX 1050 Ti [Active] | VRam: 4 GB
    Adaptor 1 Other Data       : Resolution: 1920x1080 | Bpp: 32 | Driver Date: 2018-01-03 | Driver Vers: 23.21.13.9065
    
    Adaptor 2 Info             : Other GPU Test Line [Active] | VRam: 3 GB
    Adaptor 2 Other Data       : Resolution: 1920x1080 | Bpp: 32 | Driver Date: 1234-56-78 | Driver Vers: xx.xx.xx.xxxx
    
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  17. Carlos Detweiller

    Carlos Detweiller Emperor of Ice-Cream

    Dec 21, 2012
    6,771
    7,713
    210
    Did you miss my post (#4654)? :oops:
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  18. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    6,324
    21,065
    210
    nope :) although i had tried to show partial numbers but for some reason it messed up all the alignment and could not get it to work, hence why i left them as all xx:xx...

    with all the things going on i not had time to answer before sorry :oops:
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  19. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    6,324
    21,065
    210
    #4699 mxman2k, Feb 11, 2019
    Last edited: Feb 11, 2019
    (OP)
    Query Tool v89.0 has been uploaded, 2nd post download link, password and hashes updated.

    Pulled due to a error checking failure. Fixed in v90.

    Same summary.

    Sorry for yet another release so soon. But i not like to have something not working properly.

    + Hopefully now at last fixed the odd glitch under Windows 7 if a Graphics adaptor has 1GB and below 4GB vRAM fitted. It was not a 'bug' within the Query Tool but one that was within the older OS itself. Even MSInfo32.exe would show incorrect data!

    + Added message if a graphics adaptor is not 'active' at time of the test that the QT is unable to show the extra information.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  20. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,679
    103,532
    450