Jump to content

ShAmmY1989

Downloads Mod
  • Content Count

    812
  • Donations

    $0.00 
  • Joined

  • Last visited

  • Days Won

    118

Posts posted by ShAmmY1989


  1. How to find Windows product key using Windows

     

     

     

    Set WshShell = CreateObject("WScript.Shell")

    MsgBox ConvertToKey(WshShell.RegRead("HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DigitalProductId"))
     
    Function ConvertToKey(Key)
    Const KeyOffset = 52
    i = 28
    Chars = "BCDFGHJKMPQRTVWXY2346789"
    Do
    Cur = 0
    x = 14
    Do
    Cur = Cur * 256
    Cur = Key(x + KeyOffset) + Cur
    Key(x + KeyOffset) = (Cur \ 24) And 255
    Cur = Cur Mod 24
    x = x -1
    Loop While x >= 0
    i = i -1
    KeyOutput = Mid(Chars, Cur + 1, 1) & KeyOutput
    If (((29 - i) Mod 6) = 0) And (i <> -1) Then
    i = i -1
    KeyOutput = "-" & KeyOutput
    End If
    Loop While i >= 0
    ConvertToKey = KeyOutput
    End Function

     

    Open Notepad and save its as productkey.vbs by choosing the “All Files” option in “Save as type”.

    After saving this file, just click on it and a new popup window will show your Windows product key. You can copy or note this down somewhere to use it later.

    :cprocks:  :handshake: 

    • Like 1

  2. How to automatically repeat YouTube videos

     

     

    xtkhCEG.jpg

     

     

    1. Erase everything in front of youtube, so in our example we are erasing "www."

    2. After youtube type repeat to make the above example URL the URL shown below and then press enter.

    youtuberepeat.com/watch?v=uIIUgRa8mIM
    

    3. After pressing enter, you are forwarded to the link below, which will repeat your video until you close the page. This page also has a repeat counter to let you know how many times the video has been repeated.

×