[APPX][v1.3] Reboot app - Windows 10 Mobile

Built for Windows 10
USAGE:
Start app. Phone should reboot.
INSTALL:
Download latest Reboot_x.x.x.x_ARM.appx.zip & extract it.
Tap the appx in File Explorer app on phone & confirm trust. It should install
If it doesn't, try installing the dependencies first (extract zip and tap the appx:es)
CHANGELOG:
1.0 First release
1.1 Localization for: es, fr
1.2 Localization for: de it pt
1.3 Now rebooting using NRPC from Interop Tools
CAPABILITIES v1.3:
id_cap_oem_custom
SOURCE v1.3:
Code:
using Windows.UI.Xaml;
using ndtklib;
namespace RebootApp
{
sealed partial class App : Application
{
public App()
{
NRPC rpc = new NRPC();
rpc.Initialize();
rpc.SystemReboot();
Exit();
}
}
}
OLD VERSION 1.2 DETAILS:
CAPABILITIES v1.2:
ID_CAP_DIAGNOSTIC_CLIENT
ID_CAP_INTEROPSERVICES
SOURCE v1.2:
Code:
using Windows.UI.Xaml;
using System.Runtime.InteropServices;
namespace RebootApp
{
sealed partial class App : Application
{
public App()
{
Reboot();
}
[DllImport("FlightingClientDll.dll")]
public static extern int Reboot();
}
}

Thank you so much for your app. It works beautifully. I've been searching for something similar for ages. It's incredible that the only way to reboot a phone must be turning it off and on again.
I have two questions though. Is the result of this reboot similar to a soft reset (rebooting with physical keys) or just a turning off + turning on?
And the second question, could you localize the name of the app to a few languages? I'm not sure if that's a lot of work, but it would sure fit better with my other apps in Spanish.
Just nitpicking anyway, thanks again!

@epraes, I'm happy to hear it's working for you and that you like it!
epraes said:
I have two questions though. Is the result of this reboot similar to a soft reset (rebooting with physical keys) or just a turning off + turning on?
Click to expand...
Click to collapse
This app calls the Reboot() method of a library used by the Windows Insider app. If and how it differs from other ways to do it, I don't know.
epraes said:
And the second question, could you localize the name of the app to a few languages? I'm not sure if that's a lot of work, but it would sure fit better with my other apps in Spanish.
Click to expand...
Click to collapse
Sure! What do you want to see in the app list in Spanish (and in any other languages you speak)?

Thanks! It's just having "Reiniciar" instead of "Reboot" for the Spanish locale.

In french "Redémarrer"
Thanks

@epraes @titi66200 Try new version!
BTW can anyone confirm it's working on a non-Lumia phone?

Thank you for the great app. Works without any problem on Nokia 820 with 10.586.218.

Thanks again! Now it's "Reiniciar" as it should be
I suppose it's not very useful to say this, but it's working on a 640XL DS. No idea about non-Lumia phones, though.

Work perfectly without the dependencies on Lumia 1520 RM-937. Thanks a lot for the great app, this is the good app that can prolong the wear and tear on the power switch...

I get an error when trying to deploy to build 14328 (redstone)
Error - There is an error in XML document (2, 2).

@qzem, it's a Windows 10 UWP app, so try installing it by tapping the appx in the File Explorer app on your phone.
(If you want to install from PC you can use the Device Portal in web browser or WinAppDeployCmd.exe from command line.)

winphouser said:
@qzem, it's a Windows 10 UWP app, so try installing it by tapping the appx in the File Explorer app on your phone.
(If you want to install from PC you can use the Device Portal in web browser or WinAppDeployCmd.exe from command line.)
Click to expand...
Click to collapse
Thanks it worked. I installed it now directly from phone.

qzem said:
I get an error when trying to deploy to build 14328 (redstone)
Error - There is an error in XML document (2, 2).
Click to expand...
Click to collapse
Same error to me.

Please read before posting
winphouser said:
@qzem, it's a Windows 10 UWP app, so try installing it by tapping the appx in the File Explorer app on your phone.
(If you want to install from PC you can use the Device Portal in web browser or WinAppDeployCmd.exe from command line.)
Click to expand...
Click to collapse

In german : "Neustart"
thanks

Tks, make this shutdown and reboot pls

"Riavvia" in italian

"Reiniciar" in pt-BR pls

@LeonMobile @ADeltaX @denisf1981 New version adds: de, it, pt!
@denisf1981 I don't know a "power off" method..

winphouser said:
@LeonMobile @ADeltaX @denisf1981 New version adds: de, it, pt!
@denisf1981 I don't know a "power off" method..
Click to expand...
Click to collapse
thanks bro

Related

WP7 Mango Emulator Image Unlocked

