Hello,
I'm looking for Windows 10 Mobile packages :
MobileOS-x86-fre.zip
MobileOS-arm-fre.zip
Thanks.
Related
Hello,
I am using Energy ROM and which runs Windows Mobile 6.5, and it includes a version of Windows Remote Desktop which works with Windows Mobile 6.5.
In case I want to use a different ROM that has Windows Mobile 6.5, but not Windows Remote Desktop, how do I extract the Windows Mobile 6.5 app from my phone so I can move it to my a new ROM?
Hello there.
Is there any way how to install .xap/.appx/.appxbundle to my Windows phone device from my computer? I know I can install Visual Studio 2015 with deployment tool but I want to be sure I can install downloaded applications from the Internet and they won't crash.
Thanks in advance!
for XAP files you must have WP SDK installed (and use deploy tools or WPPT)
for APPX files you can use portal method (enable developer and portal in settings) and send appx file via FTP WEB interface (connect to phone with phone WiFi IP address)
Where can I download the Lite SDK?
Download the WP8.x SDK Tools Lite for your current WP8.x version:
- WP8.1: http://www13.zippyshare.com/v/15281796/file.html (155 MB)(v1.20)*
- WP8.0: http://www14.zippyshare.com/v/18768687/file.html (65 MB)(v1.20)
* APPX deploying might not work on Windows 7 (Error - The parameter is incorrect).
| How do I install the Lite SDK?
1) Extract the zip file and run InstallWP8XSDKToolsLite.bat to start the installation
2) After a few minutes WP8 Lite SDK should be installed on Windows 7 and Windows 8 (32 and 64bit)
| How can I developer unlock my phone?
- Step by step guide: https://msdn.microsoft.com/library/...UsingtheWindowsPhoneDeveloperRegistrationTool RegistrationTool
| How can I deploy an application to my phone?
- Step by step guide: https://msdn.microsoft.com/library/...UsingtheWindowsPhoneApplicationDeploymentTool DeploymentTool
| Registering an App Studio account for free
1) Register for a free App Studio account on: http://apps.windowsstore.com/
2) Now Developer unlock your Phone with the WP8 SDK lite tools following the guide above.
For Windows 10 Mobile you can directly install appx on phone using file manger or device portal on localhost/pc.
Hello,
If you are searching for Windows 10 IOT packages, you can download them on the Microsoft website:
Windows 10 IoT Core
http://www.microsoft.com/en-us/download/details.aspx?id=53898
14393.67.160804-2231.rs1_release_amd64fre_IOTCORE_PACKAGES.iso, 2.27 GB
You can also download 2 other files:
Windows 10 IoT Core Pro Update Control File
http://www.microsoft.com/en-us/download/details.aspx?id=53899
14393.67.160804-2231.rs1_release_amd64fre_IOTCORE_PRO.iso, 1.79 MB
Windows 10 IoT Core Universal Write Filter
http://www.microsoft.com/en-us/download/details.aspx?id=50037
Microsoft Windows 10 IoT Core Universal Write Filter\Windows_10_IoT_Core_Uwf.msi, 3.15 MB
OK,Very useful.
Does anyone know if there is a JRE to run java apps on Windows 10 Mobile?
I know that there used to be java on windows mobile os but is there java for Windows 10 or anyway to get java running on my Lumia 920?
no
Hello friends, I want to run an application written in golang in my windows 10 mobile phone. As a test I have cross compiled hello world for arm and windows OS, but the hello.exe doesnt get executed.
Test phone is Lumia 950 with windows 10 mobile version 1703, os build 10.0.15063.297. For our small project I want to test if golang written software would also work under windows 10 mobile. I would appriciate any help, recommendation, suggestions.
$ cat hello.go
package main
import "fmt"
func main() {
fmt.Println("hello, world")
}
GOOS=windows GOARCH=arm GOARM=7 ./go/bin/go build hello.go