Recent blog entries

Windows 10 IoT Core: Why is My App Package Name a GUID?

Question: I am using Visual Studio 2015 to create my Windows Universal Application and when I build and deploy it, I can’t find it listed on device or it is listed but with a GUID instead of the human readable name that I carefully gave it.  How can I fix this? How can I see this problem? The picture below shows the web access to a Raspberry Pi running Windows 10 IoT Core.  The highlighted item is the app that we will fix by giving it a human readable name. In Visual Studio, the Build output window shows: 1>Deployment complete (13982ms). Full package name: "77fae4cd-630a-45ec-9927-a72b8129f477_1.0.0.0_arm__j932756y98c8a"   How can I fix this problem? You can edit the Package Manifest file, Package.appxmanifest, to change the Identity Name:   Original      <Identity     Name="77fae4cd-630a-45ec-9927-a72b8129f477"     Publisher="CN=bruce.eitman"     Version="1.0.0.0" />   Modi ...

Read the rest of entry »

Windows 10 IoT Core: Stop A Running Package

Building on my previous articles (Windows 10 IoT Core: Starting a Package on Raspberry Pi  and Windows 10 IoT Core: Getting the MAC Address from Raspberry Pi) the following shows how to stop a running package. We start with the function StopApp(), which can be called either of the following ways:   StopApp("PushButton", true); StopApp("PushButton", false);   private async void StopApp(string appName, bool Force) {     String FullName = await GetPackageFullName(appName);     byte toEncodeAsBytes = System.Text.ASCIIEncoding.ASCII.GetBytes(FullName);     string appName64 = System.Convert.ToBase64String(toEncodeAsBytes);     String URL = "http://localhost:8080/api/taskmanager/stop?" + (Force ? "?forcestop=true&" : "") + "package=" + appName64;     System.Diagnostics.Debug.WriteLine(URL);     StreamReader SR = await PostJsonStreamData(URL); }   To stop the package ...

Read the rest of entry »

Windows 10 IoT Core: Shutdown and Reboot the Raspberry Pi

Building on my previous articles (Windows 10 IoT Core: Starting a Package on Raspberry Pi  and Windows 10 IoT Core: Getting the MAC Address from Raspberry Pi) the following functions will shutdown and reboot the Raspberry Pi running Windows 10 IoT Core.

private
async void ShutdownComputer()

{

String URL = "http://localhost:8080/api/control/shutdown";

System.Diagnostics.Debug.WriteLine(URL);

StreamReader SR = await PostJsonStreamData(URL);

}

private async void RebootComputer()

{

String URL = "http://localhost:8080/api/control/reboot";

System.Diagnostics.Debug.WriteLine(URL);

StreamReader SR = await PostJsonStreamData(URL);

}

The function PostJsonStreamData() can be found in Windows 10 IoT Core: Starting a Package on Raspberry Pi.

 

 

Copyright © 2015 – Bruce Eitman and Embedded101.com
All Rights Reserved

Windows 10 IoT Core: Starting a Package on Raspberry Pi

Just for fun, I thought that I would build on my previous article (Windows 10 IoT Core: Getting the MAC Address from Raspberry Pi) and this time use POST to send data to the web server.  I decided on starting a package.   To start a package, we need a some information, this includes:         1. The URL, in the case of starting packages it is “api/taskmanager/start”          2. How to POST the app to start.  We do this with the parameter “appid” which requires a Base 64 string         3. The name of the app – surprisingly this was the most challenging.  This required that we get the Relative Package ID, which is a very odd name for the app, not a user friendly name. I started with an function that handles the items above.   private async void StartApp( string appName ) {   ...

Read the rest of entry »

Win 10 IoT Core: SysInfo: A Universal Windows App (Part 2): REST & JSON Code

This blog outlines the REST and JSON code used in the SysInfo Universal App that mimics the Web Portal to Windows 10 IoT devices. This portal is a web service running on the devices that permits examination of the aspects of a currently running system.

Read the rest of entry »

Win 10 IoT Core: SysInfo: A Windows Universal App to get system info (as per the web portal) Updated

A Universal Windows App that mimics the web portal to a Windows 10 IoT Core device. Makes use of the web portal through REST and uses JSON to process the response for display. Can get ipconfig, processes, installed app, default app, OS info etc… All in an app.

Read the rest of entry »

Win 10 IoT Core: Universal Windows Apps Sideloading (Updated)

This is a work in progress. The objective is to be able to directly load a Universal Windows App from an Appx package on a Windows 10 IoT RPI2, The blocking issue is a PIN requirement. I can package up the app and deploy it to my development machine and a Win 10 phone but not to my RPI2. Updated for Web Portal IoT Package installation.

Read the rest of entry »

Upgrade Compact 2013 Development PC to Windows 10

If you are still using Windows 7 or Windows 8 to develop Windows Embedded Compact 2013 solution and hesitate to migrate to Windows 10, check out this entry.

Read the rest of entry »

Windows Embedded Compact 2013 App Builder–Sept 15 Update

Now available on Microsoft Downloads.

Application Builder for Windows Embedded Compact 2013 (with the latest fixes as of Sep 2015) provides the tools you need to develop applications that target Windows Embedded Compact 2013.  Is an update for Visual Studio 2012/13, not VS 2015.

Read the rest of entry »

Win 10 IoT Core: Remote Access

There is no console for a Windows 10 IoT device. They can though be remotely accessed in a variety of ways. This blog summarises these options:
PowerShell, Default App Web Console, FTP, Remote File System and Visual Studio Debugger.


Read the rest of entry »

Windows Embedded Compact 7

The Windows Embedded Compact 7 (Compact 7) getting started series is created to provide simple and easy to follow information to help academic, hobbyist and commercial developers to learn and engage in Compact 7 development.

***This is a series of 9 articles, with additional supplements, that cover the following subjects:

  • Development environment
  • OS design
  • Managed code application
  • Native code application
  • Silverlight for Windows Embedded application
  • SQL Compact database application
  • Debug and remote tools
  • More..

http://www.embedded101.com/compact7.aspx

Embedded101 Articles & Application Notes

Apr10CEDriverWiz Version 2.00: Using the Wizard
Created by David Jones on 4/10/2013 8:56:42 AM

  Book Links: ...
Read More..


Apr10CEDriverWiz Version 2.00: An Example
Created by David Jones on 4/10/2013 7:28:32 AM

Book Links: ...
Read More..


Apr09Installing CEDriverWiz for Visual Studio
Created by David Jones on 4/9/2013 8:41:27 AM

Install Visual Studio 2012/2008/2005 (depending upon your version of CE/Compact) and all of t...
Read More..


Apr01CEDriverWiz V2.00: About this release
Created by David Jones on 4/1/2013 7:33:39 AM

This brings the wizard in line with our Wrox book: "Professional Windows Embedded Compact 7" . ...
Read More..


Apr01CEDriverWiz Version 2.00 User Manual
Created by David Jones on 4/1/2013 6:40:34 AM

Index
Read More..


May15Configure Flash Storage to Launch Compact 7 OS Runtime with DiskPrep
Created by Sam Phung on 5/15/2012 8:41:50 PM

The DiskPrep powertoy is a useful utility to configure different type of flash storage to launch Wi...
Read More..


More
Turkish porno izle video site in rokettubeporno izle