WindSLIC boot CD

Discussion in 'MDL Projects and Applications' started by nononsence, Sep 3, 2009.

  1. PAYMYRENT

    PAYMYRENT MDL Developer

    Jul 28, 2009
    1,460
    420
    60
    #81 PAYMYRENT, Oct 11, 2009
    Last edited: Oct 11, 2009
    no problem
     
  2. tuvi123

    tuvi123 MDL Addicted

    Jul 29, 2009
    623
    86
    30
    nononsence
    Please add this:
    - Samsung cert+slic.
    - zsmin glrdr v0.95
    - status like Daz (automated activation cheacking).
    this seems to be a nice loader.
    I like the progress bar, I have suggested Daz to do this long ago...
    installation is very fast.

    thank you.
     
  3. Alphawaves

    Alphawaves Super Moderator/Developer
    Staff Member

    Aug 11, 2008
    6,222
    22,281
    210
    #83 Alphawaves, Oct 12, 2009
    Last edited: Oct 12, 2009
    It is easy to add them yourself, have you a link to zsmins latest grldr ?


    nononsence:
    PHP:
    Private Sub Button1_Click(ByVal sender As System.ObjectByVal e As System.EventArgsHandles Button1.Click
            
    '==================================================================================
            '
    check if windows activated
            
    '==================================================================================

            Dim objMgmt As System.Management.ManagementObject
            Dim LicenseStatus As New System.Management.ManagementObjectSearcher("root\CIMV2", "SELECT * FROM SoftwareLicensingProduct")
            For Each objMgmt In LicenseStatus.Get
                If objMgmt("LicenseStatus") = "1" Then
                    Label1.Text = "Licensed"
                    Exit For
                Else
                    Label1.Text = "Unlicensed"
                End If
            Next
        End Sub

        Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            Label1.Text = "Unknown"
        End Sub

    Thanks:)

    Alfa:);)
     
  4. tuvi123

    tuvi123 MDL Addicted

    Jul 29, 2009
    623
    86
    30
    yes but I dont know if zsmin allow me to share it.
     
  5. Alphawaves

    Alphawaves Super Moderator/Developer
    Staff Member

    Aug 11, 2008
    6,222
    22,281
    210
    No problem you would need to ask him first.

    Alfa:);)
     
  6. Lich King

    Lich King MDL Addicted

    Sep 24, 2009
    500
    24
    30
    I've a question.. i've slic 2.1 in my BIOS.. should i check "SLIC in bootmgr" or not? thanks..

    Or pls.. explain the two check box function in first post.. just a suggestion.. thanks..
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. tuvi123

    tuvi123 MDL Addicted

    Jul 29, 2009
    623
    86
    30
    ƒreeman
    no, you should check "no bootloader" option.

    no bootloader- means no loader, only cert and key will be installed.
    slic in bootmgr- means that the slic2.1 table information will be placed inside windows own bootloader manager, grub4dos bootloader will not be used.
     
  8. PAYMYRENT

    PAYMYRENT MDL Developer

    Jul 28, 2009
    1,460
    420
    60
    #88 PAYMYRENT, Oct 12, 2009
    Last edited by a moderator: Apr 20, 2017

    if you do it like this it does it faster

    put a label on the form called act and a background worker

    and add this code


    Code:
    
       Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            BackgroundWorker1.RunWorkerAsync()
        End Sub
    
    
        Private Sub BackgroundWorker1_DoWork(ByVal sender As System.Object, ByVal e As System.ComponentModel.DoWorkEventArgs) Handles BackgroundWorker1.DoWork
            Dim actstatus As String
            actstatus = String.Empty
            Dim objMgmt As System.Management.ManagementObject
            Dim LicenseStatus As New System.Management.ManagementObjectSearcher("root\CIMV2", "SELECT * FROM SoftwareLicensingProduct")
            For Each objMgmt In LicenseStatus.Get
                If objMgmt("LicenseStatus") = "1" Then
                    actstatus = "Licensed"
                    Exit For
                Else
                    actstatus = "Unlicensed"
                End If
            Next
            e.Result = actstatus
        End Sub
    
        Private Sub BackgroundWorker1_RunWorkerCompleted(ByVal sender As Object, ByVal e As System.ComponentModel.RunWorkerCompletedEventArgs) Handles BackgroundWorker1.RunWorkerCompleted
            act.Text = e.Result
        End Sub
    
    
     
  9. Lich King

    Lich King MDL Addicted

    Sep 24, 2009
    500
    24
    30
    thanks a lot mate for clearing things up.. appreciate it brother.. :)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. Alphawaves

    Alphawaves Super Moderator/Developer
    Staff Member

    Aug 11, 2008
    6,222
    22,281
    210
    #90 Alphawaves, Oct 12, 2009
    Last edited: Oct 12, 2009
    PAYMYRENT :);) Thanks thats cool.

    nononsence thanks thats a great addition :)

    Alfa:);)
     
  11. nononsence

    nononsence MDL Addicted

    Aug 18, 2009
    806
    826
    30
    Holy crap I cant keep up.

    added PAYMYRENT's License status and custom key code

    added FSC, Samsung, Toshiba-TOSAUS, Toshiba-TOSQCI SLIC and Certificates.

    Thank You to PAYMYRENT for the great code additions.
     
  12. Alphawaves

    Alphawaves Super Moderator/Developer
    Staff Member

    Aug 11, 2008
    6,222
    22,281
    210
  13. dssnobie

    dssnobie MDL Novice

    Oct 7, 2009
    7
    0
    0
    It does the job. Great work.

    Thank you
     
  14. nononsence

    nononsence MDL Addicted

    Aug 18, 2009
    806
    826
    30
    tweeked the gui to work better with the licensing status info
     
  15. kevinrogers1977

    kevinrogers1977 MDL Novice

    Oct 12, 2009
    4
    0
    0

    Attached Files:

  16. tuvi123

    tuvi123 MDL Addicted

    Jul 29, 2009
    623
    86
    30
    nononsence
    Does open 7 activator use zsmin loader v0.95?
     
  17. kevinrogers1977

    kevinrogers1977 MDL Novice

    Oct 12, 2009
    4
    0
    0
  18. nononsence

    nononsence MDL Addicted

    Aug 18, 2009
    806
    826
    30
    Im pretty sure I put v0.94 in a few days ago. Is v0.95 another Daz only
    release? what is diffrent from version v0.94?
     
  19. luky

    luky MDL Addicted

    Dec 21, 2008
    729
    33
    30
    nononsence

    Note:

    1.Bootloader is zsmin v0.93 ( Preactivation kit v2.6.)
     
  20. nononsence

    nononsence MDL Addicted

    Aug 18, 2009
    806
    826
    30
    #100 nononsence, Oct 12, 2009
    Last edited: Oct 12, 2009
    (OP)
    Ill double check, whats in this project, and make an Acer one for the
    Preactivation kit v2.6

    EDIT: found this in the GRLDR file in this project "ACPI TABLE LOADER 0.94" im assuming that it is v0.94