This image emulator (italian localized) has no blacklisted applications.
You can replace the original file located into "C:\Program Files (x86)\Microsoft SDKs\Windows Phone\v7.1\Emulation\Images" folder with the current one.
The WP7 development is better if you can use every feature included in the emulator.
Password: WM70C1.it.bin
sabata said:
The WP7 development is better if you can use every feature included in the emulator.
Click to expand...
Click to collapse
Thanks a lot! It works fine (but still have a limited functionality - I believe it's just missed in image (not depends from lock) - I mean lack of LiveID and some settings).
You're right, some settings & apps aren't present in the image, others can be accessed from a PC custom app through the "Microsoft.SmartDevice.Connectivity.dll" assembly (you can see the Damir Dobric Posts).
Code example:
Code:
//...
DatastoreManager dsManager = new DatastoreManager(CultureInfo.CurrentCulture.LCID);
Platform platform = dsManager.GetPlatforms().FirstOrDefault();
Device device = platform.GetDevices()[1];
device.Connect();
var myAppToStart = device.GetApplication(new Guid("5B04B775-356B-4AA0-AAF8-6491FFEA5605"));
myAppToStart.Launch();
device.Disconnect();
//...
Valid GUIDs are (from blacklist):
"{5B04B775-356B-4AA0-AAF8-6491FFEA5600}" ;Shortcut
"{5B04B775-356B-4AA0-AAF8-6491FFEA5602}" ;Say It
"{5B04B775-356B-4AA0-AAF8-6491FFEA5603}" ;Calculator
"{5B04B775-356B-4AA0-AAF8-6491FFEA5604}" ;SystemInfo
"{5B04B775-356B-4AA0-AAF8-6491FFEA5605}" ;About
"{5B04B775-356B-4AA0-AAF8-6491FFEA5607}" ;Phone Lock Settings
"{5B04B775-356B-4AA0-AAF8-6491FFEA5608}" ;Keyboard
"{5B04B775-356B-4AA0-AAF8-6491FFEA5609}" ;Speed Type
"{5B04B775-356B-4AA0-AAF8-6491FFEA560A}" ;Alarms
"{5B04B775-356B-4AA0-AAF8-6491FFEA560B}" ;Brightness
"{5B04B775-356B-4AA0-AAF8-6491FFEA560D}" ;Sounds
"{5B04B775-356B-4AA0-AAF8-6491FFEA560F}" ;Gesturebester
"{5B04B775-356B-4AA0-AAF8-6491FFEA5610}" ;Text
"{5B04B775-356B-4AA0-AAF8-6491FFEA5611}" ;Call History
"{5B04B775-356B-4AA0-AAF8-6491FFEA5612}" ;Calendar
"{5B04B775-356B-4AA0-AAF8-6491FFEA5614}" ;Email
"{5B04B775-356B-4AA0-AAF8-6491FFEA5615}" ;People
"{5B04B775-356B-4AA0-AAF8-6491FFEA5616}" ;AccountsManager
"{5B04B775-356B-4AA0-AAF8-6491FFEA5617}" ;Word Mobile
"{5B04B775-356B-4AA0-AAF8-6491FFEA5618}" ;Excel Mobile
"{5B04B775-356B-4AA0-AAF8-6491FFEA5619}" ;PowerPoint Mobile
"{5B04B775-356B-4AA0-AAF8-6491FFEA561A}" ;SharePoint Mobile
"{5B04B775-356B-4AA0-AAF8-6491FFEA561B}" ;OneNote Mobile
"{5B04B775-356B-4AA0-AAF8-6491FFEA561C}" ;Call Settings
"{5B04B775-356B-4AA0-AAF8-6491FFEA561D}" ;OfficeURL
"{5B04B775-356B-4AA0-AAF8-6491FFEA561E}" ;OfficeHub
"{5B04B775-356B-4AA0-AAF8-6491FFEA561F}" ;Cell Settings
"{5B04B775-356B-4AA0-AAF8-6491FFEA5620}" ;Bluetooth Settings
"{5B04B775-356B-4AA0-AAF8-6491FFEA5621}" ;~Flightmode
"{5B04B775-356B-4AA0-AAF8-6491FFEA5622}" ;~Office Mobile Settings
"{5B04B775-356B-4AA0-AAF8-6491FFEA5623}" ;~Wifi Settings
"{5B04B775-356B-4AA0-AAF8-6491FFEA5624}" ;~Speech Settings
"{5B04B775-356B-4AA0-AAF8-6491FFEA5625}" ;~Find My Phone
"{5B04B775-356B-4AA0-AAF8-6491FFEA5626}" ;~Backup Settings
"{5B04B775-356B-4AA0-AAF8-6491FFEA5627}" ;~OBExParser
"{5B04B775-356B-4AA0-AAF8-6491FFEA5628}" ;ZIPView Mobile
"{5B04B775-356B-4AA0-AAF8-6491FFEA5629}" ;~SoftAP
"{5B04B775-356B-4AA0-AAF8-6491FFEA5630}" ;Zune
"{5B04B775-356B-4AA0-AAF8-6491FFEA5631}" ;Camera
"{5B04B775-356B-4AA0-AAF8-6491FFEA5632}" ;Pictures
"{5B04B775-356B-4AA0-AAF8-6491FFEA5633}" ;Marketplace
"{5B04B775-356B-4AA0-AAF8-6491FFEA5634}" ;Games
"{5B04B775-356B-4AA0-AAF8-6491FFEA5635}" ;Picture Camera CPL
"{5B04B775-356B-4AA0-AAF8-6491FFEA5640}" ;~Device Update Settings
"{5B04B775-356B-4AA0-AAF8-6491FFEA5641}" ;Device Update
"{5B04B775-356B-4AA0-AAF8-6491FFEA5642}" ;Location Settings
"{5B04B775-356B-4AA0-AAF8-6491FFEA5643}" ;SensorView
"{5B04B775-356B-4AA0-AAF8-6491FFEA5661}" ;Maps
"{5B04B775-356B-4AA0-AAF8-6491FFEA5664}" ;Maps Settings
"{5B04B775-356B-4AA0-AAF8-6491FFEA5700}" ;Convert
"{5B04B775-356B-4AA0-AAF8-6491FFEA5672}" ;StartKITL
"{5B04B775-356B-4AA0-AAF8-6491FFEA5673}" ;UIF
"{5B04B775-356B-4AA0-AAF8-6491FFEA5800}" ;TraceViewer
"{200E76A8-FE52-4ce9-A125-BB999A5C6A7D}" ;zSound Tool
"{08180483-59DD-419b-B938-B7082424D69A}" ;WLID Setup
"{9E768141-CAA9-4a4b-AF61-F47571CAD44A}" ;perfx
"{5B04B775-356B-4AA0-AAF8-6491FFEA5665}" ;AppChecker
Yep, I've posted a tiny command line utility for that http://forum.xda-developers.com/showpost.php?p=19201807&postcount=13
And you may also update your list: http://forum.xda-developers.com/showpost.php?p=19182534&postcount=11
Hi folks,
Any chance to get English kind of unlocked Mango emulator?
Thanks
krs4444 said:
Any chance to get English kind of unlocked Mango emulator?
Click to expand...
Click to collapse
Just change system language to English and restart emulator
sensboston said:
Just change system language to English and restart emulator
Click to expand...
Click to collapse
ZOMG Give me someone a nasty *****slap
Hey, I know it's been a while... but
EMU75ITREP.part4.rar is down
Can anyone maybe reupp it? Thank you!

static IP?!?

Hi guys
i'm using a lumia 930 with the actual wp10 build.
yesterday i had to learn, there is no way to use a static ip for my wlan.
ok, i could buy an app, witch would do it.
but i really dont get the point, why i should buy for such a standard function...
is there anyway to do this by my self?
of course
use my tweak in my signature
u need interop unlock phone
very easy
kwanice said:
of course
use my tweak in my signature
u need interop unlock phone
very easy
Click to expand...
Click to collapse
hey cool, thx for the info.
are there any problems with newer wp10 builds?
or maybe anything negativ about hacking a wp10 lumia 930?
haven't tried anything like this on wp, so on this OS im a total noob... ^^
i will try it as soon as possible.
StaticIP
huberei said:
static ip for my wlan.
Click to expand...
Click to collapse
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WCMSvc\WifiNetworkManager\Config]
"EnableStaticIP"=dword:1
http://forum.xda-developers.com/windows-10/windows-10-mobile/jailbreak-interop-unlock-windows-10-t3178140
http://forum.xda-developers.com/windows-10/windows-10-mobile/wptweakers-2015-08-17-added-5th-quick-t3180474
bbakbbaki said:
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WCMSvc\WifiNetworkManager\Config]
"EnableStaticIP"=dword:1
http://forum.xda-developers.com/win.../jailbreak-interop-unlock-windows-10-t3178140
http://forum.xda-developers.com/win...ptweakers-2015-08-17-added-5th-quick-t3180474
Click to expand...
Click to collapse
Worked in my L930
bbakbbaki said:
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WCMSvc\WifiNetworkManager\Config]
"EnableStaticIP"=dword:1
http://forum.xda-developers.com/windows-10/windows-10-mobile/jailbreak-interop-unlock-windows-10-t3178140
http://forum.xda-developers.com/windows-10/windows-10-mobile/wptweakers-2015-08-17-added-5th-quick-t3180474
Click to expand...
Click to collapse
I tried the provided list but the reg editor doesn't seem to write the reg entry. I used root tool v2.0. What seems to be the problem? Before using root tool I updated my 1520 to the latest update I think that matters(does it matter?).
1337_807 said:
I tried the provided list but the reg editor doesn't seem to write the reg entry. I used root tool v2.0. What seems to be the problem? Before using root tool I updated my 1520 to the latest update I think that matters(does it matter?).
Click to expand...
Click to collapse
Root tool is your problem. It used to work fine previously but now it's quite useless. Don't know why. Try with another reg tool.
Satirus said:
Root tool is your problem. It used to work fine previously but now it's quite useless. Don't know why. Try with another reg tool.
Click to expand...
Click to collapse
any that you can recommend? I haven't rooted my device yet. I tried the tweaks but it doesn't deploy I receive errors.
1337_807 said:
any that you can recommend? I haven't rooted my device yet. I tried the tweaks but it doesn't deploy I receive errors.
Click to expand...
Click to collapse
You can do that with Interop Tools
Satirus said:
You can do that with Interop Tools
Click to expand...
Click to collapse
I'll give it a shot.
bbakbbaki said:
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WCMSvc\WifiNetworkManager\Config]
"EnableStaticIP"=dword:1
http://forum.xda-developers.com/windows-10/windows-10-mobile/jailbreak-interop-unlock-windows-10-t3178140
http://forum.xda-developers.com/windows-10/windows-10-mobile/wptweakers-2015-08-17-added-5th-quick-t3180474
Click to expand...
Click to collapse
Create new or edit?
Thanks.
Do you know "Provisioning package" ?
Go to Seetings——Accounts——Access work or school——Add or remove a provisioning package——Add package.
I'll give you a “.ppkg” package, you can add it.
Download link:
pan.baidu.com/s/1bo2hkWR
Tips:This is China's network disk, the speed will be slower.
Finally..
I managed to enable IP Static with WPTweaker : http://forum.xda-developers.com/windows-10/windows-10-mobile/wptweakers-2015-08-17-added-5th-quick-t3180474
Thanks
vbnoob said:
Finally..
I managed to enable IP Static with WPTweaker : http://forum.xda-developers.com/windows-10/windows-10-mobile/wptweakers-2015-08-17-added-5th-quick-t3180474
Thanks
Click to expand...
Click to collapse
hi sorry for posting in old thread...
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)
huberei said:
is there anyway to do this by my self?
Click to expand...
Click to collapse
https://forum.xda-developers.com/windows-10-mobile/guideline-change-dns-lumia-950-vs-lumia-t3716736
augustinionut said:
https://forum.xda-developers.com/windows-10-mobile/guideline-change-dns-lumia-950-vs-lumia-t3716736
Click to expand...
Click to collapse
These settings aren't available in Windows 10 Mobile 1703+ due to new WiFi menu. But the old one isn't deleted, it's just hidden. You can use Interop Tools to run it and to change Static IP settings there.
Go to Interop Tools - General - Applications - Package List (swipe left from Deployment options). Find WiFi package there, tap on it and use Launch App button to open it. There you can find Static IP settings.
Of course, you must activate Static IP settings at first. You can use the tweak in Interop Tools for it or the provisioning package (you can find it, for example, here).
He said device portal.
A_Deerslayer said:
These settings aren't available in Windows 10 Mobile 1703+ due to new WiFi menu. But the old one isn't deleted, it's just hidden. You can use Interop Tools to run it and to change Static IP settings there.
Go to Interop Tools - General - Applications - Package List (swipe left from Deployment options). Find WiFi package there, tap on it and use Launch App button to open it. There you can find Static IP settings.
Of course, you must activate Static IP settings at first. You can use the tweak in Interop Tools for it or the provisioning package (you can find it, for example, here).
Click to expand...
Click to collapse
Just when I had lost all hope! Thanks! It didn't show when I searched in the box in the upper part but it there if you scroll all the way down to W.

