Some functions require you to connect via PowerShell, the following is based on the Micrsoft guide here: https://developer.microsoft.com/en-us/windows/iot/docs/powershell

Setup for PowerShell Connection

On your desktop PC search for "Windows PowerShell" > rigth click it and select Run As Administrator.

You should now see the PowerShell console.

Start the WinRM service on your desktop to enable remote connections:


net start WinRM

Enable the local account token filter policy:


PS> Set-ItemProperty –Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System –Name LocalAccountTokenFilterPolicy –Value 1 -Type DWord

Then enter:


PS C:\Windows\system32> Set-Item WSMan:\localhost\Client\TrustedHosts -Value <Win IoT device name or IP Address>
To start a session with your Windows IoT Core device:

Enter-PSSession -ComputerName <Win IoT device name or IP Address> -Credential localhost\Administrator

Enter the Windows IoT Administorator password when prompted then after a delay if you have connected sucessfully the prompt will return starting with the IoT device name or IP address.

Exit PowerShell session


Exit-PSSession

 

USEFUL?
We benefit hugely from resources on the web so we decided we should try and give back some of our knowledge and resources to the community by opening up many of our company’s internal notes and libraries through mini sites like this. We hope you find the site helpful.
Please feel free to comment if you can add help to this page or point out issues and solutions you have found, but please note that we do not provide support on this site. If you need help with a problem please use one of the many online forums.

Comments

Your email address will not be published. Required fields are marked *