[Repository:] Everything about Windows RT (WOA) v8-x-x and v10 ARM

Discussion in 'Windows 8' started by moderate, Oct 10, 2014.

  1. #321 Deleted member 97199, Dec 27, 2017
    Last edited by a moderator: Dec 27, 2017
    I can't install it due to sign error message. How to sign it off?

    Ok I got I need to jail my rt. Sorry for noobish.
     
  2. #322 Deleted member 97199, Dec 28, 2017
    Last edited by a moderator: Dec 28, 2017
    Dear moderate I need help here. After reisntall all updates there is a bug in the Store and I install all of my buyed emulators well. So I need to back it up. Ya advice me early how to obtain appxbundke an licenses. Okay. But I really stuck in sideloading it back with dism. Can ya help me please a lil more? BTW Hereafter2 isn't in touch at all. I think it would be great to share his works for the history and community.
     
  3. #323 Deleted member 97199, Dec 30, 2017
    Last edited by a moderator: Jan 1, 2018
    Finely I've backup all of my emulators from Hereafter2 dev stil available for redownload (thanks MS for this bug). It's an NES/SNES/GEN etc consoles. Have the question do I need to convert lic to OEM? And I can't sideload app. Error for image mount acces. Do I need to jail my tab for sideloading? I try to jail it with secure boot but i have WinRT8.1 and it seems that it wont works for it (at least at xda-dev is noted that WinRT 8.1. can be bricked up with that method). Please help guys...
     
  4. There is missmatch in it. The right command is start from "dism /Online" not form "dism /Image:C:\Mount". I can sideload my appxs finaly.
    I buy VueScan and its fine.
    Unfortunately I still can't get securebot unlock. Do I miss something? Some ppl have it at 8.1. I think about to use downgrade but at xda-dev says I can get a brick.
     
  5. moderate please update direct links for Meltdown n Spectre patches for arm.
     
  6. adamistr0

    adamistr0 MDL Novice

    Jan 4, 2018
    9
    0
    0
    Does anybody here have image for Samsung ATIV Tab GT-P8510?
    File in main post was deleted.
    Thanks
     
  7. adamistr0

    adamistr0 MDL Novice

    Jan 4, 2018
    9
    0
    0
    OK thanks. But before I load the new system, do I have to backup the Product key? Because I have Bitlocker on C: and can't get to Win or anything. Only cmd. I tried running that ProductKeyFinder.bat, but it doesn't work.

    I only need to use "Reser your PC" in recovery, will that only repair it, or completely rewrite everything?
    Can I even use that system recovery for this?

    Sorry for my low knowledge. I am used to tablets with classic Windows, where things works fine.
     
  8. #330 Deleted member 97199, Jan 5, 2018
    Last edited by a moderator: Jan 5, 2018

    Attached Files:

  9. adamistr0

    adamistr0 MDL Novice

    Jan 4, 2018
    9
    0
    0
    I didn't install anything yet.
    Sadly it wasn't mine until yesterday. Seller had the key on USB but formated it...
    That .bat is the same as I tried before, it gives me "ERROR: The system was unable to find specified registry key or value. Got invalid header trying to run reg.exe"
    Maybe it's because of Bitlocker, or seller tried some bulls**t with that. I don't know.

    I don't have my recovery, I'm waiting for one from Moderate.
    I thought that recovery will just work, or do I have to integrate more stuff in it?
     
  10. Recovery must have all need stuff, drivers and installed keys. Me to need info from moderate coz almust no one can help.
     
  11. itsmemario1

    itsmemario1 MDL Expert

    Sep 10, 2012
    1,047
    280
    60
  12. adamistr0

    adamistr0 MDL Novice

    Jan 4, 2018
    9
    0
    0
    Just reminding about that Samsung Ativ GT-P8510 recovery
    Thanks
     
  13. Finaly i did it! Reinstall WinRT fromscratch via OEM winblue disk (save activation key at preinstalled WinRT, got all the drivers, integrate in into dist, remove bitlocker from components etc.) And I got clear speedy WinRT tab. Secure Boot removed well too. I'm feel fine)
     
  14. I just cant find Defender in components to removal with WinToolkit.
     
  15. moderate

    moderate MDL Guru

    Aug 31, 2009
    3,379
    2,479
    120
    #338 moderate, Jan 8, 2018
    Last edited: Jan 8, 2018
    (OP)
    They will be released 2018-01-09 (tommorrow). Only W10 ones were released previous week.
     
  16. moderate

    moderate MDL Guru

    Aug 31, 2009
    3,379
    2,479
    120
    Create the following as GetProductKey.bat and run it in elevated cmd:

    Code:
    ::' Windows RT 8.0 Product Key Dumper by Myria of xda-developers.com
    ::' Original Windows 8.0 VBScript by janek2012 of mydigitallife.net
    ::' Batch+VBScript hybrid trick by dbenham of stackoverflow.com
    ::' Fix for keys starting with N by Osprey00 of xda-developers.com
    ::'
    ::' Windows RT doesn't let unsigned VBScript use WScript.Shell, which is
    ::' required in order to read the registry in VBScript.  So instead, we
    ::' have a batch file call reg.exe to do the registry lookup for us, then
    ::' execute the VBScript code.  Might as well do things this way, since
    ::' it would really suck to write this math in batch...
    
    ::' --- Batch portion ---------
    rem^ &@echo off
    rem^ &call :'sub
    ::' If we were run from double-clicking in Explorer, pause.
    rem^ &if %0 == "%~0" pause
    rem^ &exit /b 0
    
    :'sub
    ::' Read the registry key into VBScript's stdin.
    rem^ &("%SystemRoot%\System32\reg.exe" query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v DigitalProductId | cscript //nologo //e:vbscript "%~f0")
    ::'rem^ &echo end batch
    rem^ &exit /b 0
    
    '----- VBS portion ------------
    'WScript.Echo "begin VBS"
    
    ' Get registry data that was piped in
    RegData = ""
    Do While Not WScript.StdIn.AtEndOfStream
        RegData = RegData & WScript.StdIn.ReadAll
    Loop
    
    ' Remove any carriage returns
    RegData = Replace(RegData, ChrW(13), "")
    
    ' Split into lines
    RegLines = Split(RegData, ChrW(10))
    
    ' Sanity checking on data
    If (RegLines(0) <> "") Or (RegLines(1) <> "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion") Then
        WScript.Echo "Got invalid header trying to run reg.exe"
        WScript.Quit(1)
    End If
    
    If Left(RegLines(2), 38) <> "    DigitalProductId    REG_BINARY    " Then
        WScript.Echo "Got invalid value list trying to run reg.exe"
        WScript.Quit(1)
    End If
    
    ' Get hex string
    HexString = Mid(RegLines(2), 39)
    If (Len(HexString) Mod 2) <> 0 Then
        WScript.Echo "Got an odd number of hex digits in REG_BINARY data"
        WScript.Quit(1)
    End If
    
    ' Convert to byte array
    Dim ByteArray()
    ReDim ByteArray((Len(HexString) / 2) - 1)  ' VBScript is just weird with array dimensions >.<
    
    For i = 0 To (Len(HexString) - 2) Step 2
        ByteArray(i / 2) = CInt("&H" + Mid(HexString, i + 1, 2))
    Next
    
    Key = ConvertToKey(ByteArray)
    WScript.Echo Key
    
    ' janek2012's magic decoding function
    Function ConvertToKey(Key)
        Const KeyOffset = 52 ' Offset of the first byte of key in DigitalProductId - helps in loops
        isWin8 = (Key(66) \ 8) And 1 ' Check if it's Windows 8 here...
        Key(66) = (Key(66) And &HF7) Or ((isWin8 And 2) * 4) ' Replace 66 byte with logical result
        Chars = "BCDFGHJKMPQRTVWXY2346789" ' Characters used in Windows key
        ' Standard Base24 decoding...
        For i = 24 To 0 Step -1
            Cur = 0
            For X = 14 To 0 Step -1
                Cur = Cur * 256
                Cur = Key(X + KeyOffset) + Cur
                Key(X + KeyOffset) = (Cur \ 24)
                Cur = Cur Mod 24
            Next
            KeyOutput = Mid(Chars, Cur + 1, 1) & KeyOutput
            Last = Cur
        Next
        ' If it's Windows 8, put "N" in the right place
        If (isWin8 = 1) Then
            keypart1 = Mid(KeyOutput, 2, Cur)
            insert = "N"
            KeyOutput = keypart1 & insert & Mid(KeyOutput, Cur + 2)
        End If
        ' Divide keys to 5-character parts
        a = Mid(KeyOutput, 1, 5)
        b = Mid(KeyOutput, 6, 5)
        c = Mid(KeyOutput, 11, 5)
        d = Mid(KeyOutput, 16, 5)
        e = Mid(KeyOutput, 21, 5)
        ' And join them again adding dashes
        ConvertToKey = a & "-" & b & "-" & c & "-" & d & "-" & e
        ' The result of this function is now the actual product key
    End Function
    
     
  17. moderate

    moderate MDL Guru

    Aug 31, 2009
    3,379
    2,479
    120
    In Windows Store there is "\Account\My Applications" list. From it you can install even the things, which aren't available on Store anymore (right click on the app in list and then select install). Then backup APPX file from C:\Windows\WindowsUpdate.log. (Link has 5 mins timeout.) Licenses could be extracted from c:\windows\serviceprofiles\localservice\appdata\local\microsoft\wslicense\tokens.dat file by:
    Apps Deploy v2-6-1-0
    or
    Metro Worker v0-0-2b
    Tokens Extractor v1-4-2
    WindowsAppBoss v1-0-2-3
    ...just copy tokens.dat from arm to the same location on Intel/AMD PC (backup Intel's token.dat 1st). Then run Apps Deploy v2-6-1-0 and extract licenses to XML files.
    Tool:
    https://forums.mydigitallife.net/th...ideloading-added-7-31-games-for-win8-1.53181/