Using Windows IoT Remote Client
Have a Raspberry Pi but no connected display? Fear not, Windows 10 IoT Core just added a feature that resembles remote desktop so you can interact with your devices.
Join the DZone community and get the full member experience.
Join For Freewant to set up your raspberry pi with windows 10 iot core and have remote access to your device with something like remote desktop? good news! windows 10 iot core supports something close, to it and there is a remote access app that works on windows 10, windows phone 10, and even hololens.
enabling remote access on windows 10 iot core
remote server support came with one of latest windows 10 iot updates, and it must be first enabled using the web interface.
connecting to windows 10 iot core
after this, open windows store and search for windows iot remote client . install it and run it. before doing anything on your raspberry pi, the connection to the device must be established.
working remotely
if the raspberry pi is in a local network, and remote server is enabled, then soon, the remote client should show up on the screen of your raspberry pi.
what we see on the windows iot remote client screen is what windows iot is displaying to the screen if the screen is connected. by example, we can use the windows 10 iot core command line to run commands.
if command line access is not allowed for default users, we get the following error for every command we try to run: access is denied. (excep_fromhresult 0x80070005). your device is not allowed to run the command line processor. to get rid of it, just log into the raspberry pi using powershell and run the following command:
reg add
“hklm\software\microsoft\windows\currentversion\embeddedmode\processlauncher” /v allowedexecutablefileslist /t reg_multi_sz /d “c:\windows\system32\cmd.exe\0”
you should be able to use the command line now with default access:
remember one thing: allowing default accounts to run everything on the command line is not a safe option, as every user in your network can connect to raspberrypi and see its screen.
remote access over mobile
there’s windows iot remote client also available for windows phone 10 devices. on windows phone 10, it offers almost the same experience as on desktop,
on mobile, we will see the same main screen as with desktop application.
for example, we can change settings.
of course, we can do all the other things too that work on the desktop version.
i found out that using a lumia 950 with a bluetooth keyboard and mouse to manage my pi with remote control applications is way more convenient than using the touch screen.
the good thing is that we can now set up a raspberry pi and manage it with no need for a connected display. windows iot remote client works like remote desktop for windows 10 iot core.
wrapping up
after some playing with the windows iot remote client, i found it to be a useful tool for those who have raspberry pis with no connected displays. it’s easy to control a pi via desktop or windows phone. on phone, windows iot remote client is more convenient to use when the phone has a keyboard and mouse connected to it. the windows iot remote client makes it also easy to debug and try out windows 10 iot core applications that have a user interface.
Published at DZone with permission of Gunnar Peipman, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Trending
-
Never Use Credentials in a CI/CD Pipeline Again
-
How To Integrate Microsoft Team With Cypress Cloud
-
MLOps: Definition, Importance, and Implementation
-
Tomorrow’s Cloud Today: Unpacking the Future of Cloud Computing
Comments