Reputation: 567
I'm running Visual Studio 2015 Community on my local machine. On another machine, I am running the Visual Studio 2015 Remote Debugger, found HERE. I do not understand why, when I run the Attach To Process and enter the IP of my remote machine, it gives me the error in the image below. There is no other more up to date version that I am aware of.
Upvotes: 0
Views: 384
Reputation: 18155
If you look at the "Details" on the page you linked to you will see the following (emphasis mine):
The Remote Tools are intended for computers that don't have Visual Studio so that you can debug, test, and profile apps that are executing on them. Visual Studio must be installed on the development computer that's connected to, or uses the data collected from, the remote computer. Connecting to the remote debugger and profiler that are included in the Remote Tools for Visual Studio 2015 is supported in Visual Studio Enterprise 2015.
You're using Visual Studio Community, not Visual Studio Enterprise. The error message could certainly be more clear, but the answer is right there on the download page.
Update
You might also want to check out this page (https://msdn.microsoft.com/en-us/library/y7f5zaaa.aspx). On it it states:
You must install the version of the remote tools that matches the version of your Visual Studio installation. Mismatched versions are not recommended.
In addition, you must install the remote tools that have the same architecture as the operating system on which you want to install it. In other words, if you want to debug a 32-bit application on a a remote computer running a 64-bit operating system, you must install the 64-bit version of the remote tools on the remote computer.
There are links to Remote Tools for Visual Studio 2015 Update 2 and Remote Tools for Visual Studio 2015 Update 1.
Upvotes: 1