5

I am observing strange behavior from my VS 2015. For some reason it keeps posting some data to vortex.data.microsoft.com/collect/v1.

I already uninstalled "Visual Studio Application Insights" extension. But I can still see arbitrary posts in Fiddler. I had no issue with VS 2013 and VS 2012.

Is there any way to stop this?

enter image description here

2
  • 1
    Here's a quick work around.. Map the vortex.data.microsoft.com to 127.0.0.1 in %SystemRoot%\System32\drivers\etc\hosts file. Commented Dec 22, 2015 at 22:08
  • Have a look here for more information about the source of the requests and how to get rid of it: stackoverflow.com/questions/31452435/… Commented Mar 15, 2016 at 14:03

1 Answer 1

0

If you are using ReportViewer, there is a way to disable it:

<rsweb:ReportViewer ID="ReportViewer1" runat="server" EnableTelemetry="false"> </rsweb:ReportViewer>

More details here

Not the answer you're looking for? Browse other questions tagged or ask your own question.