Here City Lens / Here Transit

HI All
I'm upset. Reinstalled my back up of WM10 10586.164 on my Lumia 1520 and the above apps are not available anymore.
As I'm new to all this I could do with advice to try and install them somehow as they are the best apps on the market at the moment and the stock maps app suggested I walk home instead of a bus I know.
Please help I'm on windows 7
Thanks
John
http://1drv.ms/1Oix4sO
1. Go there from phone and download packages.
2. Using File Explorer on phone, go to Downloads folder and tap packages & confirm trust.
3. Go to Store and Check for updates. (don't launch the apps before they are updated)
Sent from mTalk
1. Go there from phone and download packages.
2. Using File Explorer on phone said:
Hi, this link doesn't work anyone, but curious if we can get nokia city lens to work on w10mobile ?
Click to expand...
Click to collapse
Will work but will open here maps or here drive to get directions, that will crash.
I need theese values from a 8.1 phone:
HKLM\system\maps\configuration\approvedpfnlist.
Here apps is useless because API changed
dxdy said:
Here apps is useless because API changed
Click to expand...
Click to collapse
Just post the reg values, sir......
No key "HKLM\system\maps\configuration\approvedpfnlist" on Lumia 830 Wp8.1.
I think there is the restriction.

Interop Tools Appx for Windows 10 Mobile - registry editor

Interop Tools is a brand new registry editor that works on Windows 10 Mobile, It allows you to View, Browse and Edit of registry entries. Great news is that this tool doesn’t need your device to be interop-unlocked for this. The tool has been developed by Gustave M, who is a well-known Windows enthusiast and developer.
How to Download & Install Interop Tools on Windows 10 Mobile:
1. Download the Interop tools Appx file from attachment, unzip
2. Now all you need to do is to turn on the developer option by going to Settings—>Update & Security–>For Developer–>Select Developer Mode and select “yes” when prompted. This enables side-loading of apps.
You should be now able to install “Interop Tools” by tapping on the Appx that you have downloaded in first step.
3. You should be ready to have some fun, though be careful before editing registry unless you know what you are doing.
4. Once installed, the app appears under installed apps
The tool is not Lumia-specific but seems access to restricted keys is only for Lumias.
Source
http://www.windowscentral.com/interop-tools-windows-10-mobile
edit: if you have problem with newer version, simple uninstall app from storage, restart phone and install again.
Interop Tools Beta 1.7.157.0 (fbl_release(gustavem).160621-0900) changelog:
+ New helper runtime component, all core registry editing functionality have been migrated to registryhelper.winmd, as such, there might be new bugs, especially in the registry browser. Please report them if you find any.
+ WinPRTUtil is now also used in the browser and in registry value deleting operations.
~ Fixed an ux issue with light theme enabled.
~ Fixed an issue where HKD would be incorrectly named in certain areas.
~ Fixed an issue where the tool would incorrectly report the state of offline charging when loading the page.
Click to expand...
Click to collapse
Official download location: http://bit.ly/InteropTools
NOTICE: ARM for mobile, x86/x64 for PC
Now if we could only use a similar method to get an Adblocker on the 950/950XL...
jhoff80 said:
Now if we could only use a similar method to get an Adblocker on the 950/950XL...
Click to expand...
Click to collapse
you cant. this is only for WP8.1 devices with W10M... not for native W10M devices (550, 650, 950, 950XL)... you can install on Lumia 950/950XL and change some registry values but you cant access to MTP to use adblock (change hosts file)
Can this be uninstalled from the phone?
EDIT: nvm. I got it. Disable developer mode, try to open app, get error, uninstall
The file works perfectly in nokia lumia 520 windows 10 mobile build 10586.242
but I have a question
which is the benefit of this application?
I have a nokia lumia 520 with windows 10 mobile build 10586,242
but still not unlocked for use XAP files and appx
so this application can give me those benefits?
I would like to know more about how to install files with this application appx
thank you ... is great news for our lumias
dxdy said:
you cant. this is only for WP8.1 devices with W10M... not for native W10M devices (550, 650, 950, 950XL)... you can install on Lumia 950/950XL and change some registry values but you cant access to MTP to use adblock (change hosts file)
Click to expand...
Click to collapse
Yeah, I know, that's what I meant- This is great progress from the old way of getting access to these things, but what would really be nice is something similar that allowed adblock.
---------- Post added at 04:10 PM ---------- Previous post was at 04:08 PM ----------
DLS123 said:
Can this be uninstalled from the phone?
EDIT: nvm. I got it. Disable developer mode, try to open app, get error, uninstall
Click to expand...
Click to collapse
You can also uninstall from the Storage page in System.
thank you . Awesome Tool
Hi
I tried changing the video resolution (VideoResolution) registry value from 3 to 4. This opens 4k recording resolutions in camera app on my LUMIA 730 dual sim and also the SLOW MOTION option in video recording. But when recording is pressed it shows the device can't save the video. Im new to this, so if anyone can help to find me any turnarounds or is this due to hardware limitations. Thanks
Looks like file explorer. A search button can.t be aded?
Just saying
OP,
You copied all the content from Nokiapoweruser article and gave source link to WindowsCentral. Try to be fair!!
seems to be a nice little tool
but anyone knows what i have to use for sftp accesss as username and passwort when using winscp to connect?
Read this
http://forum.xda-developers.com/windows-10/windows-10-mobile/guide-filesystem-access-sftp-windows-10-t3185766
yes did that, but made a two mistakes figured it out with the dev of the tool, btw he released a new version a few hours ago
https://mega.nz/#!eZNRFRJB!ZszQcU1lAAQhbj14y4E70wIQhbDqWNIvZ0CmCcKHUWY
few bugfixes for th2 branch
finally again full fs access to the public apps folder (had problems with that before with interop unlock)
KNM_THe1 said:
OP,
You copied all the content from Nokiapoweruser article and gave source link to WindowsCentral. Try to be fair!!
Click to expand...
Click to collapse
i not open NPU for months, WC is only WP blog which one i read.... but this one first i see it on one pirate site, but link there lead to WC not NPU
And for those wondering what sort of hacks/tweaks they can do using this prog/tool, there's a thread for that:
http://forum.xda-developers.com/showthread.php?t=2434959&page=41
Has anyone found a key to enable call recording on older phones?
Aj6627 said:
Has anyone found a key to enable call recording on older phones?
Click to expand...
Click to collapse
this not possible via registry.... is already discussed on forum...
The author of Interop Tools is gus33000 aka Gustave M.
Official source links:
https://twitter.com/gus33000/statuses/731780368853041152
https://mega.nz/#F!iZMhSSzI!sGQy4V12ubfvT8Abm2Uo1g
----------
Interop Tools beta 1.2
Changelog:
+ The registry browser value editing dialog now displays the value type and name.
+ The registry browser now correctly handles write errors and will display them to you.
+ The registry editor now saves the history and has a new clear all button to clear all of them.
+ You can now tap a history item in the registry editor and it will fill all fields for you.
~ Improved the Registry browser ui again.
~ The app is now a regular app and not a settings app as there was many requests for this.
~ New icon for the app.
~ Small ui changes on the welcome page.
~ Bug fixes.
Known issues:
* It appears there is an editing issue for the pagingfiles on redstone, where the value is not set, this might be due to the key being reverted automatically. This is under inspection.
? It appears there is an editing issue for the pagingfiles on threshold, where some ";" appears instead of spaces, I can't reproduce it on my side, so if you could confirm or not confirm that to me on twitter that would be great.
Side notes:
* I know I need to add a way to alert from the app of new updates, this is under consideration.
* A small tweak page is in the works, if you have tweak ideas please tweet me them with the page where you found them or yourself if you found it, so I can properly credit peoples.
You may ad poweroff charging. Sure will be a huge succes.
Hi. I am unable to install it. It just closes when tapping from device and confirming install. When in AppDeploy app, I got this error "Error - There is an error in XML document (18, 15)." I'm using Nokia 925 Windows 10 10586.318. Please help what am I missing here?

[Tutorial] How to Enable Continuum on Unsupported phones [Windows 10 Mobile]

Continuum is such a great feature that turns your phone into a big-screen projector, it supports officially a few phones because it requires good specs to run it as well.
Anyway, there is a way to enable Continuum on any windows 10 mobile phone via Miracast (Wi-Fi), it does even work on lumia 630 .
What you need to know first
1- you will do this at your own risk
2- this can cause some problems, one of these problems is that .XAP apps like Whatsapp won't work anymore unless you reset your phone
3- your phone needs to be interop unlocked, if you want to do it check this thread (Interop Tools): https://forum.xda-developers.com/windows-10-mobile/windows-10-mobile-apps-and-games/app-interop-tools-versatile-registry-t3445271
4- Continuum will only work via Miracast and not via the dock.
And now, let's get started!
-----
How To
1- Download this cab on your PC from here :
https://drive.google.com/file/d/0B-txDcTZoU6Mbi00bTNuWUxIUUE/view
and move it to a new folder, make sure that the name of the folder doesn't contain a space, name it with a simple name
2- download iutool on your PC (Size: 4MB)
Download link : https://drive.google.com/file/d/0B-txDcTZoU6MNnowSi0tMDdJbXc/view
extract it to a new folder
3- on your pc run the Command Prompt as administrator
go through the CMD to the folder where you extracted iutool
4- Type this command on cmd :
iutool -l
Your phone information must show up.
now type this command :
iutool -V -p "the path of the folder where you put the cab file"
for example: iutool -V -p F:\Continuum
Note: if you get an error try again, if you got it again open your phone and go to update settings and try again.
5- Now your phone must install the cab file
6- after the installation process you need to create a registry, if you have the last version of Interop Tools on your phone it will be very easy to do it, just open Interop Tools, go to Tweaks and enable "Force Continuum via Miracast on unsupported devices" and restart your phone.
If you have another registry editor (in other words: you want the long way ) follow these instructions:
Create a new registry.
Registry Type: Integer
Registry key path: HKLM\SOFTWARE\Microsoft\shell\docking
Registry Value Name: EnabledForTest
Registry Value Data: 1
and then restart your phone and Continuum should work.
Possible problems:
1- As I said first .XAP apps may not work any more.
2- If you will connect it to a PC, the keyboard and the mouse of the pc may not work with Continuum.. so you will need to scroll and control using your phone.
3-Your phone may heating up while projecting.
Continuum will not be so fast but it's almost acceptable.
I (with my team) tested it on some phones : Lumia 630, Acer Liquid M330, Lumia 640 XL, Lumia 930 and more .... It works well!
I hope that this is helpful and better explained
If there is any question I would be happy to answer as soon as I can.
Sorry for my bad English
Source : Read this thread
Here is a short video to see how continuum runs on my Lumia 630 :
you must be f***** kidding
https://forum.xda-developers.com/windows-10-mobile/continuum-unsupported-devices-t3496651
djtonka said:
you must be f***** kidding
https://forum.xda-developers.com/windows-10-mobile/continuum-unsupported-devices-t3496651
Click to expand...
Click to collapse
Hi there,
have you ever heard about respect while replying
However, I know that you can explain it within 10 words but not everyone will get it as well so I explained it step by step and so detailed possible so that everyone can do it, so I'm not f***** kidding
Plus, that thread didn't explain everything but I did!
Thank you for your reply!
did I heard about mentioning of the source if you trying be smart ass on XDA?
djtonka said:
did I heard about mentioning of the source if you trying be smart ass on XDA?
Click to expand...
Click to collapse
You are right, I planned to do that but I forgot it sorry, I will do it right now!
Sorry again
Can the next tutorial be about how the enable Continuum on unsupported devices, such that it works via the Microsoft Display Dock too?
sagnikpal2004 said:
Can the next tutorial be about how the enable Continuum on unsupported devices, such that it works via the Microsoft Display Dock too?
Click to expand...
Click to collapse
Microsoft Display Dock or any other Continuum dock require some hardware features like USB Type-C the unsupported phones don't have them. So there will not be any tutorial about this sorry.
Abdullah S.A. said:
Continuum is such a great feature that turns your phone into a big-screen projector, it supports officially a few phones because it requires good specs to run it as well.
Anyway, there is a way to enable Continuum on any windows 10 mobile phone via Miracast (Wi-Fi), it does even work on lumia 630 .
What you need to know first
1- you will do this at your own risk
2- this can cause some problems, one of these problems is that .XAP apps like Whatsapp won't work anymore unless you reset your phone
3- your phone needs to be interop unlocked, if you want to do it check this thread (Interop Tools): https://forum.xda-developers.com/windows-10-mobile/windows-10-mobile-apps-and-games/app-interop-tools-versatile-registry-t3445271
4- Continuum will only work via Miracast and not via the dock.
And now, let's get started!
-----
How To
1- Download this cab on your PC from here :
https://drive.google.com/file/d/0B-txDcTZoU6Mbi00bTNuWUxIUUE/view
and move it to a new folder, make sure that the name of the folder doesn't contain a space, name it with a simple name
2- download iutool on your PC (Size: 4MB)
Download link : https://drive.google.com/file/d/0B-txDcTZoU6MNnowSi0tMDdJbXc/view
extract it to a new folder
3- on your pc run the Command Prompt as administrator
go through the CMD to the folder where you extracted iutool
4- Type this command on cmd :
iutool -l
Your phone information must show up.
now type this command :
iutool -V -p "the path of the folder where you put the cab file"
for example: iutool -V -p F:\Continuum
Note: if you get an error try again, if you got it again open your phone and go to update settings and try again.
5- Now your phone must install the cab file
6- after the installation process you need to create a registry, if you have the last version of Interop Tools on your phone it will be very easy to do it, just open Interop Tools, go to Tweaks and enable "Force Continuum via Miracast on unsupported devices" and restart your phone.
If you have another registry editor (in other words: you want the long way ) follow these instructions:
Create a new registry.
Registry Type: Integer
Registry key path: HKLM\SOFTWARE\Microsoft\shell\docking
Registry Value Name: EnabledForTest
Registry Value Data: 1
and then restart your phone and Continuum should work.
Possible problems:
1- As I said first .XAP apps may not work any more.
2- If you will connect it to a PC, the keyboard and the mouse of the pc may not work with Continuum.. so you will need to scroll and control using your phone.
3-Your phone may heating up while projecting.
Continuum will not be so fast but it's almost acceptable.
I (with my team) tested it on some phones : Lumia 630, Acer Liquid M330, Lumia 640 XL, Lumia 930 and more .... It works well!
I hope that this is helpful and better explained
If there is any question I would be happy to answer as soon as I can.
Sorry for my bad English
Source : Read this thread
Here is a short video to see how continuum runs on my Lumia 630 :
Click to expand...
Click to collapse
What do you mean with whatsapp not working anymore?? Not working on Continuum or that this method somehow breaks the app and won't work anymore?
xxJMarian said:
What do you mean with whatsapp not working anymore?? Not working on Continuum or that this method somehow breaks the app and won't work anymore?
Click to expand...
Click to collapse
Well I mean that this method will break the app and won't work anymore on your phone.
Abdullah S.A. said:
Well I mean that this method will break the app and won't work anymore on your phone.
Click to expand...
Click to collapse
This means that everytime i use continuum some xaps will break?? If this is the case i don't see the point on enabling it since with this logic will break every app that is not supported by continuum
No app break if install continuum.
Well, I tried on my 630 and old 8.0 apps work fine. I didn't try whatsapp since I don't use wp as daily driver anymore.
I don't have any tv or screen that support miracast so I tried projecting to my old android tablet and it was pretty laggy. This was different than 1 sec delay, it was like a pc whose gpu driver isn't installed.
I tried it on my lumia 630 ( RS1) and my Acer Liquid m330 (RS2) and .XAP apps don't work anymore on the both of my devices.
I'm not the only one who have this problem, other people are having it.
But however, I said it's one of the possible problems and perhaps you face it or perhaps you don't!
Abdullah S.A. said:
I tried it on my lumia 630 ( RS1) and my Acer Liquid m330 (RS2) and .XAP apps don't work anymore on the both of my devices.
I'm not the only one who have this problem, other people are having it.
But however, I said it's one of the possible problems and perhaps you face it or perhaps you don't!
Click to expand...
Click to collapse
I have RS1 so i might skip this for a while until there's a fix
Can anyone install latest rs1 build after installing continuum cab? I'm stucked in 14393.953. I get 0x8018830f error everytime I try installing 14393.1066.
Try this.: http://www.windowsphonearea.com/getting-error-trying-upgrade-windows-10-mobile-14393-448/
augustinionut said:
Try this.: http://www.windowsphonearea.com/getting-error-trying-upgrade-windows-10-mobile-14393-448/
Click to expand...
Click to collapse
I'm not using any of these. I enrolled insider and quit but I still get the same error.
BlueTR said:
Can anyone install latest rs1 build after installing continuum cab? I'm stucked in 14393.953. I get 0x8018830f error everytime I try installing 14393.1066.
Click to expand...
Click to collapse
Try doing hard reset, it's the best way to solve those errors
I've been using continuum on my lumia 1520 since months ago I found the tutorial on youtube. I installed it when I was in 14393 AU update with that cabs file.
Now I'm in fast ring 15063 CU and continuum runs better. Upgrading build will upgrade the continuum experience. In this latest FR, continuum still work when our screen locked and it's great. The ability to change screen timeout whether on phone or second display has been added.
But we will never see the improvement of continuum feature since mostly all older devices wont get the creator update nor the rest RS3. We wont witness how it can have floating windows like they showed us last year or any improvements.
---------- Post added at 06:29 AM ---------- Previous post was at 06:25 AM ----------
BlueTR said:
Can anyone install latest rs1 build after installing continuum cab? I'm stucked in 14393.953. I get 0x8018830f error everytime I try installing 14393.1066.
Click to expand...
Click to collapse
It happened to me also that I couldnt update build after installing continuum, but somehow after joining fast ring, it allowed me to update my build and bringing improvements to continuum feature also. Have you tried to join fast ring?
YoungAll said:
I've been using continuum on my lumia 1520 since months ago I found the tutorial on youtube. I installed it when I was in 14393 AU update with that cabs file.
Now I'm in fast ring 15063 CU and continuum runs better. Upgrading build will upgrade the continuum experience. In this latest FR, continuum still work when our screen locked and it's great. The ability to change screen timeout whether on phone or second display has been added.
But we will never see the improvement of continuum feature since mostly all older devices wont get the creator update nor the rest RS3. We wont witness how it can have floating windows like they showed us last year or any improvements.
---------- Post added at 06:29 AM ---------- Previous post was at 06:25 AM ----------
It happened to me also that I couldnt update build after installing continuum, but somehow after joining fast ring, it allowed me to update my build and bringing improvements to continuum feature also. Have you tried to join fast ring?
Click to expand...
Click to collapse
My device has 512mb ram, I joined fast ring and got your device is up to date message. Then I quit from insider and tried installing 14393.1066 and got same error. I think I'll hard reset.

Categories

Resources