Einzelnen Beitrag anzeigen
Ungelesen 02.07.18, 03:14   #2 Top
Benutzerbild von ImeI
Mitglied seit: Sep 2014
Beiträge: 11
ImeI ist offline
ImeI
Member
 
'Spyware': Visual Studio C++ Compiler baut unerwünscht Telemetrie-Code ein

Dies traff in der Version 2015.2 zu.
Die Telemetrie Calls lassen sich unterbinden in dem eine zusätzliche Anweisung an die Linker Konfigurations Anweisung unter zusätzlichen Optionen übergeben wird.
Einfach "notelemetry.obj" schreiben und neu Compilieren :-)

Etwas ausführlicher geht es hier [en]: http://www.geeks3d.com/20160610/vs20...ur-c-binaries/
Hier: How to disable telemetry reporting https://code.visualstudio.com/docs/s...etry-reporting

Zusätzlich [en]
https://blogs.msdn.microsoft.com/vcb...5-update-3-rc/
Zitat:
If you look at the vcruntime source, then you can see the changes in sources. The most obvious ones are two functions have been removed from __scrt_common_main_seh in the file exe_common.inl. Then in initialization.cpp, the functions __vcrt_initialize and __vcrt_uninitialize both have the telemetry provider calls removed. Although interestingly they still provide the notelemetry.obj file.
Und noch interessanter [en] wg. Wireshark Test:
https://github.com/Microsoft/vscode/issues/16131
Zitat:
Even with:
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"update.channel": "none"
"extensions.autoUpdate": false

I still see connection attempts by Visual Studio Code to marketplace.visualstudio.com and vortex.data.microsoft.com at startup.

Mit Zitat antworten Beitrag melden