Recent blog entries

From the monthly archives: September 2015

We are pleased to present below all posts archived in 'September 2015'. If you still can't find what you are looking for, try using the search box.

Win 10 IoT Core: SysInfo: A Windows Universal App to get system info– OS Version 10.0.10531

A new version of Windows 10 IoT is available on Windows Dev Center. Version 5.x of SysInfo is now available on GitHub that addresses the OS changes in the web portal. This version has two versions of the commands in the JSON file. One for the new OS and one for the RTM version.
Version 5.0 Adds [Rename Device] and [Set Admin Password]. There are also some coding corrections for the generic [api] command.

Read the rest of entry »

Win 10 IoT Core: SysInfo: A Windows Universal App to get system info–Take Two

Version 4.x of SysInfo is now available on GitHub. T)his version has much improved JSON processing and includes additional commands Startapp, StopApp, Shutdown and Reboot. A customisable JSON file is used to list the app commands and their relative URLs.Update Version 4.5 has “Uninstall Package” command.

Read the rest of entry »

Win 10 IoT Core: SysInfo Commands.JSON file

This post shows (version 4.0) the JSON file that is loaded as start up and parsed to form a list of commands that is displayed in the left pane of the app’s UI

Read the rest of entry »

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 Windows Universal App (WebRest.js)

The Web Portal uses a number of JavaScript files that are embedded in it. The one listed here in full, WebRest.js, is used by a number of the API calls.

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 »

Pages: Previous12NextReturn Top

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