How to fully disable network request from vs code(telemetry, updates, etc.)

半城伤御伤魂 提交于 2020-02-21 13:18:06

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!