问题
Built from the latest sources.
I am trying to prevent vs code to make any network requests(checking for updates, telemetry, etc.).
I tried this
config: {
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"update.channel": "none",
"extensions.autoUpdate": false,
"git.enabled": false
}
but there are still tcp connections made to the marketplace and microsoft telemetry services.
How do I fully disable network requests without an external firewall?
来源:https://stackoverflow.com/questions/49934435/how-to-fully-disable-network-request-from-vs-codetelemetry-updates-etc