Raspberry PI Windows 10 and IoT (Internet Of Things) updated 150907
Today I completed my first program in C# for Windows 10 IOT.
This is a small program that can control the green LED on the board on
and off by click on the right button in the window, [Picture 1]

Picture 1: Windows to control the LED.
Source code+bin here: CsharpUAPgpio.zip (approx 40 MB)
The example is keept very simple to show how to start programming in c# and windows 10 IOT.
It could be nice to log in to the Raspberry through WinRM and Powershell.
To connect and send a simple command ipconfig, open a powershell ISE and type:
net start WinRM
$IPnr="192.168.2.142"
Set-Item WSMan:\localhost\Client\TrustedHosts -Value $IPnr
$s=New-PSSession -ComputerName $IPnr -Credential $IPnr\Administrator
$res=Invoke-Command -Session $s -ScriptBlock { ipconfig }
Remove-PSSession -session $s
write-host $res
In the session try to start Msvsmon if it is not already started.
schtasks /run /tn StartMsvsmon
150830
More to come. Just started.....
Recently I downloaded Windows 10 to my Respberry PI 2 to investigate how this combination could be used for IoT.
Before you download windows 10 for Raspberry, make sure you have a
Raspberry PI version 2. It will not run on a Raspberry PI version
1.
Download "Windows 10 IoT core" here:
https://ms-iot.github.io/content/en-US/Downloads.htm
And here is a guide for preparing your micro-SD card. (If your raspberry board has a SD-card slot, your board is not revision 2)
http://ms-iot.github.io/content/en-US/win10/SetupRPI.htm
Simple
guide: Start "windows10IotImageHelper" and locate the file flash.ffu
under the folder "C:\Program Files (x86)\Microsoft IoT\FFU\RaspberryPi2"
Download Microsoft Visual studio Community edition here.
https://dev.windows.com/en-us/downloads
I
included "Python Tools" when I installed Visual studio. Might be handy
because there is a lot of Python code for the Raspberry Pi out there.
You propably also would like to download "Remote Tools for Visual Studio 2015" to
control your raspberry Pi from within Visual Studio. IYou can download it from the same page as Visual studio (scroll down)
When Windows 10 Iot runs on the raspberry start "WindowsIoTCoreWatcher"
You will now find your raspberry board named: minwinpc if you have not changed its default name.
Link to microsoft development page:
https://www.windowsondevices.com