Wanted Key-Cert-Branding Project

Discussion in 'Windows 7' started by Suicide Solution, Oct 20, 2009.

  1. Mr Jinje

    Mr Jinje MDL Expert

    Aug 19, 2009
    1,770
    1,101
    60
    Can you make it so that a label displays the current slic in case a bios modder doesn't know which SLIC they have ?
     
  2. nononsence

    nononsence MDL Addicted

    Aug 18, 2009
    806
    826
    30
    I have added the oemID as a tooltip for the comboboxes
     
  3. Hazar

    Hazar MDL Guru

    Jul 29, 2009
    2,507
    456
    90
    Yeah I usually use WMI BIOs version for that
     
  4. Lich King

    Lich King MDL Addicted

    Sep 24, 2009
    500
    24
    30
    So, wen can we expect the final outcome?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. nononsence

    nononsence MDL Addicted

    Aug 18, 2009
    806
    826
    30
    It's pretty close now, waiting on bug reports, I am continuing on trying
    to break it.
     
  6. PAYMYRENT

    PAYMYRENT MDL Developer

    Jul 28, 2009
    1,460
    420
    60
    #66 PAYMYRENT, Oct 22, 2009
    Last edited by a moderator: Apr 20, 2017
  7. nononsence

    nononsence MDL Addicted

    Aug 18, 2009
    806
    826
    30
    #68 nononsence, Oct 22, 2009
    Last edited by a moderator: Apr 20, 2017
  8. Suicide Solution

    Suicide Solution MDL Addicted

    Apr 29, 2008
    534
    2,003
    30
    Looking good... appreciate the time and effort getting this moving forward.
     
  9. PAYMYRENT

    PAYMYRENT MDL Developer

    Jul 28, 2009
    1,460
    420
    60
  10. nononsence

    nononsence MDL Addicted

    Aug 18, 2009
    806
    826
    30
    I did put some error handling in for a bad keys.ini so I dont get
    the jit box, ill just move the borked file and poop out a new one.
     
  11. nononsence

    nononsence MDL Addicted

    Aug 18, 2009
    806
    826
    30
  12. PAYMYRENT

    PAYMYRENT MDL Developer

    Jul 28, 2009
    1,460
    420
    60
  13. nononsence

    nononsence MDL Addicted

    Aug 18, 2009
    806
    826
    30
  14. PAYMYRENT

    PAYMYRENT MDL Developer

    Jul 28, 2009
    1,460
    420
    60
    i fixed it...
     
  15. nononsence

    nononsence MDL Addicted

    Aug 18, 2009
    806
    826
    30
    are you just ignoring lines with more than 3 , or |
     
  16. PAYMYRENT

    PAYMYRENT MDL Developer

    Jul 28, 2009
    1,460
    420
    60
    #77 PAYMYRENT, Oct 22, 2009
    Last edited by a moderator: Apr 20, 2017
    no im telling the program to replace the extras with this "" like this v

    Code:
    
                                    key = line.Substring(l + 1)
                                    If key.Contains(",") = True Then
                                        key = key.Replace(",", "")
                                    End If
    
    
    but that has its own issues
     
  17. nononsence

    nononsence MDL Addicted

    Aug 18, 2009
    806
    826
    30
    #78 nononsence, Oct 22, 2009
    Last edited by a moderator: Apr 20, 2017
    ahhh very clever
     
  18. PAYMYRENT

    PAYMYRENT MDL Developer

    Jul 28, 2009
    1,460
    420
    60
    im still working on the osversion and brand parts of it
     
  19. PAYMYRENT

    PAYMYRENT MDL Developer

    Jul 28, 2009
    1,460
    420
    60
    #80 PAYMYRENT, Oct 22, 2009
    Last edited by a moderator: Apr 20, 2017
    wouldnt that just skip it?

    edit:

    for your program you can do this

    Code:
    
                    If line = String.Empty Or line.Contains(",") > 3 Then
               MessageBox.Show("A corrupted keys.ini has been replaced,Program will restart to continue.")
                System.IO.File.Move("keys.ini", "keys.bak")
                If System.IO.File.Exists("Keys.ini") = False Then
                    My.Computer.FileSystem.WriteAllBytes("keys.ini", My.Resources.keys_ini, True)
                End If
    Application.Restart()
                    Else
    
    
    its not diplaying the code properly on my machine :p