3

I have Raspberry Pi 2 and (am trying to) develop with WIndows IoT Core. I think I have followed all directions at http://ms-iot.github.io/content/en-US/GetStarted.htm. I am using all the latest IoT Core Image and Visual Studio 2015 installs listed by the link.

IoT Core Watcher recongizes my raspberry pi 2 The web interface also allows me to configure the raspberry pi. but MsVsMon.exe is not running on the raspberry when i list processes.

From a powershell when i try to start MsVsMon i get the following error:

[minwinpc]: PS C:\Data\Users\Administrator\Documents> schtasks /run /tn StartMsVsmon
schtasks : ERROR: The system cannot find the file specified.
    + CategoryInfo          : NotSpecified: (ERROR: The syst...file specified.:String) [], RemoteException
    + FullyQualifiedErrorId : NativeCommandError

Because MsVsMon is not running i am not able to debug from Visual Studio.

Any help would be appreciated.

goldilocks
  • 60,325
  • 17
  • 117
  • 234

1 Answers1

2

I had this problem too, and there is a very simple fix!

If you are trying to deploy the app with the authentication mode "None", change it to "Universal (unencrypted protocol)". That was required since the November update to IoT and Visual Studio Update 1.

You can find the authentication mode in Properties -> Debug -> Authentication Mode, at least for a C# app.

M3579
  • 121
  • 3