Multi-OEM/Retail Project {MRP} - Mk3

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

  1. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    6,320
    21,062
    210
    Let me toy with a few ideas....
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. Carlos Detweiller

    Carlos Detweiller Emperor of Ice-Cream

    Dec 21, 2012
    6,771
    7,711
    210
    The latest version still does not show MAC addresses. As I manage the MAC addresses myself, I need them to be in the main report. The external one is useful for the IP addresses, as they can be many and would overflow the GUI.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    6,320
    21,062
    210
    Ok.

    Will take me a while as just sorting the file requester for the default save location for all reports...
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    6,320
    21,062
    210
    Will probably only show the MAC for the connected ones, will have to see as i deleted the code and so have to start over :(
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    6,320
    21,062
    210
    Uploaded the special test version of GUI QT to the beta test area.

    On the 'Optional' tab you now have a button to change the default save location of 'ALL' results/logs to, during the running of the GUI QT, unless changed again. This will default to the Program's location if nothing, or cancel, is selected in the save location requester. All result logs will be saved at this new location unless changed via that button again.

    The save requester will be shown for SaveOnly command line running as before - this has not changed. Note that only saves the main Postable and Private logs, nothing else.

    If the button is not used then some external logs such as' IPConfig' and ' SystemInfo' ones may be saved in same location as the program.

    So if you want to change the default location BEFORE saving any logs via the GUI (not by saveonly parameter) use the [Save Location] button on the 'Optional' tab first!

    It is getting way too complicated in that area so i am not touching that code again unless there is a major issue.

    MAC Addresses will ONLY be shown in the Private results log. I may at some point show a obfuscated set in the GUI and the Postable log but for now i am too tired to mess about with that now, maybe tomorrow.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. Carlos Detweiller

    Carlos Detweiller Emperor of Ice-Cream

    Dec 21, 2012
    6,771
    7,711
    210
    That would be bad for laptops, having both WiFi and LAN. It's perfect how the old QT does it, didn't have any idea AutoIT is that limited... Many coders also use AutoHotKey instead of AutoIt, maybe it's easier?

    Also, to be clear, I'm only making proposals. You don't work for me or anybody else, here. Just make a note of the proposal and if it makes sense, work on it at your own pace. Don't feel yourself put under pressure, there is no deadline, it's done when it's done. Besides, the old QT didn't just stop working, I can still use it until the GUI one is truly ready to replace the old script bundle.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    6,320
    21,062
    210
    AutoHotKey is i think based on AutoIT principles but extended, to use that would mean a total re-write of the GUI QT and a whole new learning curve :(

    I think the main limitations with AutoIT is myself, im still learning and i found a lot of help on their forum (autoit) and a lot of #Include / Extended Routines - some are so complex i get a headache working out what does what and if i can use it.

    Regarding the MAC side, last night i was so tired, was working on the fixes etc since i got up around 5am and was still tweaking at 6pm, was a few small breaks for coffee making and food but a good solid 10 hours, longer than i have ever done even before my ill health!

    Sorry if i come across abrupt, that not my intention, i understand that you are just mentioning what would be nice to re-add and i agree that the GUI one isn't quite there yet.

    I will see what today brings with the MAC display by looking at the old QT's method and see if i can convert it somehow, if not then i will put it as a cmd file and run it and parse the results which isnt perfect but gets the job done. Have had to do that on a few other parts such as the 'previous OS/when upgraded' part as i just could not get the RegRead() to pull the info in the same way, there is RegReadEx() but understanding the syntax to use a wildcard like * confused me and the script so put that aside and used the good old cmd script way.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    6,320
    21,062
    210
    Interesting comparison - cmd (vbscript) and AutoIT's method:

    Vbscript:
    Code:
    :MakeAdaptsVBS
    (
    echo dim WMI:  set WMI = GetObject^("winmgmts:\\.\root\cimv2"^)
    echo dim Nads: set Nads = WMI.ExecQuery^("Select * from Win32_NetworkAdapter where physicaladapter=true"^)
    echo dim nad
    echo i = 1
    echo for each Nad in Nads
    echo    if not isnull^(Nad.MACAddress^) then Wscript.Echo i ^& "|" ^& Nad.MACAddress ^& "|" ^& Nad.description
    echo i = i + 1
    echo next
    echo.
    )>"NETAdapt.vbs"
    AutoIT:
    Code:
    $objWMIService = ObjGet("winmgmts:\\.\root\CIMV2")
    $colItems = $objWMIService.ExecQuery("SELECT * FROM Win32_NetworkAdapter where physicaladapter=true", "WQL", $wbemFlagReturnImmediately + $wbemFlagForwardOnly)
    
    If IsObj($colItems) then
       For $objItem In $colItems
          $Output = $Output & $objItem.AdapterType & "|"
          $Output = $Output & $objItem.Description & "|"
          $Output = $Output & $objItem.MACAddress & "|"
          $Output = $Output & $objItem.Manufacturer & "|"
          $Output = $Output & $objItem.NetConnectionStatus & "|"
          IF $objItem.Speed > 1 then $Output = $Output & $objItem.Speed
          IF $objItem.Speed < 1 then $Output = ""
          IF $i < 7 then $Adapt[$i] = $Output
          $Output = ""
          $i = $i + 1
       Next
    Else
        ; If errors usually a object does not exist on certain OS's - if not there show msgbox error.
        ; Msgbox(0,"WMI Output","No WMI Objects Found for class: " & "Win32_NetworkAdapter" )
    Endif
    It pulls same info, it must be how i am parsing later on :g:

    Link Speed i not use because most times it is null ??
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. Carlos Detweiller

    Carlos Detweiller Emperor of Ice-Cream

    Dec 21, 2012
    6,771
    7,711
    210
    That's the problem with the Internet, intentions, emotions and moods are things we cannot transfer (yet?). Thus, there will always be misunderstandings. I guess that's the main reasons emoticons have been introduced, now I just would have to remember to actually use them. :oops:
    Plus, the language barrier. I'm not a native English speaker (although I do hope that I'm writing stuff that makes sense at least partially). My posts are like Windows, they take a long time to make, and then I still have to edit them multiple times to patch out the errors.

    Edit: Link speed might refer to the set value, with 0 meaning Auto sense/negotiate? Just a guess.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    6,320
    21,062
    210
    :hug2:

    I take time to write as i try to make it (hopefully) be able to translate easy - sometimes it harder to write when it gets technical. I'm English born but have ancestral roots in the Netherlands (traced right back on my mothers side). I can understand some Dutch and German, not able to write much in those languages unless use a translator which can have some fun results, much like predictive text on a phone (which has got me into a lot of bother in the past!).

    Most times it is the frustration that takes hold along with the tiredness, but i am a workaholic and dont give in easy -my downfall i guess :D
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    6,320
    21,062
    210
    Link speed (when it works) gives results like 10, 100, 1000 which i think relates to mpbs, sometimes you get some really daft results like -20 and you are like wtf?? so i not use that set of results. It all depends (yet again) on the OS, w7 gives different link info to w8.x or w1x so i have to ignore it, or i end up writing more code to cover it all for little gain.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    6,320
    21,062
    210
    with AutoIT results (on my pc) i get:
    Code:
    Ethernet 802.3|Intel(R) Ethernet Connection (14) I219-V|FC:34:xx:xx:xx:30|Intel|2|1000000000
    With Vbscript:
    Code:
    1|FC:34:xx:xx:xx:30|Intel(R) Ethernet Connection (14) I219-V
    Obviously a bit more on autoit as i look for more :D but results are basically same, it has to be my parsing later on that i mess up on, so the info not the same as the old QT...

    Pity the FOR loops in AutoIT are not as extensive as cmd script i would get a lot more done simpler than the long winded multiple other commands to get same results...

    Example:

    Cmd =
    for /f "tokens=1-3 delims=|" %%A in ('CScript //nologo "NETAdapt.vbs" 2^>Nul') do (

    Autoit:
    You have to use StringSplit() to 'delim' the | and split into an array, so much farting about, yeah you get more control they say but gez talk about dragging things out :D :D
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  13. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    6,320
    21,062
    210
    After a quite a bit of re-coding in the result lines, managed to get a obfuscated output on the GUI/Postable reports for the networking side to show xx on some MAC address parts to look same as the old QT did. Private reports will always have the full MAC address.

    Example:
    Code:
    ===================================================================================================================
                                            Network Adaptor Information                                            
    ===================================================================================================================
    Adaptor 1 Name                  : Intel(R) Ethernet Connection (14) I219-V
    Connection Status               : Connected
    MAC Address                     : FC:34:97:xx:xx:30
    The only difference between the old QT and GUI QT is the Connection status line.

    Cant fit all on one line in the GUI for each adaptor as not enough space so they on separate lines.

    Only the first 7 adaptors will be listed due to space restrictions, the IPConfig button will show all adaptors in that report so i dont think this is a major restriction.

    Uploaded to beta test area for the moment until all is ok then i will release to public. :)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    6,320
    21,062
    210
    Have tested this latest GUI QT , fixed a small issue in the VideoDAC type which now should show N/A instead of a blank line when it not found due to the graphics 'driver' being the default M$/Standard/Basic one which not have much results from the WMI call.

    Now when saving reports alongside the time i have added the 'computer name' (filtered to prevent filename special character conflicts). There has been a slight change in the SystemInfo and IPConfig filenames to include the time and filtered computer name, this makes all saved logs have a sort of standard format for quick identification (hopefully). :)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  15. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    6,320
    21,062
    210
    #9475 mxman2k, Dec 22, 2022
    Last edited: Dec 22, 2022
    (OP)
    GUI QT v0.10.4.11 uploaded, post #3 updated with new download link and hashes. :)

    1) Fixed Video DAC Type issue, hopefully no blank line when non existent data.

    2) Updated Network info to include MAC address (partial in GUI and Postable report), full MAC address in Private reports.

    3) Added the 'computer name' to all saved log files plus 'time' to systemInfo and IPConfig txt file names.

    4) Filtered the 'computer name' when used on saved logs to prevent special characters causing issues, some spaces may be changed to _ or removed to allow a 'cleaned' filename result.

    Other non descript code tweaks been done along the way which not affect the logs, just internal housekeeping to reduce code foot print.

    All appears OK on Win7, W10 and W11. Not tested Vista (or Servers) or w8.x but should be ok with the possibility that those other OS's may have limitations on the results due to WMI objects/properties not available or just too old to let the code work properly.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  16. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,209
    90,791
    340
  17. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    6,320
    21,062
    210
    Hmm still cant get that memory type bit to work on w8.x :( it should of put N/A or Wmi Object not found on this OS :g:

    Gets all rest of the data ok where it can so thanks for testing on w8.x @abbodi1406 :hug2:
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  18. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    6,320
    21,062
    210
    wmic memphysical get MaxCapacityex, MemoryDevices

    Windows Server 2012 R2, Windows 8.1, Windows Server 2012, Windows 8, Windows Server 2008 R2, Windows 7, Windows Server 2008 and Windows Vista: This property is not supported.

    It works on w7 though :g: im sure m$ not know its arse from its elbow at times :D:D
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  19. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    6,320
    21,062
    210
    #9479 mxman2k, Dec 22, 2022
    Last edited: Dec 22, 2022
    (OP)
    Fixed the Memory Type for win 8.x :)

    Took a few attempts but had to resort to registry reading and do some maths to get the result for a OS below w10. :D

    Also added the motherboard's max ram capacity, this isn't per slot!, it could mean a single slot or just two out of four slots, it what the makers give as a safe total ram capacity.

    Still need to sort the disk # and partition # information on w8.x core/home for me not been anywhere near that section/tab :g: -- the routine does not seem to work, looking at code i am guessing the WMI objects are not present... Will sort another time, had enough coding for today :D

    Just added a line for the partition/disk info when it is blank, it now should say 'Unable to read information, possible WMI error ' or words to that effect.

    Code:
    -------------------------------------------------------------------------------------------------------------------
                                                 Query Tool GUI v0.10.4.14
    -------------------------------------------------------------------------------------------------------------------
    
    Log Date {UTC}: 12/22/2022 -- 18:02 {24-hour}
    
    Some results may be shortened to fit the output stage, such as RAM information or storage drive names.
    
    This is the postable report that does not contain full serial or sensitive information.
    
    GUI Font Used : Lucida Console Size: 11
    
    ===================================================================================================================
                                                 Operating System Information
    ===================================================================================================================
    Installation Type               : Client
    Name                            : Microsoft Windows 8.1
    OS/CPU Architecture             : CPU and OS is 64 bit
    Build                           : 6.3.9600 {UBR:18687}
    Initial Full Build Information  : 9600.18685.amd64fre.winblue_ltsb.170427-1704
    Setup/Install Locale            : English (United States)
    Input Language                  : English - United Kingdom {2057}
    Installed/Available Languages   : en-US
    Stock Keeping Unit {SKU}        : 101
    Experience Pack                 : N/A
    Installation Date               : 12/22/2022 at 14:35 PM {UTC}
    Shipped with Reserved 7GB       : N/A
    Dirty Shutdown Count            : N/A
    Build Branch                    : N/A
    Product ID                      : 00258-61742-04744-AAOEM  {Extended: 06401-02586-174-204744-02-2057-9600.0000-3562022}
    TimeZone {TZUtil}               : GMT Standard Time
    Hours offset from GMT           : 0
    Daylight Saving In Effect       : No
    Daylight Adjust Clock Mode      : Enabled/Checked
    Upgrade or Clean Installation   : Clean
    Previous OS Upgraded From       : N/A
    Hypervisor Present              : No
    Virtual Machine Data            : This computer does not appear to be a virtual machine
    
    Windows Key 1 Installed         : 29WJQ (Last 5 digits shown)
    Windows DpID4 Installed         : 29WJQ (Last 5 digits shown)
    Windows Default Installed       : D3VPT (Last 5 digits shown)
    Windows Default4 Installed      : D3VPT (Last 5 digits shown)
    
    TPM Information                 : N/A
    
    StorageSense Policy             : N/A on this OS
    Number of Licensed Users        : 1
    Data Execution Prevention       : OptIn/Default {Ref: 2}
    DEP Available                   : Yes
    DEP 32Bit Applications          : Yes
    DEP Drivers                     : Yes
    DEP Support Policy              : Enabled for OS Kernel, essential binaries and all Windows-based Services.
    Clipboard History Service       : N/A on this OS
    Clipboard History               : N/A on this OS
    Allow Cross Device History      : N/A on this OS
    Allow Clipboard History         : N/A on this OS
    Current Power Policy Used       : Home/Office Desk
    Power Plans Available           : Balanced Only {Others may be 'hidden'}
    Current Active Power Plan       : Balanced
    Long File Paths Enabled         : N/A
    Part of a Domain                : No
    Domain/Device Role              : Standalone Workstation {Ref: 0}
    Portable OS {Win to Go}         : No
    Feature Update Status           : N/A on this OS
    Quality Update Status           : N/A on this OS
    WSH Availability Status         : Windows Scripting Host is not restricted. {All Users}
    WSH 'DisplayLogo' Value         : Enabled {1} [All Users]
    HVCI Protection Status          : N/A
    Download Over Metered Internet  : No
    Exclude WU Drivers              : No
    
                                         ===== Windows 11 Checks =====
    Checked for W11 Target Upgrade  : No
    Target Build Number             : N/A
    Device is OEM Specific          : N/A
    DirectX 12 Detected             : N/A
    Device is Genuine               : N/A
    Touch Capable Hardware          : N/A
    22H2 UpgradeExperience {1}      : N/A
    22H2 UpgradeExperience {2}      : N/A
    22H2 UpgEx Red Fail Reason Info : N/A
    Bypass TPM Check                : N/A
    Bypass Secure Boot Check        : N/A
    Bypass RAM Check                : N/A
    Allow W11 WU Upgrade            : Yes {1}
    
    Red Fail Reason Notes: If any listed then those are not compatible.
    On the W11 checks, if 'N/A' is shown then the data may not of been fully compiled by the OS or via WU yet.
    
    ===================================================================================================================
                                      Booted System Drive Partition Information
    ===================================================================================================================
    Drive Type                      : SSD
    BUS Type                        : SATA
    Total Space                     : 446.61 GB
    Free Space                      : 428.45 GB
    Partition Type                  : GPT
    Firmware Boot Type              : UEFI Mode {R:1}
    Secure Boot Status              : Disabled [Ref:1]
    File System                     : NTFS
    System Drive Letter             : C:
    
    Interface Information           : What mode an interface is in
    IDE Controller Mode             : Advanced Host Controller Interface {AHCI}
    SCSI Controller Mode            : Microsoft Storage Spaces
    
    Disk and Partition Information  : Driveletter | Disk #, Partition # | Model Name {50 Chars max} | Size 'GB'
    
    Drive letters/Partitions are shown as they are defined via the connected ports in the BIOS.
    
    ===================================================================================================================
                                              Memory Information                                                
    ===================================================================================================================
    Total Physical                  : 8306832 KB (7.92 GB)
    Available Physical              : 7531524 KB (7.18 GB)
    Total Page Size                 : 10272912 KB (9.8 GB)
    Available Page Size             : 9573672 KB (9.13 GB)
    Total Virtual Size              : 4194176 KB (4 GB)
    Available Virtual               : 4004684 KB (3.82 GB)
    Memory Type                     : DDR3 {24}
    Memory Error Correction         : Non-ECC
    Memory Slots Fitted             : 2
    Motherboard's Max Memory        : 16 GB
    DIMM Information {First Four}   : ChannelB-DIMM0 8192MB @ 1600MHz
    
    ===================================================================================================================
                                              Graphics Information                                              
    ===================================================================================================================
    Adaptor Name                    : Microsoft Basic Display Adapter
    Adaptor DACType                 : N/A
    Adaptor Driver Information      : 6.3.9600.16384 {2006/06/21}
    Adaptor Status                  : Active
    
    Adaptor Name                    : Not Detected
    Adaptor DACType                 : N/A
    Adaptor Driver Information      : N/A
    Adaptor Status                  : Inactive
    
    Virtual Desktop Resolution      : 1366 x 768
    Bits Per Pixel                  : 32
    Video Mode Description          : 1366 x 768 x 4294967296 colors {Ref:1}
    
    Some values may not be accurate due to 32 bit API limitations.
    
    ===================================================================================================================
                                            Network Adaptor Information                                        
    ===================================================================================================================
    Adaptor 1 Name                  : Realtek PCIe GBE Family Controller
    Connection Status               : Media Disconnected
    MAC Address                     : 2C:60:0C:xx:xx:F1
    
    ===================================================================================================================
                                              Processor 1 Information                                          
    ===================================================================================================================
    Name                            : Intel(R) Core(TM) i3-4005U CPU @ 1.70GHz
    Architecture  {Bits}            : 64
    L2 Cache Size {MB}              : 256
    L3 Cache Size {MB}              : 3072
    Current / Max Speed {MHz}       : 1300 / 1700 {Not Turbo Speed}
    Physical Cores                  : 2
    Logical Cores                   : 4
    Processor Id                    : BFEBFBFF00040651
    Virtualization Mode             : Enabled
    Manufacturer                    : GenuineIntel [Intel]
    Description                     : Intel64 Family 6 Model 69 Stepping 1
    Motherboard Connection          : U3E1
    OS Loaded Microcode Revision    : 0x000000001C000000
    Bios Microcode Revision         : 0x000000001C000000
    Processor Family                : 206
    Sockets/CPU's Present           : 1
    
    Motherboard Connection is based on a OS internal database, MS may not have updated it.
    Microcode registry values are converted from binary to hexadecimal, not reliable for all devices.
    
    ===================================================================================================================
                                                 DMI/BIOS Information                                          
    ===================================================================================================================
    System Manufacturer             : TOSHIBA
    System Product Name             : SATELLITE L50-B
    BaseBoard Manufacturer          : Type2 - Board Vendor Name1
    BaseBoard Product               : Type2 - Board Product Name1
    BaseBoard Version               : Type2 - Board Version
    PC System Type                  : Mobile {Ref: 2}
    
    BIOS Vendor                     : INSYDE Corp.
    BIOS Release Date               : 10/08/2014
    BIOS Version                    : 1.90
    Primary BIOS                    : Yes
    SMBIOS Present                  : Yes
    SMBIOS Version                  : 2.7
    SLIC/BIOS Data                  : TOSQCI - 1
    
    Valid SLIC Name                 : Toshiba
    Possible Brand Theme            : Toshiba {System Manufacturer}
    
    SLIC Table Status               : SLIC table with valid marker present  {v2.1}
    Emulated SLIC                   : Not required/used for this OS
    
    MSDM Key Description            : TOSQCI|Toshiba
    MSDM Key Detected               : 29WJQ (Last 5 digits shown)
    MSDM Key OS Version/Edition     : Win 8.1 Core
    
    ===================================================================================================================
                                              Miscellaneous Information                                        
    ===================================================================================================================
    Which MRP Version Used          : CY22M12D21-R149.TV1
    
    Wallpaper Style                 : Fill image to display resolution
    Current Theme Used              : $OEM$.theme
    
    Installed Dot Net Frameworks    : 2.0  3.0  3.5  4.6  4.0
    Installed Powershell Versions   : 1.0, 2.0, 3.0, 4.0
    
    Security Product Name{s}        : Windows Defender
    Defender Tamper Protection      : Disabled
    Defender Service Status         : Manual
    Defender Code Integrity Mode    : N/A
    Defender Credential Guard       : N/A
    Windows Firewall Service State  : Running {Reg: Auto}
    
    Windows Activation Status       : Windows is in Notification mode
    Windows Licence Reason          : C004F009
    Windows Product Key Channel     : OEM Digital Marker {OEM_DM} {R:PKC}
    Device has KMS Enabled          : No
    KMS Auto Renewal (hook)         : No
    
    MS Office {MSI/Traditional}     : Not Detected
    C2R MS Office                   : Not Detected
    C2R Excluded Apps               : N/A
    C2R Last Update Channel         : N/A
    C2R Office Activation Status    : N/A
    C2R Partial Product Key         : N/A
    Office Reason Information       : No reason information to show/No Issues
    Office MAK/KMS Information      : No MAK or KMS activation detected
    
    -------------------------------------------------------------------------------------------------------------------
    

    Will upload this one shortly as it close to being fully operative on all OS's....
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  20. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    6,320
    21,062
    210
    Uploaded latest GUI QT , post #3 updated with new download link and hashes. :)

    See previous post for details.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...