My question is how do I permanently install/deploy my release version of a Windows IoT Core application to my Raspberry Pi SD Card?
I have written a little application that I am fairly happy with for now, so I want to be able to install so my Pi boots it on startup and it can be left to run for weeks on end if need be. Right now when I deploy release to the "Remote Device" option it disconnects when it has the network cable removed/visual studio is closed etc. basically it just acts as if it was still in debug.
Thanks in advance for any advice.
Once you've deployed it remotely via Visual Studio at least once, you should be able to set it by going to the Pi's Windows Device Portal (by navigating to
http://your-pi's-ip-address:8080
in your web browser). Once there, go to Apps -> Find your app in the list -> Select "Set as Default App".Alternately, you can remote in with PowerShell:
net start WinRM
.Set-Item WSMan:\localhost\Client\TrustedHosts -Value <Pi's machine-name or IP Address>
.Enter-PSSession -ComputerName <Pi's machine-name or IP Address> -Credential <Pi's machine-name or IP Address>\Administrator
.p@ssw0rd
(but I hope you didn't!)iotstartup list
.iotstartup add headed <appid>
to set it as your startup app. If it's a headless app, you'd instead useiotstartup add headless <appid>
.Hope that helps!
Source for all this is on Microsoft's developer docs for IoT: https://developer.microsoft.com/en-us/windows/iot/docs/setupdefaultapp