IMHO there should be more powerful LP Refreshes, which will cover more updates and maybe offline storage for WIM-integrated updates MSUs.
I'm currently using "Modern Video Player" - it's the best player on Windows RT I've ever used! On my lumia 2520, 720p x264 hi10p plays like a charm! The only thing - there is no support for ass/ssa subtitles, but they promised to add this future in the next release.
Hey, I'm looking for the new "System Firmware Update – 3/10/2015" for the Surface RT which contains "Audio and Display driver set (v9.17.13.0907) improves audio and video experience and enhances system stability.". It would awesome if someone could please upload it / post the link to the firmware update.
Common guys, give the update to him (since he hasn't surface1rt same as I don't), just install it and grab the link from WindowsUpdate.log...
I have a Samsung ATIV TAB GT-P8510 with Windows 8.1 RT and Office 2013 RT, but i have read all your posts, and have made download of the esd file from first page e backup drivers from my tablet. I´m new with RT and want to make a wipe of the tablet and make a fresh install with Windows 8.1 RT, Office 2013 RT and Samsung drivers, wipe the rest. If you need backup or drivers from my tablet to your database, i can give them. Sorry about my english.
Hello and thanks for your feedback. We are currently searching for anybody, who can provide us Samsung ATIV Recovery Image as it is very rare. If you can help us, here is the procedure to do so: 1. Have empty USB Flash Memory Stick with 8GB of space (or better) inserted to your ATIV RT device. 2. Run C:\Windows\System32\RecoveryDrive.exe and inside it CHECK "Copy Recovery Partition From Computer To Recovery Drive" option checkbox. Make the application to finish its job. 3. Turn off ATIV RT device and insert it to Windows X64 or x32 PC. 4. Run WinRAR or 7-Zip archiver, create new archive file and add all files and folders (including the files in its root directory "\") from USB Recovery Drive to one (big) archive file. 5. Upload that BIG (about 4GB file) to MEGA, Dropbox or another cloud storage service, so we can download it and provide the drivers and other things to everybody in trouble. If you decide to do it... many thanks for your support. If you want to create your own clean installation, we can give you step by step instructions to do so (to create the custom image with language pack, all current up-to-date MSUs and drivers). Just ask for them. BTW: Your English is fine.
OK, 1st read the following and ask questions, when you will not understand... 0. Make Product Key backup from running ARM Windows RT by running this BAT 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 1. Making arm image - batch: Create directories in C:\ (root): APPX, CAB, INF, INF_WinRE, ISO, Mount, MSU, MSU_WinRE, WinRE Needes files: Language Pack Client, Language Pack WinPE (from ADK Addons), APPXes pack... Code: DISM /Mount-Wim /WimFile:C:\ISO\sources\boot.wim /index:1 /MountDir:C:\mount dism /image:C:\mount /Add-Package:"C:\CAB\lp.cab" dism /image:C:\mount /Add-Package:"C:\CAB\WinPE-Rejuv_cs-cz.cab" dism /image:C:\mount /Add-Package:"C:\CAB\WinPE-SRT_cs-cz.cab" dism /image:C:\mount /Gen-LangINI /distribution:C:\mount rem DISM /image:C:\mount /Add-Package /PackagePath:C:\MSU_WinRE rem dism /image:C:\mount /Remove-Driver /Driver:oem0.inf /driver:oem1.inf /driver:oem2.inf /driver:oem3.inf /driver:oem4.inf /driver:oem5.inf /driver:oem6.inf /driver:oem7.inf /driver:oem8.inf /driver:oem9.inf /driver:oem10.inf /driver:oem11.inf /driver:oem12.inf /driver:oem13.inf /driver:oem14.inf /driver:oem15.inf /driver:oem16.inf /driver:oem17.inf /driver:oem18.inf /driver:oem19.inf /driver:oem20.inf /driver:oem21.inf /driver:oem22.inf /driver:oem23.inf /driver:oem24.inf /driver:oem25.inf /driver:oem26.inf /driver:oem27.inf /driver:oem28.inf /driver:oem29.inf /driver:oem30.inf /driver:oem31.inf /driver:oem32.inf /driver:oem33.inf /driver:oem34.inf /driver:oem35.inf /driver:oem36.inf /driver:oem37.inf /driver:oem38.inf Dism /Image:C:\mount /Add-Driver /Driver:C:\INF_WinRE /Recurse Dism /unmount-WIM /MountDir:C:\mount /Commit rem DISM /Mount-Wim /WimFile:C:\ISO\sources\boot.wim /index:2 /MountDir:C:\mount rem dism /image:C:\mount /Add-Package:"C:\CAB\lp.cab" rem dism /image:C:\mount /Add-Package:"C:\CAB\WinPE-setup_cs-cz.cab" rem dism /image:C:\mount /Add-Package:"C:\CAB\WinPE-setup-client_cs-cz.cab" rem dism /image:C:\mount /Gen-LangINI /distribution:C:\mount rem DISM /image:C:\mount /Add-Package /PackagePath:C:\MSU_WinRE rem dism /image:C:\mount /Remove-Driver /Driver:oem0.inf /driver:oem1.inf /driver:oem2.inf /driver:oem3.inf /driver:oem4.inf /driver:oem5.inf /driver:oem6.inf /driver:oem7.inf /driver:oem8.inf /driver:oem9.inf /driver:oem10.inf /driver:oem11.inf /driver:oem12.inf /driver:oem13.inf /driver:oem14.inf /driver:oem15.inf /driver:oem16.inf /driver:oem17.inf /driver:oem18.inf /driver:oem19.inf /driver:oem20.inf /driver:oem21.inf /driver:oem22.inf /driver:oem23.inf /driver:oem24.inf /driver:oem25.inf /driver:oem26.inf /driver:oem27.inf /driver:oem28.inf /driver:oem29.inf /driver:oem30.inf /driver:oem31.inf /driver:oem32.inf /driver:oem33.inf /driver:oem34.inf /driver:oem35.inf /driver:oem36.inf /driver:oem37.inf /driver:oem38.inf rem Dism /Image:C:\mount /Add-Driver /Driver:C:\INF_WinRE /Recurse rem Dism /unmount-WIM /MountDir:C:\mount /Commit DISM /Export-Image /SourceImageFile:C:\ISO\sources\boot.wim /SourceIndex:1 /DestinationImageFile:C:\ISO\sources\boot2.wim /Compress:max /Bootable rem DISM /Export-Image /SourceImageFile:C:\ISO\sources\boot.wim /SourceIndex:2 /DestinationImageFile:C:\ISO\sources\boot2.wim /Compress:max /Bootable DEL /S /F /Q C:\ISO\sources\boot.wim REN C:\ISO\sources\boot2.wim boot.wim DISM /Mount-Wim /WimFile:C:\ISO\sources\install.wim /index:1 /MountDir:C:\mount rem dism /image:C:\mount /Add-Package:"C:\CAB\Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~arm~cs-CZ~6.3.9600.16384.cab" dism /image:C:\mount /Add-Package:"C:\CAB\windows8.1-kb3012997-arm-cs-cz-client_857d4d0e7c74fcbbfeccfe6e55f9a8a9bc6d21b2.cab" attrib -r -s -h C:\mount\Windows\System32\Recovery\winre.wim rem DISM /Mount-Wim /WimFile:C:\mount\Windows\System32\Recovery\winre.wim /index:1 /MountDir:C:\winre rem dism /image:C:\winre /Add-Package:"C:\CAB\lp.cab" rem dism /image:C:\winre /Add-Package:"C:\CAB\WinPE-Rejuv_cs-cz.cab" rem dism /image:C:\winre /Add-Package:"C:\CAB\WinPE-SRT_cs-cz.cab" rem dism /image:C:\winre /Gen-LangINI /distribution:C:\winre rem DISM /image:C:\winre /Add-Package /PackagePath:C:\MSU_WinRE rem dism /image:C:\mount /Remove-Driver /Driver:oem0.inf /driver:oem1.inf /driver:oem2.inf /driver:oem3.inf /driver:oem4.inf /driver:oem5.inf /driver:oem6.inf /driver:oem7.inf /driver:oem8.inf /driver:oem9.inf /driver:oem10.inf /driver:oem11.inf /driver:oem12.inf /driver:oem13.inf /driver:oem14.inf /driver:oem15.inf /driver:oem16.inf /driver:oem17.inf /driver:oem18.inf /driver:oem19.inf /driver:oem20.inf /driver:oem21.inf /driver:oem22.inf /driver:oem23.inf /driver:oem24.inf /driver:oem25.inf /driver:oem26.inf /driver:oem27.inf /driver:oem28.inf /driver:oem29.inf /driver:oem30.inf /driver:oem31.inf /driver:oem32.inf /driver:oem33.inf /driver:oem34.inf /driver:oem35.inf /driver:oem36.inf /driver:oem37.inf /driver:oem38.inf rem Dism /Image:C:\winre /Add-Driver /Driver:C:\INF_WinRE /Recurse rem Dism /unmount-WIM /MountDir:C:\winre /Commit rem DISM /Export-Image /SourceImageFile:C:\mount\Windows\System32\Recovery\winre.wim /SourceIndex:1 /DestinationImageFile:C:\mount\Windows\System32\Recovery\winre2.wim /Compress:max /Bootable DEL /S /F /Q C:\mount\Windows\System32\Recovery\winre.wim rem REN C:\mount\Windows\System32\Recovery\winre2.wim winre.wim COPY /V /Y C:\ISO\sources\boot.wim C:\mount\Windows\System32\Recovery\winre.wim dism /image:C:\mount /Gen-LangINI /Distribution:C:\ISO rem DISM /image:C:\mount /Add-Package /PackagePath:C:\MSU_v8-1-1_Prerequisites rem Dism /Commit-Image /MountDir:C:\mount DISM /image:C:\mount /Add-Package /PackagePath:C:\MSU Dism /Image:C:\mount /Add-Driver /Driver:C:\INF /Recurse dism /Image:C:\Mount /Remove-Provisionedappxpackage /PackageName:Microsoft.BingFinance_2014.926.253.3184_neutral_~_8wekyb3d8bbwe dism /Image:C:\Mount /Remove-Provisionedappxpackage /PackageName:Microsoft.BingFoodAndDrink_2014.926.254.3803_neutral_~_8wekyb3d8bbwe dism /Image:C:\Mount /Remove-Provisionedappxpackage /PackageName:Microsoft.BingHealthAndFitness_2014.926.255.3988_neutral_~_8wekyb3d8bbwe dism /Image:C:\Mount /Remove-Provisionedappxpackage /PackageName:Microsoft.BingMaps_2014.830.1811.3840_neutral_~_8wekyb3d8bbwe dism /Image:C:\Mount /Remove-Provisionedappxpackage /PackageName:Microsoft.BingNews_2014.926.2134.2947_neutral_~_8wekyb3d8bbwe dism /Image:C:\Mount /Remove-Provisionedappxpackage /PackageName:Microsoft.BingSports_2014.926.258.4003_neutral_~_8wekyb3d8bbwe dism /Image:C:\Mount /Remove-Provisionedappxpackage /PackageName:Microsoft.BingTravel_2014.926.259.4931_neutral_~_8wekyb3d8bbwe dism /Image:C:\Mount /Remove-Provisionedappxpackage /PackageName:Microsoft.BingWeather_2014.928.34.2811_neutral_~_8wekyb3d8bbwe dism /Image:C:\Mount /Remove-Provisionedappxpackage /PackageName:Microsoft.HelpAndTips_2014.716.611.79_neutral_~_8wekyb3d8bbwe dism /Image:C:\Mount /Remove-Provisionedappxpackage /PackageName:Microsoft.Office.OneNote_2014.921.1853.4418_neutral_~_8wekyb3d8bbwe dism /Image:C:\Mount /Remove-Provisionedappxpackage /PackageName:Microsoft.Reader_2014.312.322.1510_neutral_~_8wekyb3d8bbwe dism /Image:C:\Mount /Remove-Provisionedappxpackage /PackageName:Microsoft.SkypeApp_2014.731.933.5139_neutral_~_kzf8qxf38zg5c dism /Image:C:\Mount /Remove-Provisionedappxpackage /PackageName:Microsoft.WindowsAlarms_2013.1204.852.3011_neutral_~_8wekyb3d8bbwe dism /Image:C:\Mount /Remove-Provisionedappxpackage /PackageName:Microsoft.WindowsCalculator_2013.1007.1950.2960_neutral_~_8wekyb3d8bbwe dism /Image:C:\Mount /Remove-Provisionedappxpackage /PackageName:microsoft.windowscommunicationsapps_2014.830.2330.2719_neutral_~_8wekyb3d8bbwe dism /Image:C:\Mount /Remove-Provisionedappxpackage /PackageName:Microsoft.WindowsReadingList_2014.626.1418.1617_neutral_~_8wekyb3d8bbwe dism /Image:C:\Mount /Remove-Provisionedappxpackage /PackageName:Microsoft.WindowsScan_2013.1007.2015.3834_neutral_~_8wekyb3d8bbwe dism /Image:C:\Mount /Remove-Provisionedappxpackage /PackageName:Microsoft.WindowsSoundRecorder_2013.1010.500.2928_neutral_~_8wekyb3d8bbwe dism /Image:C:\Mount /Remove-Provisionedappxpackage /PackageName:Microsoft.XboxLIVEGames_2013.1011.10.5965_neutral_~_8wekyb3d8bbwe dism /Image:C:\Mount /Remove-Provisionedappxpackage /PackageName:Microsoft.ZuneMusic_2014.929.2145.59_neutral_~_8wekyb3d8bbwe dism /Image:C:\Mount /Remove-Provisionedappxpackage /PackageName:Microsoft.ZuneVideo_2014.1002.954.4888_neutral_~_8wekyb3d8bbwe dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\BingFinance_v3-0-4-298.appxbundle /LicensePath:C:\APPX\BingFinance_OEM.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle /DependencyPackagePath:C:\APPX\WinJS-2-0_v1-0-9600-17018.appxbundle dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\BingFoodAndDrink_v3-0-4-253.appxbundle /LicensePath:C:\APPX\BingFoodAndDrink_OEM.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle /DependencyPackagePath:C:\APPX\WinJS-2-0_v1-0-9600-17018.appxbundle dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\BingHealthAndFitness_v3-0-4-309.appxbundle /LicensePath:C:\APPX\BingHealthAndFitness_OEM.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle /DependencyPackagePath:C:\APPX\WinJS-2-0_v1-0-9600-17018.appxbundle dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\BingMaps_v2-1-3230-2048.appxbundle /LicensePath:C:\APPX\BingMaps_OEM.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\BingNews_v3-0-4-268.appxbundle /LicensePath:C:\APPX\BingNews_OEM.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle /DependencyPackagePath:C:\APPX\WinJS-2-0_v1-0-9600-17018.appxbundle dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\BingSports_v3-0-4-298.appxbundle /LicensePath:C:\APPX\BingSports_OEM.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle /DependencyPackagePath:C:\APPX\WinJS-2-0_v1-0-9600-17018.appxbundle dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\BingTravel_v3-0-4-309.appxbundle /LicensePath:C:\APPX\BingTravel_OEM.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle /DependencyPackagePath:C:\APPX\WinJS-2-0_v1-0-9600-17018.appxbundle dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\BingWeather_v3-0-4-298.appxbundle /LicensePath:C:\APPX\BingWeather_OEM.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle /DependencyPackagePath:C:\APPX\WinJS-2-0_v1-0-9600-17018.appxbundle dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\HelpAndTips_v6-3-9654-20559.appxbundle /LicensePath:C:\APPX\HelpAndTips_OEM.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\OfficeOneNote_v16-0-3327-1030.appxbundle /LicensePath:C:\APPX\OfficeOneNote_OEM.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\Reader_v6-3-9654-17499.appxbundle /LicensePath:C:\APPX\Reader_OEM.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\SkypeApp_v3-1-0-1007.appxbundle /LicensePath:C:\APPX\SkypeApp_OEM.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle /DependencyPackagePath:C:\APPX\WinJS-2-0_v1-0-9600-17018.appxbundle dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\WindowsAlarms_v6-3-9654-20335.appxbundle /LicensePath:C:\APPX\WindowsAlarms_OEM.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\WindowsCalculator_v6-3-9600-20278.appxbundle /LicensePath:C:\APPX\WindowsCalculator_OEM.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\WindowsCommunicationsApps_v17-5-9600-20689.appxbundle /LicensePath:C:\APPX\WindowsCommunicationsApps_OEM.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle /DependencyPackagePath:C:\APPX\WinJS-2-0_v1-0-9600-17018.appxbundle dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\WindowsReadingList_v6-3-9654-20540.appxbundle /LicensePath:C:\APPX\WindowsReadingList_OEM.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle /DependencyPackagePath:C:\APPX\WinJS-2-0_v1-0-9600-17018.appxbundle dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\WindowsScan_v6-3-9654-17133.appxbundle /LicensePath:C:\APPX\WindowsScan_OEM.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\WindowsSoundRecorder_v6-3-9600-20280.appxbundle /LicensePath:C:\APPX\WindowsSoundRecorder_OEM.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\XboxLIVEGames_v2-0-139-0.appxbundle /LicensePath:C:\APPX\XboxLIVEGames_OEM.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle /DependencyPackagePath:C:\APPX\WinJS-2-0_v1-0-9600-17018.appxbundle dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\ZuneMusic_v2-6-672-0.appxbundle /LicensePath:C:\APPX\ZuneMusic_OEM.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle /DependencyPackagePath:C:\APPX\WinJS-2-0_v1-0-9600-17018.appxbundle /DependencyPackagePath:C:\APPX\MediaPlayReadyClient-2_v2-11-2154-0.appxbundle dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\ZuneVideo_v2-6-434-0.appxbundle /LicensePath:C:\APPX\ZuneVideo_OEM.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle /DependencyPackagePath:C:\APPX\WinJS-2-0_v1-0-9600-17018.appxbundle /DependencyPackagePath:C:\APPX\MediaPlayReadyClient-2_v2-11-2154-0.appxbundle rem dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\OperatorNotifications_v1-5-1435-2.appxbundle /LicensePath:C:\APPX\OperatorNotifications_OEM.lic /DependencyPackagePath:C:\APPX\WinJS-1-0_v1-0-9200-20789.appxbundle rem dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\KindleforWindows8_v2-1-0-1.appxbundle /LicensePath:C:\APPX\KindleforWindows8_OEM.lic /DependencyPackagePath:C:\APPX\WinJS-1-0_v1-0-9200-20789.appxbundle rem dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\ATTCommunicationManager_v4-0-2-581.appxbundle /LicensePath:C:\APPX\ATTCommunicationManager_OEM.lic /DependencyPackagePath:C:\APPX\WinJS-2-0_v1-0-9600-17018.appxbundle rem dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\DragonsAdventure_v2-1-1-175.appxbundle /LicensePath:C:\APPX\DragonsAdventure_OEM.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle rem dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\HEREMaps_v4-1-7-1399.appxbundle /LicensePath:C:\APPX\HEREMaps_OEM.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle rem dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\MyNokia_v1-5-1346-3.appxbundle /LicensePath:C:\APPX\MyNokia_OEM.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle rem dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\NokiaCamera_v2-1-7-1.appxbundle /LicensePath:C:\APPX\NokiaCamera_OEM.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle rem dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\NokiaMusic_v2-2-0-7933.appxbundle /LicensePath:C:\APPX\NokiaMusic_OEM.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle rem dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\NokiaStoryteller_v2-5-1-1.appxbundle /LicensePath:C:\APPX\NokiaStoryteller_OEM.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle rem dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\NokiaVideoDirector_v2-0-0-1251.appxbundle /LicensePath:C:\APPX\NokiaVideoDirector_OEM.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle rem dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\ATTFamilyMap_v1-3-0-0.appxbundle /LicensePath:C:\APPX\ATTFamilyMap_OEM.lic /DependencyPackagePath:C:\APPX\VCLibs-110-00_v11-0-51106-1.appxbundle rem dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\8ZipNew_v1-1-0-12.appxbundle /LicensePath:C:\APPX\8ZipNew_Limited.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle rem dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\HPPrinterControl_v50-1-221-0.appxbundle /LicensePath:C:\APPX\HPPrinterControl_Limited.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle rem dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\IMPro_v1-8-4-0.appxbundle /LicensePath:C:\APPX\IMPro_Limited.lic rem dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\IPAddress_v1-1-8-14.appxbundle /LicensePath:C:\APPX\IPAddress_Limited.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle /DependencyPackagePath:C:\APPX\WinJS-2-0_v1-0-9600-17018.appxbundle rem dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\MobileDocumentScanner_v1-3-3-54.appxbundle /LicensePath:C:\APPX\MobileDocumentScanner_Limited.lic /DependencyPackagePath:C:\APPX\VCLibs-110-00_v11-0-51106-1.appxbundle rem dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\PowerDVDMobile_v5-0-1030-36861.appxbundle /LicensePath:C:\APPX\PowerDVDMobile_Limited.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle /DependencyPackagePath:C:\APPX\WinJS-2-0_v1-0-9600-17018.appxbundle rem dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\PowerDVDMobileforUltra_v5-0-1030-36861.appxbundle /LicensePath:C:\APPX\PowerDVDMobileforUltra_Limited.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle /DependencyPackagePath:C:\APPX\WinJS-2-0_v1-0-9600-17018.appxbundle rem dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\TorrexPro_v1-1-0-27.appxbundle /LicensePath:C:\APPX\TorrexPro_Limited.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle rem dism /Image:C:\Mount /Add-ProvisionedAppxPackage /PackagePath:C:\APPX\VLCforWindows8_v1-2-0-0.appxbundle /LicensePath:C:\APPX\VLCforWindows8_Limited.lic /DependencyPackagePath:C:\APPX\VCLibs-120-00_v12-0-21005-1.appxbundle /DependencyPackagePath:C:\APPX\VCLibs-110-00_v11-0-51106-1.appxbundle Dism /unmount-WIM /MountDir:C:\mount /Commit DISM /Export-Image /SourceImageFile:C:\ISO\sources\install.wim /SourceIndex:1 /DestinationImageFile:C:\ISO\sources\install2.wim /Compress:max DEL /S /F /Q C:\ISO\sources\install.wim REN C:\ISO\sources\install2.wim install.wim dism /Export-Image /SourceImageFile:C:\ISO\sources\install.wim /SourceIndex:1 /DestinationImageFile:C:\ISO\sources\install.esd /Compress:recovery /CheckIntegrity rem oscdimg -bc:\ISO\efi\boot\bootarm.efi -h -u2 -m -lwin811_arm C:\ISO\ C:\win811_arm.iso 2. Manual deployment diskpart (in case you have SD card inserted, replace "select disk 1" line with "select disk 2"): Code: select disk 0 clean convert mbr convert gpt select disk 1 select partition 1 assign letter="C" exit 3. Automated script runned by "diskpart /s script.txt" Code: select disk 0 create partition primary size=305 format quick fs=ntfs label="WRE" assign letter="T" set id=de94bba4-06d1-4d40-a16a-bfd50179d6ac gpt attributes=0x8000000000000001 create partition efi size=100 format quick fs=fat32 label="ESP" assign letter="S" create partition msr size=128 create partition primary format quick fs=ntfs label="SYS" assign letter="W" exit 4. Automated deployment cmd: Code: @echo off dism /apply-image /imagefile:C:\sources\install.esd /index:1 /applydir:W:\ bcdboot W:\Windows /s S: mkdir T:\Recovery\WindowsRE move W:\Windows\System32\Recovery\winre.wim T:\Recovery\WindowsRE copy W:\Windows\System32\Recovery\ReAgent.xml T:\Recovery\WindowsRE\*.* copy C:\Boot\boot.sdi T:\Recovery\WindowsRE\*.* copy C:\Sources\Recovery.txt T:\*.* W:\Windows\System32\Reagentc.exe /setreimage /path T:\Recovery\WindowsRE /target W:\Windows rem mkdir R:\RecoveryImage rem copy C:\sources\install.esd R:\RecoveryImage\*.* rem copy C:\Sources\$UPG$PBR.MARKER R:\*.* rem W:\Windows\System32\Reagentc.exe /setosimage /path R:\RecoveryImage /index 1 /target W:\Windows
Spoiler If anyone try this, I wish a copy Clean Windows RT with all component is good, send me in private message, I can't do this in moment, I haven't tablet...
Thank you for your help, and i will ask basic questions for making this First basic question: all this must be made in the tablet or with the recovery that i made and upload to mega? Thanks for your pacience. My language for the tablet is Portuguese (Portugal PT-PT).