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.
Related
I need to write an app to run on Windows CE .net 4.2. I would like to get platform builder for Windows CE .net 4.2, but it doesn't seem to be available on the microsoft site. Can someone help me find it?
It is not the .net that was 4.2, it was the version of CE. This appeared as WM 2003 and WM 2003 SE. The .NET compact framework for the machines was 1.0 or 1.1.
To test the app in an emulator use the standalone emulator. Now at version 3.0
http://www.microsoft.com/downloads/...AF-12E3-4B2F-A394-356E2C2FB114&displaylang=en
The WM 2003 SE images for it are here
http://www.microsoft.com/downloads/...b5-f2a2-47d7-a41d-825fd68ebb6c&displaylang=en
To write .net 1.0 and 1.1 WM apps you will need VS2003 PRO.
VS 2005 and VS 2008 can be forced to create .net 1.0/1.1 executable images but it's a total pain in the ...., you have to hack the build files to get it to work.
For C++ Win32, AFC or MFC you can use the free version of EVC 4.0
http://www.microsoft.com/downloads/...3D-50D1-41B2-A107-FA75AE960856&displaylang=en
Dont forget to apply SP4 to it after install. (Same page, use the link at the bottom)
Thank you very much for the help!
How about modifying the BSP or kernel, which version of tool would you use for that?
For that you will require the CE 4.2 Platform Builder package. Microsoft pull superceded versions off their site, the current version is for CE 6.0
The evaluation version works fully for six months then you have to licence it.
Search in Google for "CE Platform Builder 4.2". Some non Microsoft sites may have a copy of it, but some of these sites could also be of a rather dubious nature. i.e warez peer-to peer file sharing etc.
The documentation for it can be found here
http://msdn.microsoft.com/en-us/library/bb851528(v=MSDN.10).aspx
actually that's what the guy asked for in the first post
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.
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,
I'm looking for Windows 10 Mobile packages :
MobileOS-x86-fre.zip
MobileOS-arm-fre.zip
Thanks.
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