[REQUEST] About Windows 10 Mobile OUP V6, I need your help - Windows 10 Mobile

In fact, I've released Win10 Mobile Offline Update Package V5 in China, but I've never released it in xda before.
Well... I tested OTC Updater provided by Microsoft, it will get a secret update to Windows 10 Mobile 10586.107 which is already used for my Offline Update Packages.
To download OTC Updater:
http://www.microsoft.com/en-us/download/details.aspx?id=56120
Click to expand...
Click to collapse
Here's the partial output log:
Code:
...
(ID): Found update: Windows Phone 8.1 Production Bundle - OS 10.0.13080.107 update for Nokia RM-1010_1003 CMC-CN based devices
(ID): 196 installable packages found
(ID): 1/196: Downloading Microsoft.MainOS.Production_Lang_sk-SK.spkg.20093217.cab
(ID): 2/196: Downloading Microsoft.MainOS.Production_Lang_ru-RU.spkg.20093216.cab
...
I was using Nokia Lumia 638 when testing.
I presume it will get a hidden update called "Windows Phone 8.1 Production Bundle - OS 10.0.13080.107 update for (PhoneManufacturer) (PhoneManufacturerModelName) (PhoneMobileOperatorName) based devices" to identify if the device is eligable to W10M, and the update itself provided all of the packages with extension name spkg/spku/spkr instead of cbs/cbsu/cbsr.
Right now, I collected 361 spkg/spkr/spku for the project, but far from perfect. List of packages is attached below.
What I'm going to request is:
Try to get all of the packages links of "Windows Phone 8.1 Production Bundle - OS 10.0.13080.107 update for (PhoneManufacturer) (PhoneManufacturerModelName) (PhoneMobileOperatorName) based devices".
And here's how I'm going to use a new tool with these packages as my new offline update package V6:
1. Use getdulogs command to get the device info, including it's model, codename (For example, the codename of Lumia 830 is Tesla) and packages structure.
2. Check if the phone is a cancelled prototype device, or the current OS version is supported.
3. Check if the phone is confirmed unsupported like HTC 8X, and Win 10 Mobile preinstalled device like Lumia 950.
4. Prepare required update packages according to packages structure included in the phone by copying them to a temporary directory. Remove PIN lock will no longer required, but recommended.
5. If the phone doesn't have the language you're using on PC (For example, HTC One M8 for Windows AT&T and T-Mobile don't have Chinese included), it will ask you if you want to add extra languages.
6. Push the packages in the temporary directory to your phone to execute the update procedure. Since it analyzed your phone, you needn't to worry about your default keyboard and speech if you're not using English (United States).
7. After the update procedure finished, the tool will ask you if you want to use OTC Updater to get further updates if the phone is eligable to later OS.
After V6 release, only confirmed unsupported models will get listed, which will heavily reduce the length of guide.

Related

[Source][Dll][XAP] The HtcRoot project - Testers needed

The result of probably more than 100 hours of solo hackery: a working COM DLL for allowing any application to elevate itself to SYSTEM (root) permissions.
What you need:
An interop-unlocked HTC phone. Sorry second-gen and Arrive users.
A working HtcUtility driver. It's possible some HTC update at some point crippled this. It works for me; if it doesn't work for you let me know what updates you have.
What it does:
Allows changing the security token of any application to give that app unrestricted permissions. At this point, you can call any user-mode API, perform any operation, with full access.
It also allows you to read or write any value from memory, even kernel memory (this is how it modifes the security token).
What it can be used for:
Darn near anything. If it can be done while the phone is booted, you can do it.
What it can't be used for:
Modifying the ROM - the R and O stand for "read only" and they mean it.
Interop-unlocking a phone - it requires interop-unlock to get root in the first place.
How to use it:
In your app, include the HtcRoot.dll library.
Include the code from DriverAccessTest.cs in the test app (defines the COM API and enables using it).
Call the OpenHtcUtility function (will throw an exception if your device is incompatible).
Call the MakeMeRoot function (can also throw exceptions).
(OPTIONAL) Call the ReturnZeroIfRoot function to make sure your app is elevated (does not throw exceptions, will return an error code if you get one).
Do stuff with SYSTEM permissions (probably using another COM DLL, such as for registry or filesystem access).
Call the RestoreToken function (failure to do this *might* cause a kernel memory leak).
Call the CloseHtcUtility function (OS will probably handle this if program just exits).
What you can do right now:
Try the test app. It should pop up a series of messge boxes. Hopefully none of them say anything like "FAILURE".
Report any bugs or failures you discover.
Build things with this library, and publish them!
Breakdown of the download:
There are two folders in the ZIP, one for the Visual Studio 2010 C#/Silverlight XAP project, and one for the Visual Studio 2008 C++/COM DLL project.
The test XAP is in the HtcUtilityTest\bin\Debug folder.
The native (COM) DLL is also available in that folder, or under its own project.
If you want to mess with this, I'm going to assume you are already familiar with hybrid native/managed development for WP7. If not, Heathcliff74 has posted an excellent tutorial on this forum.
Special thanks to:
Heathcliff74 for the hybrid app tutorial and interop unlock info.
Paul_Hammons for the links and info about HtcUtility, the driver that makes this possible. Thread: http://forum.xda-developers.com/showthread.php?t=1434793
Supported devices / firmware versions / ROMs
All HTC devices (if interop-unlocked and with the right firmware numbers) should be compatible.
Some custom ROMs work, some do not. This will depend on the version of the firmware that the ROM's HtcUtility driver is taken from.
I believe I compiled the test app as Mango-only, but the native library doesn't care at all.
Compatible:
Stock ROMs with compatible firmware for HD7, Trophy, Mozart
HD2 (BttF [XBmod-Yuki] v2 SP1)
Not compatible:
Firmware version 2250.21.51004.401 or newer
Verizon Trophy firmware version 2305.13.20104.605 or newer
DFT ROM with build 8107, Firmware 5.10.401
Arrive (except on pre-Mango), Titan, Radar, Titan 2 (no interop-unlock)
Others are untested or results are incomplete.
Goals and future work:
Support more devices:
* Try and add support for newer firmware.
* Help ROM cookers ensure the library is supported.
* Look for similar openings in other OEM libraries.
Future-proofing:
* Allow installation of a mod to support this capability after known updates.
* Resilience against possible future updates.
* Allow users with incompatible devices to downgrade (possibly to NoDo), install the mod, and be able to use the phone after upgrading.
Improve the library:
* Fix some memory leaks.
* Clean up the code - remove dead code and improve comments.
* Allow reading/writing more than 4 bytes at a time from managed code.
* Add APIs to elevate other processes (by name or ID) to SYSTEM.
Develop homebrew around the library:
* Support accessing common APIs (filesystem, etc.).
* Resurrect the Advanced Explorer app, perhaps (registry and filesystem).
* Support native app launching on stock ROMs.
Also reserved
Reserved for OP #2
It does not work on HTC 7 Mozart (HTC Europe):
Error to Write the value 1337 to test address - System.Runtime.InteropServices.COMException (0x8007001F): A device attached to the system is not functioning
Click to expand...
Click to collapse
OS: 7.10.7740.16
Firmware: 2250.21.51101.401
Radio: 5.71.09.02a_22.51.50.21U
Boot: 5.11.2250.1(133487)
Please include the full error message or a description of what went wrong.
Failure on fully updated devices is unfortunately possible - my phone is (intentionally) a few updates behind. I'm looking into ways to make it work anyhow (either sending an older CAB update to roll back, or using the root acess to create an unlocker/root-enabler that survives subsequent updates). I'm going to look into how the full-unlock ROMs differ from standard ROMs, and see if I can do the same thing in running software.
Does it works with custom roms?
If the custom ROM has a working HtcUtility driver, then yes. My goal is to unlock the kind of capabilities normally restricted to custom ROMs on stock firmware, though.
@bleh815: Thanks for the report. That's frustrating; it looks like it is capable of doing read but not write. Write might just be restricted in what addresses is allowed, or it might be disabled entirely (the driver gives the same error code for every problem that I've encountered so far). Time to figure out
A) what update causes the problem (I'm on 2250.21.30102.531, HD7, stock ROM)
B) what restrictions that update introduces
C) how to work around those resrtictions (possibly by downgrading and then using root access to add something that will still work after upgrade).
GoodDayToDie said:
A) what update causes the problem (I'm on 2250.21.30102.531, HD7, stock ROM)
Click to expand...
Click to collapse
I've just downgraded a mozart of mine back to stock NoDo (TMOB-DE) to find out which OEM update breaks (actually fixes) it.
Cool, thanks! It's one of the post-Mango HTC updates; a Microsoft update wouldn't have modified an HTC driver, and my phone has all the pre-Mango HTC updates but it still works.
.
..........
Hi, at first it says "SUCCESS!", then it says "Trying to open a file gives error 1260" and then it says "Now opening a file gives error 0" and finally "Finally, opening a file gives error 1260".
System informations:
OS=7.10.7720.68
Firmwareversion=2250.21.12200.162
Radio=5.68.09.05a_22.50.50.21U
Bootloader=4.6.2250.0(129185)
HTC 7 Trophy.
That is *exactly* the sequence of messages it is supposed to give!!
In particular, the messages I need to see are the "SUCCESS" (the rest is potentially interesting info, but not very important) and then the "Now opening a file gives error 0".
The "SUCCESS" means that a sequence of read/write tests succeeded.
The "Now... error 0" means that the process has been elevated to full permissions.
The "Finally... error 1260" means that the security token was successfully restored at the end, so it was unable to open the file again. This is the expected and correct behavior.
I don't recognize your Firmware Version number; I'm guessing it's specific to your phone. What method did you use to upgrade to Mango?
how do i install it?
Tried on interop-unlocked HTC Surround, not working Tested any call in VS debug mode - no luck at all.
I can confirm that it works with any OS version, from 7004 to 8107.79
On a HTC 7 Mozart (TMOB-DE) it works with firmware 2250.21.13201.111 (Stock NoDo ROM) but the hole gets fixed with 2250.21.51101.111 (1st Post-Mango HTC Update).
You guys are gods taking programming to a hole new level!
I wish to see ms take you all more serious and not let wp7 fail like minmo6.5 did!
I wish I could get on your level!
I realy need some help lerning basic silverlight my self!
But I have read how hybrid working ant this is just fantastic!
conradulations on all your developments so far you guys are truly amazing!
Oh, that code, beautiful reading that!
Thanks for sharing this learnfull code!
I'd like to try it on my Verizon HTC Trophy, I would love to get file access back....
I downloaded the package and I even have VS 2010 installed but beyond that I have no idea as I am not a programmer.
Can someone post a compiled XAP for us to try to see if our phone works with it or not ?
Or some step by step VS 201 directions to try would also be helpful.
@Ttblondey: *FACEPALM* The path to the test XAP is given in the opening post. You install the XAP on your phone using any XAP deployment tool. It requires that your phone be interop-unlocked; Heathcliff74 has a nice long thread about that. The app is called called HtcUtilityTest. Run it, and report the results. If you want to actually *use* the DLL, the instructions for doing that are given too but you need to write some code.
@sensboston: PLEASE give a more complete report! Success and error messages, at the least. Also, your phone version info. Thanks!
@bleh815: THANK YOU! I mean, it's a little annoying to know how far back this was fixed ("First post-Mango HTC update" means the one that was included *with* Mango for most people, or the one after that?) but good to know. Now, to look at exactly what they changed...
@jackrabbit72380: Thanks man! As for working with it yourself, like I mention below, I'm planning to provide a universal homebrew library that people can easily use to do whatever they want.
@fiinix: You're welcome! Honestly, I didn't expect anybody to call my mess of debug-commented and mildly hacky C++ "beautiful" but that hack itself *is* pretty awesome. My only concern with using it is the risk of a context switch causing the wrong app's token to get overwritten, and I should probably look into that, but I think it's OK for the moment. There are bigger fish to fry.
In the meantime, it should open up a huge list of capabilities for tools like your DllImport project. I'm currently considering reviving Advanced Explorer (like TouchXplorer + Registry Editor, but open source; was never ported to Mango though) using the root access instead of using ComFileRW and the provxml driver. Let me know what you want to do with it!
One other thing I'd like to add is the ability to easily elevate *another* process; it's not hard to do but I haven't written it yet. This could be handy for apps where we don't have the source code (for example, elevate Schaps registry editor, which uses low-privilege native code for browsing, so it can read *all* registry locations instead of just some of them).
@DavidinCT: Well, running the test app is easy, just install the XAP. It just runs a battery of tests though, it doesn't actually *do* anything useful. To get filesystem access, you'll need to write some native code (which means using Visual Studio 2008 and the CE/Smart Device plug-in, see Heathcliff74's toturial on the subject). Basically, you would first use this DLL (accessed via COM, you can look at my own C# code for how to do that) to opent he driver handle and elevate the process to root. You could then write your own COM DLL that uses the standard Win32 filesystem APIs (CreateFile, etc. - all are documented on MSDN) and exposes those APIs, or the results of them, to managed code via COM. Then, back in your phone app (the one that called into my HtcRoot DLL) you can call into your own DLL to access the file system.
If that's too big a leap, don't worry. I plan to release a general-purpose high-privilege homebrew DLL that exposes some of the most-used functionality (filesystem, registry, provxml, and other things by request), is easily extensible (possibly using something like the DllImport project, where you just specify the function you want to call and the DLL it's located in right from C#), and that will be a lot easier to hack with. You'll still need to know C# and basic Silverlight, but it'll be a lot easier (and hopefully useful without knowing any C++ or COM).
GoodDayToDie, you are amazing, always keeping me interested!
When starting the test xap, I get the below, it then goes into the "Page Name" and that's it.
Device Info here, running a FullUnlock DFT Rom by a Chinese dev from the DFT Forum.
Nonetheless, top work on getting this started and can't wait to keep reading about the progress!
XeKToReX

2175.2907.8858.13030 New firmware available on navifirm

So someone flashed this new rom? What changes? I translated from china lumia 900's forum, here results.
1 used the State Bank 2175.2905.8858.12480 version as mastering.
The 2. Transplantation Lumia900 latest 2175.2907.8858.13030OEM.
3. Latest FULLUNLOCK V4 unlock procedure.
4. Using latest unlocking supporting software the Root rights management, gravity sensor, XAP deployment, file management, WM Device Center, the search key settings and Quick Start 7 software, and all models have added language to facilitate domestic players to use.
5. Supports XBOX game support IE ​​deploy, support for unlimited XAP deployment of PC.
6. Delete multiple languages, or English only reserved yet.
Other registry optimization, debug mode, the default time zone correction.
If you deploy third-party software requires full unlock permission, be sure to set it as a trusted Root rights management, or it may not work properly, no matter what the time, Root permissions to manage the software, you can not delete, or may some other unknown problems. The first time after the start of the Brush to wait a minute or a the Welcome Message pop-up in use. Remember! ! !
http://translate.google.com/translate?hl=ru&sl=auto&tl=en&u=http%3A%2F%2Fwww.wpxap.com%2Fthread-564190-1-1.html
http://www.wpxap.com/thread-564190-1-1.html
2907 is MX (Mexico?) country variant. Anyway works fine for me, better than 2905. Faster and more stable.
2175.2907.8858.13030
wow that's great! downloading!!!!!!!!!!! :fingers-crossed:
Hi there,
can you tell me what's the difference between 12480 and 13030 firmware?
In my custom rom i used the 12480 because it's the latest offical rom for all countrys...
13030 is only for Mexico?
Any recommendations?
Ok, somebody help me out here. I might be stupid. NaviFirm doesn't show this ROM for me. Is there a downloas link on the chinese web page somewhere that I cannot seem to find?
Even the Mecixo one has all languages in.

[ROLLUP] LIST of UNLOCK/UTILITIES/GUIDES for Windows 10 Mobile

This thread is a sort of recap of what we're able to do on Windows 10 Mobile.
I will regularly update this thread with new content as soon as possible.
Device Unlock
vcREG: lumia reg editor + interop unlock. Now Supports X50 device interop unlock
Description: vcREG is a powerful Lumia registry editor developed by vcFan for Lumia Windows Phones that has SYSTEM level access to the registry. the tool also has the ability to unlock all app capabilities for third party apps(interop unlock), and give SYSTEM level access to most of the filesystem through MTP.
[1/1/2016]Permanently interop Unlock your WP (even after hard reset)
Description: This thread by Riyad_ explains how to manually unlock your Windows Phone permanently, even after an hard reset. You can also use vcREG 1.2 to obtain the same result automatically.
[JAILBREAK][GUIDE]Interop Unlock for Windows 10 Mobile + All Capabilities
Description: Root Tool v2.0 is a tool developed by djamol that allows you to Interop/Capability unlock your Lumia/Samsung device. It works fine on build 10586 but does not work with the latest update of extras+info. If you have already updated extras+info just hard reset your device, disable automatic store updates and unlock your device (or just use vcREG 1.5).
Windows Phone Internals - Unlock bootloader, enable Root Access, create Custom ROM
Description: This tool by Heathcliff74 allows you to unlock the bootloader of selected Lumia Windows Phone models. After unlocking the bootloader, you can enable Root Access on the phone or create and flash Custom ROM's. Root Access allows you to load your own homebrew software onto the phone with high privileges. Apps can escape from their sandboxes. The tool can also create backup-images of the phone and access the file-system in Mass Storage mode.
Guides
[TUTORIAL] Deploy XAPs easily with WPV Xap Deployer
Description: This guide by MrCego explains how to sideload XAP files on your device using WPV XAP Deployer and Windows Phone SDK Lite. NOTE: If your device is not yet unlocked, you need to enable "Developer mode" in Settings > Update & Security > For Developers.
Tutorial | Lumia devices flashing
Description: This guide by Kaptaiin explains how to flash your Lumia device with a stock ROM. This guide is recommended to people who want to flash a specific ROM (e.g. to debrand or downgrade). If you simply want to flash the latest stock ROM consider using Windows Device Recovery Tool.
Steps to Download Windows 10 Mobile version of Apps manually ( Appx files )
Description: This guide by katsuga explains how to download appx files from the store on your computer.
[GUIDE] Unlock lumia x2x and enable Mass Storage mode
Description: This guide by ADeltaX explains how to enable mass storage mode (not MTP) on Lumia x2x devices (the ones supported by WPInternals).
windows mobile 10 Redstonebuild 14627& higher for old lumias in insider fast Ring
Description: This guide by raghulive explains how to install Windows 10 Mobile 14627 (Redstone) Insider Preview on discontinued Lumia devices in the Insider Fast Ring.
[GUIDE] Full FileSystem Access over SFTP on Windows 10 Mobile
Description: Full FS Access via MTP doesn't truly give full file system access as there are files and folders that are still inaccessible. Thanks to this guide by snickler you'll be able to browse the whole filesystem through an SFTP connection. Works fine on build 10586, just ignore wconnect errors.
[TWEAK] De-watermark Bing Lockscreen
Description: This guide by winphoneuser explains how to remove the Bing watermark from the "Pic of the day" when you set Bing as lockscreen wallpaper.
[TUTORIAL] Changing the font system (Buxton Sketch, Comic Sans and more)
Description: This guide by denisf1981 explains how to manually change the system font. You can also do this with DHT Font Change (see Utilities).
[HOWTO] [CAUTION] Maximize the potential of the (Lumia) Win10M camera
Description: This guide by AsvinDG explains what registry keys you should edit to maximize the potential of your camera (Lumia only).
[TUTORIAL] How to change the icons of quick status of the lock screen.
Description: This guide by denisf1981 explains how to replace lockscreen icons for any application. Interop-Unlock and Full FS Access are required.
[W10M BUILDS] Update links collection (cab-files) for various devices
Description: This thread by HD2Owner explains how to manually update to a specific Windows Insider build. To update, you need cab files specific for your device. Only few devices cabs are listed.
[TWEAK] Install homebrew apps as settings apps
Description: This thread by winphouser explains how to list a sideloaded application as a setting app.
URIs for URI Launching items
Description: This thread by SammaelAkuma explains how to create shortcuts to settings, app features and more using an URI (Uniform Resource Identifier). You will need to know the URI address of the feature you need. No root or unlock needed.
Utilities
[Firmware] Download all Lumia firmware And emergency files
Description: This website by Cholens lists the latest firmwares for all the Lumia devices available on Microsoft servers.
[XAP][18/09/2015][0.6] CustomPFD: registry editor + tweaks
Description: A great utility developed by Pasquiindustry that allows you to browse and edit part of the system registry. There are also lots of settings that you can customize directly without the need of browsing the system registry.
[App] App Data Manage Tool - Create backups from current state of apps and games
Description: This tool made by mahdi75 allows you to backup data of any app installed on your phone and restore it later, even on another phone. It can also erase the storage of your apps which is like reinstalling them but faster.
[App][Source] DHT Upgrade Advisor (Get redstone on old lumias)
Description: Using this app developed by Dormant Hackers Team, you can upgrade any unsupported Lumia device to Windows 10 Mobile Anniversary Update.
[APP] Interop Tools - A versatile registry editor, registry browser, unlock and more!
Description: This app by gus33000 allows you to edit the registry through the registry editor, browse the registry hives through the registry browser, find sepecific registry values/keys through the search page, apply tweaks to your device, Interop and Cap unlock your device, access device information, remotely edit the registry through the built-in desktop app, manage applications, manage certificates, perform standard registry operations such as deleting, renaming, and copying details, built-In Command Prompt inside the app, manage SSH accounts and more.
[116 TWEAKS] 2015-09-30 Tweaks for Windows 10 mobile - Quick Action button etc.......
Description: This tool is developed by kwanice and is based on WPTweaker by sensboston. It allows you to customize lots of settings to tweak your phone like the ability to use static IP, add 5th action button, etc.
[XAP]▒▒▒▒▒ Storage Explorer ▒▒▒▒▒
Description: A file manager developed by spavlin that allows you to browse, copy, edit and delete files from the root of the File System. Not all the folders are accessible. Some folders are accessible by writing the full path. If you have unlocked your phone with WPInternals check out post #37 for a full FS access version of Pocket File Manager and post #40 for a full FS access version of Files by Microsoft.
[XAP][Source] DHT Font Change for Windows Phone
Description: This app developed by DHT group allows you to replace the default system font with a custom one. It officially works on Lumia devices, Samsung devices are partially supported.
[XAP] AdBlocker For Windows Phone 8.x+
Description: This app developed by sandix allows you to replace HOSTS file to block annoying ads. You can customize the URL of the HOSTS file with multiple entries, view the entries of your current HOSTS file and restore your HOSTS file with an empty one.
[APP][2.0] Device Diagnostics HUB: Task Manager and more!
Description: This app by Pasquiindustry allows you to get lots of useful information about your device (CPU/RAM/GPU usage, download/upload speed, active system processes etc.) using Devices Portal.
Discontinued
[Fix added] [HOW TO] [UPDATED] Install Android apps on Windows 10 Mobile
Description: This thread by XDRdaniel explains how to deploy apk files on Windows 10 Mobile. Unfortunately Windows Bridge for Android (aka Project Astoria) is not available anymore since build 10549.
[GUIDE] Deploying Astoria Packages Manually To W10M
Description: This thread by HD2Owner explains how to deploy cab files to enable Windows Bridge for Android on unsupported devices. Unfortunately, as above, Windows Bridge for Android (aka Project Astoria) is not available anymore since build 10549.
[How to]Root Project Astoria
Description: This thread by ADeltaX explains how to obtain root access on Project Astoria. At the current stage, apps can't request root access because of the limitations of Astoria. The project is currently inactive because Astoria is not part of Windows 10 Mobile since build 10549.
[TOOL][OPEN SOURCE][GOOGLE][ALPHA] AM GApps Tool: GApps to W10M
Description: This thread by Marocco2 explains how to install GApps on Windows 10 Mobile. Currently, the tool has some issues (GMS not working), so it isn't fully functional. The project is currently inactive because Astoria is not part of Windows 10 Mobile since build 10549.
HOWTO: Install Windows 10 for Phones on Non-supported devices (and other hacks)
Description: This thread by RustyGrom explains how to install Windows 10 Mobile on unsupported devices using FiddlerCore. This method is reported to not work anymore after an update of Windows Insider app.
[W10M] Get Skype picture sharing from redstone (14267) working on 10586.107
Description: This guide by HD2Owner explains how to get Skype picture sharing on build 10586.107. Not useful anymore since the update has been officially released also for TH2 devices.
reserved
Good Jobs
Would you please add this thread - http://forum.xda-developers.com/windows-10/windows-10-mobile/how-to-root-project-astoria-t3187396??
Thanks
NZT-48 said:
Would you please add this thread - http://forum.xda-developers.com/windows-10/windows-10-mobile/how-to-root-project-astoria-t3187396??
Thanks
Click to expand...
Click to collapse
Done! Thank you .
Would you please add this thread :- http://forum.xda-developers.com/win...windows-mobile-10-redstone-rs1-build-t3319375
raghulive said:
Would you please add this thread :- http://forum.xda-developers.com/win...windows-mobile-10-redstone-rs1-build-t3319375
Click to expand...
Click to collapse
http://forum.xda-developers.com/showpost.php?p=65415872&postcount=24
it is better to add than your copy.
wait fast insider new 14267, now update is work bad and bug.
лагает так, что телефон хочется выкинут в мусорку.
reksden said:
http://forum.xda-developers.com/showpost.php?p=65415872&postcount=24
it is better to add than your copy.
wait fast insider new 14267, now update is work bad and bug.
лагает так, что телефон хочется выкинут в мусорку.
Click to expand...
Click to collapse
are you crazy,what the need of copy, its not one thought /innovation to get this hack ,while 950 xl got .29 update (dec 2015),MICROSOFTMDG updates on discussions,when this build released for only 950/xl,
is it a big thing to change registry values to get update,its just a commonsense ,not one copy other
raghulive said:
Would you please add this thread :- http://forum.xda-developers.com/win...windows-mobile-10-redstone-rs1-build-t3319375
Click to expand...
Click to collapse
Done!
Thanks for your guide! :highfive:
please add this also http://forum.xda-developers.com/windows-10-mobile/installing-windows-10-mobile-tech-t3431454/
interop
Hello guys.
I have Lumia 640 LTE RM_1072 AT&T
I download interop Tools(preview) and I trying interop unlock but I have problem ndtk.
Please help
Sorry if I post in another topic
dont use Preview version, use regular ARM version
you need Interop Tools from here https://forum.xda-developers.com/showpost.php?p=71000190&postcount=607
enable Developer settings on phone
install certificate, install ARM deppendencies, install Interop Tools ARM version
start Interop Tools, select Interop Unlock
select Restore NDTKSvc.
wait 15 seconds. turn off phone
turn on phone
start Interop Tools, select Interop Unlock
enable Interop/Cap Unlock and New Unlock Cap Engine unlock
hi newbie in here...
i've just updated my old lumia1020 to the latest w10m version 10.0.15254.369
i was hoping that in this version that the static ip option was enabled by default...
i was wrong...
need static ip option badly since my home and office wifi need to manually configure the ip/dns setting before i can use the network...
is there any way to configure static ip without interop unlock
or is it safe to use wp internal to unlock root with my current w10m build on nokia lumia 1020?? i update them using iutool method
hi
can anyone help me? i want to underclock my old lumia 950, after a year i think i picked it up from my drawer , and start to update it , and downloading some apps, it gets too damn hot, it was nearly burning ? did factory reset but nothing changes, installed its rom with pc , again nothing changed, so i want to underclock its processor , so it will be cool in every situation , i think ?
naryhd said:
hi
can anyone help me? i want to underclock my old lumia 950, after a year i think i picked it up from my drawer , and start to update it , and downloading some apps, it gets too damn hot, it was nearly burning [emoji23] did factory reset but nothing changes, installed its rom with pc , again nothing changed, so i want to underclock its processor , so it will be cool in every situation , i think [emoji16]
Click to expand...
Click to collapse
Could be the old battery overheating.
pidjones said:
Could be the old battery overheating.
Click to expand...
Click to collapse
nope its not battery , i changed it and the heat is beginning from cpu chipset (its near the power button)
Do you have a simple tutorial with deleting and replacing tones in alarms? because I am just only using two different alarms.
I know this is really too late to ask nowadays... Thank you!

[GUIDE] Win10 Mobile (Semi-)Offline Update Project 10586.107 [UPDATED V5.3 beta6]

So few years after it's released, Windows Phone will finally end it's life.
It's time to update Win10 Mobile Offline Update Package to V5.2 (still beta5), then a next step - Semi-Offline Update Package V5.3 beta 6, or "WXM-SOUP".
I'm not going to fix the bug of Windows 10 Mobile Offline Update V5.3b6 now.
This project will not update again and placed there, and no technical issue will be answered. I've stopped using Windows Phone and shifted to HMD Nokia developement since 2017.
告中国用户:严禁转载本教程到智机网!
Click to expand...
Click to collapse
- I merged every packages that need to be pushed into one.
- I created a tool to allow us analyze the phone, target packages and push them.
- Because of that, you will not encounter keyboard issue like before, but we still recommend you to remove lockscreen password before you proceed.
Just a little warning:
I've noticed someone in China is reselling this package to others for a pretty unreasonable price. To prevent this happen in V5.2 release, we added server-side checksum verification.
You can still use it even you don't have Internet connection or my server down in the future.
Win10 Offline Update Package Project is never meant for sale - if you bought this from someone, you've been scammed and you must request refund or report the seller who sold you this.
Chinese translation of the warning above:
最近,我注意到在中国,有人正在以非常不合理的价格出售Win10 Mobile离线更新包项目。为了防止这个事情在本次版本发生,我们添加了服务端校验检查,以确保工具确实是我们提供的正确版本。
即便没有网络连接或者未来服务器宕机,你也可以使用,但是我们无法保证文件的正确性。
Win10 Mobile离线更新包项目不可转卖——如果你从他人手中购买了这份更新包,你应当立即申请退款或者是向平台举报卖家。
Click to expand...
Click to collapse
Known unsupported Models:
All 4GB ROM models, e.g: Nokia Lumia 530, HTC 8S, Huawei Ascend W1, Hisense E260T+, K-Touch E8
HTC 8X
Cancelled 5th Generation Lumia prototypes, e.g. Honjo
RX-130 (Hapanero)
Then you tell me.
How to use?
Video demonstration: https://www.youtube.com/watch?v=g2pCzz5_znY
1. The OS Version of your phone must be at least 8.10.14219.341. If it's older than 8.10.14219.341, update it before you use the package. Most of phones should be able to search updates.
Samsung ATIV S and ATIV SE users can download required packages from "WP8.1_Offline_Specific_Models.txt" in attachment below.
2. Download Win10 Mobile Semi-Offline Update Package V5.3 beta 6 from the attachment (HCTSW_WXMSOUP_V5.3beta6.update.lzma2.7z) below.
Existing beta 2 to beta 5 owners can also download it and overwrite all the files.
What's new in V5.3 beta 6?
- Download amounts reduced as much as possible.
- Now it will download necessary packages from Microsoft server automatically.
- Allow end-users to provide detailed error reports if error appears.
What's new in Beta 5?
- Replace buggy timestamp acquiring method.
To use this new method, your PC must have PowerShell enabled, which I think Windows 7 or newer OS should have that enabled by default.
This will also make the tool usable in 2020.
If no more bugs, this will become into the final version.
What's new in Beta 4?
- Add Simplified Chinese translation of main executable (win10oup_cn.exe) .
- Ignore the "MMOSLOADER" file to prevent the executable itself.
- Change the logic of judging if WDRT installed.
- Fix the FC issue of beta 3.
- Now it can be used if the path contains space.
- Administrator previleges no longer required.
Click to expand...
Click to collapse
3. You must have WDRT and required all the Microsoft Visual C++ Redistributable Runtimes installed, otherwise it will not run as expect. All Visual C++ Redistributable Runtimes can be downloaded here:
https://www.techpowerup.com/download/visual-c-redistributable-runtime-package-all-in-one/
4. Extract the package and open "run_en.cmd" (Simplified Chinese users can run "run_cn.cmd" instead).
5. Follow the procedure the wxmsoup told you.
6. A "Device and Printers" window will appear. Disconnect (if connected) and remove your phone inside of it.
7. Get back to win10oup, press any key, and connect your phone to PC. Wait 10 seconds then press enter to detect your phone by using getdulogs.
8. If you see your phone listed, input "yes" (without quotes, lower case) and press enter. Input others will let getdulogs detect again, in case it's not listed.
9. Getdulogs will now grab the log and analyze it, after analyze complete, it will copy packages from repo directory to pkgs directory automatically. You may see few "System cannot find the file specified" prompts which expected (usually MMOS related). It can be still done even if your battery capacity is lower than 40%, but we still recommend you to fully recharge the battery.
10. Wait for the procedure complete, you may need to wait up to 40 minutes to get to Windows 10 Mobile 10586.107.
11. After 10586.107 installed, you can now use Interop Tools to hack the model to get further updates. Registry files are placed at "regs" directory, and Interop Tools 1.9.400 (known working version) can be downloaded from:
https://forum.xda-developers.com/showpost.php?p=70457420&postcount=550
12. The packages that pushed to your phone is located at "pkgs" directory - you can push it manually when you flash your phone back to WP8.1 and want to update to W10M next time.
Following Content is now archived to users who still want to use old packages themselves.
Translation of this guide
简体中文: http://www.ithome.com/html/win10/295565.htm
Deutsche: http://wpvision.de/windows-phone-hacking/9090-windows10mobile-offline-installation-per-iutools.html
Click to expand...
Click to collapse
Recently, Microsoft released Over-the-Cable Updater for Windows Phone. However, it still can't update unsupported devices to W10M directly, for supported devices they will start from 10586.107 first. Continue to use my offline update package.
But OTC Updater can be used as your alternative choice for further update, after you modified the model.
Click to expand...
Click to collapse
PLEASE DOWNLOAD V4.1 instead of V3/V4. V4.1 added support for LG Lancet and any other devices that has Snapdragon 410 Processor and fixed issues for several Snapdragon 800 Devices - Especially Nokia Lumia 1520 and Samsung ATIV SE.
To Lumia 810 Users: Now you can update to WP8.1GDR1 with Offline Update Packages. I knew how painful update to WP8.1 GDR1 on Lumia 810.
Push these packages from PART1 to PART4.
Is there any Huawei Ascend W2 users want a full offline update package to WP8.1 GDR1?
Click to expand...
Click to collapse
In August 2016, I released Win10 Mobile Offline Update Package for old models that can't get to Windows 10 right now in several communities in China.
Today, I'd like to present this package to everyone in XDA.
[NOW UPDATED TO V4.1]
It supports these models:
*Microsoft Lumia 430/435
Nokia Lumia 520/520T/521/525/526
*Microsoft Lumia 532
*Microsoft Lumia 535
*Microsoft Lumia 540
Nokia Lumia 620
Nokia Lumia 625/625H
Nokia Lumia 630
Nokia Lumia 635 (RM-974/RM-975/RM-1078)
*Nokia Lumia 636 (RM-1027)
*Nokia Lumia 638 (RM-1010)
*Microsoft Lumia 640
*Microsoft Lumia 640 XL
Nokia Lumia 720/720T
*Nokia Lumia 730/735
*Microsoft Lumia 735 (Verizon RM-1041)
Nokia Lumia 810 (T-Mobile US RM-878)
Nokia Lumia 820
Nokia Lumia 822 (Verizon RM-845)
*Nokia Lumia 830
Nokia Lumia 920/920T (RM-820/RM-821/RM-822/RM-867)
Nokia Lumia 925/925T (RM-892/RM-893/RM-910)
Nokia Lumia 928
*Nokia Lumia 929 Icon
*Nokia Lumia 930
Nokia Lumia McLaren (id315-x)
Nokia Lumia 1020
Nokia Lumia 1320
*Nokia Lumia 1520
Samsung ATIV S
Samsung ATIV S Neo
Samsung ATIV SE
HTC One M8 for Windows (AT&T, T-Mobile and Verizon variants are supported)
BLU WIN HD/LTE
LG Lancet VW820
MCJ Madosma Q501
MICROMAX W092
MICROMAX W121
HUAWEI Ascend W2
Acer Liquid M220
RAMOS Q7 (Prototype Only)
Panasonic Toughpad FZ-E1
TrekStor WinPhone 4.7
- Models with * are supported by Upgrade Advisor, these models are NOT RECOMMENDED to use this offline update package.
Need feedbacks from these models:
- Samsung ATIV S (SGH-T899M)
- Samsung ATIV S Neo (SGH-I187)
- Samsung ATIV Odyssey (SCH-I930)
- HTC One M8 for Windows (T-Mobile, 0P6B140)
To do that, you must be familiar with how to roll back your phone to Windows Phone 8.1. Windows Device Recovery Tool is necessary.
Instruction:
1. Make backup for your phone, for example, copy data to your PC. And make sure the OS of your PC must be at least Windows 7 Service Pack 1. Windows 8/8.1/10 are also acceptable, but you must install every Visual C++ Redistributable Runtime and Windows Device Recovery Tool.
2. Check your OS version in about phone. The OS version must be at least 8.10.14219.341 or newer. If the version is lower than required, please update it. You may want to use Windows Insider app from Windows Store. REMOVE YOUR PIN LOCK to prevent from some unknown issues after an upgrade.
3. Download and open the package by 7-Zip. Choose your model and extract the exact folder from it. For example, Nokia Lumia 820 should extract 480x800 folder from 2nd Generation folder. DO NOT EXTRACT cabs in that folder.
4. Press Win(Command)+R, in run command dialog, type "control printers" and run. Unplug your phone and remove your phone in Device and Printers window.
5. Extract iutool package attached below, and open a command prompt window with Administrator privilege. Change working directory to iutool.exe's location.
6. Plug your phone to your PC, then type this command:
iutool -l
7. If your phone is shown in command prompt window, then type this command:
iutool -V -p D:\480x800
(For example I have extracted this folder in Drive D)
8. Wait for about 40 minutes, then your phone will be in Win10 Mobile 10586.107.
9. Open Developer mode in "For Developers" option, then deploy tools that could modify phone's model to your phone.
10. Use any method that you know to modify your model, for example, I modified model to Microsoft RM-1116 (Lumia 950 XL Dual SIM). If you are going to use VCreg or Interop Tools, you needn't to Restore NDTKSvc.
The recommended version of Interop Tools can be downloaded here: http://forum.xda-developers.com/showpost.php?p=68322071&postcount=550
Click to expand...
Click to collapse
11. Check update, and you will receive another update to Win10 Mobile 14393 or later stable builds. Update to this build will fix critical issues you met.
12. After the update to another build, I recommended you to perform a hard reset to your phone. That would make the phone works at the best state.
Here's the demostration of upgrade Nokia Lumia 1020 (Hong Kong Variant) to W10M 10586.107:
https://www.youtube.com/watch?v=Ozt4QuQJj5U
How to choose the folder:
Lumia 52X, 62X, 720/T, 810, 820, 822, HUAWEI W2: 2nd Generation\480x800
Lumia 1320: 2nd Generation\720x1280
Lumia 920/T, 925/T, 928, 1020: 2nd Generation\768x1280
Lumia 1520: 2nd Generation\1520
Lumia 43X/532: 3rd Generation\43X-532
Lumia 535: 3rd Generation\535
Lumia 63X: 3rd Generation\63X
Lumia 73X: 3rd Generation\73X
Lumia 830: 3rd Generation\830
Samsung ATIV S/Neo: 2nd Generation\I8750
Lumia 929 Icon/930, Samsung ATIV SE: 3rd Generation\929-930-ATIVSE
HTC M8 for Windows (AT&T Variant): 3rd Generation\M8ATT
HTC M8 for Windows (Verizon Variant): 3rd Generation\M8Verizon
HTC M8 for Windows (T-Mobile Variant): 3rd Generation\M8TMobile
Lumia 540, TrekStor WinPhone 4.7: 4th Generation\540
Lumia 640/XL: 4th Generation\640-XL
Lumia McLaren/Goldfinger: 3rd Generation\McLaren-Goldfinger
BLU WIN HD LTE, MCJ Madosma Q501: 4th Generation\BLUWINHDLTE-MADOSMAQ501
Micromax W092: 4th Generation\MICROMAXW092
BLU WIN HD, Micromax W121, RAMOS Q7: 4th Generation\MICROMAXW121-BLUWINHD-RAMOSQ7
LG Lancet VW820: 4th Generation\VW820
Known issues:
- If the pre-installed default IME doesn't include English (United States), after an upgrade by this offline update package, pre-installed IME won't work. Please make sure your firmware's pre-installed IME included English (United States). However, if you modify your model by using Interop Tools by gus33000 then perform another update, IME issue will be fixed. Because this update package is made for Chinese users and China variant firmware at first, I couldn't take care of every variants. Sorry for that.
- To HTC 8X/8XT users: I'm sorry for the promise I made, but the packages doesn't work on HTC 8X/8XT because the MainOS partition is too small to upgrade. That's HTC's mistake.
- To Nokia Lumia 638 users: Please flash the latest China Variant Firmware (India Variant is not as stable as China Variant) to make sure the phone works at the best state, then download Upgrade Advisor from Windows Store to upgrade.
- To Prototype model users especially the cancelled model: Please make a full backup of phone first by using WinHex or something else. If you didn't do that, unbrick the prototype model is almost impossible.
- Because phones with 4GB ROM aren't capable for these package such as Nokia Lumia 530 and HTC 8S, this update package is not suitable for these models.
- To Nokia Lumia 1020 users: Update to Windows 10 Mobile will reduce the performance of precious 41MP Camera. If your Nokia Lumia 1020 is used for photography, DO NOT UPGRADE.
- Glance screen feature will be lost after another update to 14393 or later build, but it's possible to fix by using Interop Tools by gus33000.
- To Samsung ATIV S (GT-I8750) and ATIV SE users: Offline Update Packages to WP8.1GDR1 or GDR2 is available now. Now you can update to WP8.1GDR1 or GDR2 without using SDK Deployment.
- To Samsung ATIV S (GT-I8750) users: make sure you are using XXDOC2 firmware before update.
If your phone's pre-installed keyboard is neither English (United States) nor Chinese (Simplified, PRC), you'll meet a problem that your default keyboard doesn't work. To fix it:
1. Download the Internal IME Fix Package from the link below.
2. Extract your keyboard layout with your language code, for example, if you are using English (United Kingdom), extract the cab with en-gb from that package to the root of drive D, and rename it to 123.cab.
3. Open a command prompt window with administrator previlege, and change working directory to where iutool is, type this command:
iutool -l
4. Make sure your phone is listed in the output. Then type this command:
iutool -V -p D:\123.cab
5. You will encounter an error with code 8024a110, do not panic, the phone is still working with that package. The phone will reboot soon and perform another update to fix your keyboard.
6. After the update, you're able to use your keyboard. Modify phone model with VCreg or Interop Tools, and search for another update, remaining keyboard layout and pre-installed speech package will be fixed along with that update.
Here's some of the possible used language code in case you don't know how to choose:
de-de: German
en-au: English (Australia)
en-ca: English (Canada)
en-gb: English (United Kingdom)
en-ie: English (Ireland)
en-in: English (India)
fr-ca: French (Canada)
fr-fr: French (France)
ja-jp: Japanese
ko-kr: Korean
zh-hk: Chinese (Traditional, Hong Kong)
zh-tw: Chinese (Traditional, Taiwan)
You can also enable Mobile Enterprise on your phone. Just extract MobileEnterprise.ppkg from Enterprise_Configuration_File_for_TH2_Builds folder, and copy it to your phone, then tap "Yes, add it" on your phone. Soon your phone will become into Windows 10 Mobile Enterprise. Reboot your phone, Settings - Phone Update, Advanced options, and there's a "Defer Upgrade" available, now check it, then search update. If you still can't get any update, please modify your model and search update again.
Thanks for the collection here: http://forum.xda-developers.com/win...m-builds-update-links-collection-cab-t3234805 , and now it's possible to upgrade old models without Unlock Bootloader and Interop Unlock with SD card and WP8 SDK.
P.S. Only V4 and V3 set available here. V1 and V2 are deprecated and archived in Chinese Community.
Little hints:
- If your Lumia 830's navigation keys aren't responsible, you can push packages for Lumia 73X or Lumia 640/XL.
- If your Lumia 1520's navigation keys aren't responsible, you can push packages for McLaren.
- The directory catagory is depended on resolution, SoC, Virtual Navigation Bar availability, stock language packages included in firmware, etc.
- DO NOT USE Interop Tools provided in Windows Store.
In case that I can't give you help in time, here's some troubleshooting info for you:
IUTool Command Error Codes List: https://msdn.microsoft.com/en-us/library/windows/hardware/mt131833(v=vs.85).aspx
Also, if you encounter a error, don't unplug your phone, type command "getdulogs -o 123.cab" and waiting for Device Update Logs output. Open the 123.cab and open ImgUpd.log to get some hints. If you are a developer, you should be sensitive to error code lines.
Or, just attach the 123.cab to here.
Special Thanks:
@gus33000 for his Interop Tools
@zephray for LG Lancet W10M Update Package grabbing
DPMason, Ren, Max for provide devices to grab packages
Deprecated version download counts:
V3: at least 25,406 downloads
V4: at least 10,478 downloads
GNU components used:
- gawk
- wget
- aria2c
hikari_calyx said:
- Because phones with 4GB ROM aren't capable for these package such as Nokia Lumia 520/520T/521/530 and HTC 8S, this update package is not suitable for these models.
Click to expand...
Click to collapse
520/520T/521 has 8gb ROM.
Sent from my a3300-hv using XDA-Developers mobile app
Start digging after file explorer...... the one with C:/ acces.
I am not able to download!
This page can’t be displayed
•Make sure the web address https://dl-1.va.us.xda-developers.com is correct.
•Look for the page with your search engine.
•Refresh the page in a few minutes.
Download link does not work, can you upload it on another server?
(Edit: it's working fine now, updating my L720 )
are dual sims supported? for example lumia 630 dual sim.
I try on Ativ S it`s work but ... after uptade this offline package i must do hard reset (problem with keyboard).Then I change model name etc. download update 14393.576,device restart I get black screen with ;-( and start bootloop.............
Lumia 810
I was able to install 10586.107 on my Lumia 810 with out any problem!
Thank you!
Now my Lumia is on 14393.576 some how I did....
https://forum.xda-developers.com/wi...-dht-upgrade-advisor-redstone-lumias-t3434774
vuvkar said:
are dual sims supported? for example lumia 630 dual sim.
Click to expand...
Click to collapse
Yes you can. It doesn't matter if you are using Single SIM or Dual SIM or Operator Variants.
This is amazing work, OP, well done!
It's really useful to know that there's a way back from WP8.1 that doesn't involve risky flashing with WP Internals.
You mention that photography is downgraded for 1020, but my 1020 seems to produce good images still on W10M if I use Lumia Camera rather than the Windows Camera app. What's your experience?
GeoffreyK said:
This is amazing work, OP, well done!
It's really useful to know that there's a way back from WP8.1 that doesn't involve risky flashing with WP Internals.
You mention that photography is downgraded for 1020, but my 1020 seems to produce good images still on W10M if I use Lumia Camera rather than the Windows Camera app. What's your experience?
Click to expand...
Click to collapse
When upgraded to 14393.576, Lumia Camera works slower than that in WP8.1. I have two Lumia 1020 with yellow color to make comparison. Also, I'm using Nokia Camera Pro (pre-installed on Cyan), not the upgraded Lumia Camera by Microsoft Mobile.
Another alternative choice is using ProShot (ProShot Classic for W10M 10586.XXX or WP8.1) from Windows Store.
But upgrade 1020 to W10M is still not recommended.
got 1020 updated to 14393.576 (changed to 950 xl and enrolled to preview for developpers)
All is working well, even luminosity toggle (manual-automatic). Glance is back with the reg edting solution.
P.S. if cortana crash on listening try choosing another voice assistent (e.g. Microsoft Elsa Mobile).
Volpenger said:
got 1020 updated to 14393.576 (changed to 950 xl and enrolled to preview for developpers)
All is working well, even luminosity toggle (manual-automatic). Glance is back with the reg edting solution.
P.S. if cortana crash on listening try choosing another voice assistent (e.g. Microsoft Elsa Mobile).
Click to expand...
Click to collapse
Hi can you post a link which solution you used for Glance.
Thank you.
https://forum.xda-developers.com/showpost.php?p=68647224&postcount=1256
I've used vcREG to enable the Full FS Access and copy the files needed into the correct path.
You can import the attached reg files .
don't forget to reboot!
Lumia 925
I updated my mobile from 8.1 to windows 10 by using this method, it loaded fine (no errors). Just that when I tried to type anything it wouldn't type. So I couldn't use interop tools to be able to update if from W10M 10586.107. I have managed to downgrade again to 8.1. But I don't know why the keyboard didn't work. I even download different keyboard languages, but they showed as being downloaded but the keyboard still wouldn't work. The keyboard would show up, but that's all.
Any idea's ?
ryu35 said:
I updated my mobile from 8.1 to windows 10 by using this method, it loaded fine (no errors). Just that when I tried to type anything it wouldn't type. So I couldn't use interop tools to be able to update if from W10M 10586.107. I have managed to downgrade again to 8.1. But I don't know why the keyboard didn't work. I even download different keyboard languages, but they showed as being downloaded but the keyboard still wouldn't work. The keyboard would show up, but that's all.
Any idea's ?
Click to expand...
Click to collapse
many problems hard rest can fix it I am not saying in yours situation will fix but....
did you installed?
DHT Upgrade Advisor
https://forum.xda-developers.com/wi...-dht-upgrade-advisor-redstone-lumias-t3434774
TulakChoco said:
many problems hard rest can fix it I am not saying in yours situation will fix but....
did you installed?
DHT Upgrade Advisor
https://forum.xda-developers.com/wi...-dht-upgrade-advisor-redstone-lumias-t3434774
Click to expand...
Click to collapse
I did do a hard reset after I upgraded to win 10. That's when I realised my keyboard wasn't working. I couldn't change my phone values on interop tools to be able to get any more updates.
ryu35 said:
I updated my mobile from 8.1 to windows 10 by using this method, it loaded fine (no errors). Just that when I tried to type anything it wouldn't type. So I couldn't use interop tools to be able to update if from W10M 10586.107. I have managed to downgrade again to 8.1. But I don't know why the keyboard didn't work. I even download different keyboard languages, but they showed as being downloaded but the keyboard still wouldn't work. The keyboard would show up, but that's all.
Any idea's ?
Click to expand...
Click to collapse
This offline update package only considered keyboard of English (United States) and Simplified Chinese. If your default keyboard is not English (United States), for example English (India), you may need to push another keyboard package by using iutool.
I'll host the internal keyboard fix up package to mega soon.
ryu35 said:
I did do a hard reset after I upgraded to win 10. That's when I realised my keyboard wasn't working. I couldn't change my phone values on interop tools to be able to get any more updates.
Click to expand...
Click to collapse
I have released another package to fix this problem. Plz check it out
hikari_calyx said:
I have released another package to fix this problem. Plz check it out
Click to expand...
Click to collapse
I tried to add the keyboard using iutool but got an error command failed (HRESULT = 0x80070002)
update
I fixed my keyboard issue. what I did was I made a folder and named it 123 and put the keyboard cab that I named 123.cab inside. Then on iutool I put iutool -v -p C:\123 (this time I put little v instead off big V) I did get an error but my phone still updated itself and went to the spinning cogs and updated. So thanks for the help and now my mobile is on windows 10.

Windows 10 obile SDK/ADK/WDK Archives, Mirrors, Install files for Visual Studio

I used to have some SDKs and even a WDK for Windows 10 (Including Windows 10 Mobile). After recently installing Visual Studio 2015/2017 and building up libraries tools etc. one install after another I was able to acquire SDKs, ADKs and WDKs for Windows Phone 7, WP 8.0 and WP 8.1....but when I got started on installing or trying to install Windows 10 (Including Win10m) I realized none of the downloads on M$'s servers/webpages contain the Windows 10 Mobile portion of the installations, after doing a quick google search it appears Microsoft removed Win10m development feaures from their product downloads as far back as 2017?? Has it really been that long...? Wow.... I know I can't have been the only one to download these dev kits while they were available, can anybody provide a backup link or archive link to a cloud based service to share for those of us that still wish to continue to build Win10m source files and mess around with creating our own (UWP or not) Win10m software??
Thanks very much guys

Categories

Resources