Disable Visual Studio Code telemetry
- Single actionThis page belongs to a script, containing basic changes to achieve a task.
- Linux onlyThis script improves your privacy on Linux
- Impact: MinimumSystem Functionality Loss Risk: Low
This action improves privacy with minimal impact when you run the recommended script. - Bash (Shell script)These changes use Linux system commands to update your settings.
- Fully reversible
You can fully restore this action (revert back to the original behavior) using this website.
The restore/revert methods provided here can help you fix issues.
Overview
The telemetry.telemetryLevel
preference can be adjusted as follows 1:
default
(on): Transmits usage data, errors, and crash reports.error
: Transmits general error telemetry and crash reports.crash
: Transmits OS-level crash reports.off
: Disables all product telemetry.
This script disables telemetry data, which includes usage data, errors, and crash reports.
The telemetry.enableTelemetry
was the primary option to disable telemetry collection 2.
This disabled the collection of diagnostic data 3.
However, it has been deprecated and replaced by the telemetry.telemetryLevel
setting 4 5.
Crash reports use a unique ID to identify you 6. They were initially controlled using the
telemetry.enableCrashReporter
setting 7, but this setting has been deprecated and replaced by
the telemetry.telemetryLevel
setting 7.
Sources
- vscode/telemetryService.ts at d32b92bd7a49ce8667b954d86320cc29545fc505 · microsoft/vscode · GitHub. github.com. (2022).
Original: https://github.com/microsoft/vscode/blob/d32b92bd7a49ce8667b954d86320cc29545fc505/src/vs/platform/telemetry/common/telemetryService.ts
Archived: https://web.archive.org/web/20221029171158/https://github.com/microsoft/vscode/blob/d32b92bd7a49ce8667b954d86320cc29545fc505/src/vs/platform/telemetry/common/telemetryService.ts#L278-L294 - Telemetry opt-out · Issue #3182 · microsoft/vscode · GitHub. github.com. (2022).
Original: https://github.com/microsoft/vscode/issues/3182
Archived: https://web.archive.org/web/20221029171236/https://github.com/microsoft/vscode/issues/3182 - vscode/telemetryService.ts at 9f2d55f21247224e00e438ff0e8a080c557356dc · microsoft/vscode · GitHub. github.com. (2022).
Original: https://github.com/microsoft/vscode/blob/9f2d55f21247224e00e438ff0e8a080c557356dc/src/vs/platform/telemetry/common/telemetryService.ts
Archived: https://web.archive.org/web/20221029171302/https://github.com/microsoft/vscode/blob/9f2d55f21247224e00e438ff0e8a080c557356dc/src/vs/platform/telemetry/common/telemetryService.ts#L247-L265 - Explore splitting the telemetry settings into error telemetry + all other telemetry · Issue #132552 · microsoft/vscode · GitHub. github.com. (2022).
Original: https://github.com/microsoft/vscode/issues/132552
Archived: https://web.archive.org/web/20221029171313/https://github.com/microsoft/vscode/issues/132552 - vscode/telemetryService.ts at d32b92bd7a49ce8667b954d86320cc29545fc505 · microsoft/vscode · GitHub. github.com. (2022).
Original: https://github.com/microsoft/vscode/blob/d32b92bd7a49ce8667b954d86320cc29545fc505/src/vs/platform/telemetry/common/telemetryService.ts
Archived: https://web.archive.org/web/20221029171158/https://github.com/microsoft/vscode/blob/d32b92bd7a49ce8667b954d86320cc29545fc505/src/vs/platform/telemetry/common/telemetryService.ts#L302-L314 - vscode/app.ts at 1dd67592e120d916a8963903babaf0fae74440c5 · microsoft/vscode · GitHub. github.com. (2022).
Original: https://github.com/microsoft/vscode/blob/1dd67592e120d916a8963903babaf0fae74440c5/src/vs/code/electron-main/app.ts
Archived: https://web.archive.org/web/20221029171339/https://github.com/microsoft/vscode/blob/1dd67592e120d916a8963903babaf0fae74440c5/src/vs/code/electron-main/app.ts#L1259 - vscode/desktop.contribution.ts at 17fc955b4ffb1f9a0097a561291aaa5c8918eee6 · microsoft/vscode · GitHub. github.com. (2022).
Original: https://github.com/microsoft/vscode/blob/17fc955b4ffb1f9a0097a561291aaa5c8918eee6/src/vs/workbench/electron-sandbox/desktop.contribution.ts
Archived: https://web.archive.org/web/20221029171353/https://github.com/microsoft/vscode/blob/17fc955b4ffb1f9a0097a561291aaa5c8918eee6/src/vs/workbench/electron-sandbox/desktop.contribution.ts#L253-L267
Apply Now
Choose one of three ways to apply:
Help
How to apply or restore "Disable Visual Studio Code telemetry" using script
- ≈ 3 min to complete
- Tools: Web Browser
- Difficulty: Medium
- ≈ 5 instructions
- 1
Download
Download the script file by clicking on thebutton above.
Use button above to restore changes. - 2
Keep the file
If warned by your browser, keep the file. - 3
Open
Open the downloaded file. - 4
Exit
Once it's done, press any key to exit the window. - 5
Restart
Restart your computer for all changes to take effect.
Apply with privacy.sexy
Guided, automated application with safety checks- Recommended for most users
- Includes safety checks
- Free
- Open-source
- Popular
- Offline/Online usage
Help
How to apply or restore "Disable Visual Studio Code telemetry" using privacy.sexy
- ≈ 3 min to complete
- Tools: privacy.sexy
- Difficulty: Simple
- ≈ 4 instructions
- 2
Choose script
- Search for the script name: Disable Visual Studio Code telemetry
- Check the script by clicking on the checkbox.
- 3
Run
Click on ▶️ Run button at the bottom of the page.This button only appears on desktop version (recommended). On browser, use 💾 Save button.
- Apply
- Revert
if ! command -v 'python3' &> /dev/null; then
echo 'Skipping because "python3" is not found.'
else
python3 <<EOF
from pathlib import Path
import os, json, sys
property_name = 'telemetry.telemetryLevel'
target = json.loads('"off"')
home_dir = f'/home/{os.getenv("SUDO_USER", os.getenv("USER"))}'
settings_files = [
# Global installation (also Snap that installs with "--classic" flag)
f'{home_dir}/.config/Code/User/settings.json',
# Flatpak installation
f'{home_dir}/.var/app/com.visualstudio.code/config/Code/User/settings.json'
]
for settings_file in settings_files:
file=Path(settings_file)
if not file.is_file():
print(f'Skipping, file does not exist at "{settings_file}".')
continue
print(f'Reading file at "{settings_file}".')
file_content = file.read_text()
if not file_content.strip():
print('Settings file is empty. Treating it as default empty JSON object.')
file_content = '{}'
json_object = None
try:
json_object = json.loads(file_content)
except json.JSONDecodeError:
print(f'Error, invalid JSON format in the settings file: "{settings_file}".', file=sys.stderr)
continue
if property_name not in json_object:
print(f'Settings "{property_name}" is not configured.')
else:
existing_value = json_object[property_name]
if existing_value == target:
print(f'Skipping, "{property_name}" is already configured as {json.dumps(target)}.')
continue
print(f'Setting "{property_name}" has unexpected value {json.dumps(existing_value)} that will be changed.')
json_object[property_name] = target
new_content = json.dumps(json_object, indent=2)
file.write_text(new_content)
print(f'Successfully configured "{property_name}" to {json.dumps(target)}.')
EOF
fi
if ! command -v 'python3' &> /dev/null; then
echo 'Skipping because "python3" is not found.'
else
python3 <<EOF
from pathlib import Path
import os, json, sys
property_name = 'telemetry.enableTelemetry'
target = json.loads('false')
home_dir = f'/home/{os.getenv("SUDO_USER", os.getenv("USER"))}'
settings_files = [
# Global installation (also Snap that installs with "--classic" flag)
f'{home_dir}/.config/Code/User/settings.json',
# Flatpak installation
f'{home_dir}/.var/app/com.visualstudio.code/config/Code/User/settings.json'
]
for settings_file in settings_files:
file=Path(settings_file)
if not file.is_file():
print(f'Skipping, file does not exist at "{settings_file}".')
continue
print(f'Reading file at "{settings_file}".')
file_content = file.read_text()
if not file_content.strip():
print('Settings file is empty. Treating it as default empty JSON object.')
file_content = '{}'
json_object = None
try:
json_object = json.loads(file_content)
except json.JSONDecodeError:
print(f'Error, invalid JSON format in the settings file: "{settings_file}".', file=sys.stderr)
continue
if property_name not in json_object:
print(f'Settings "{property_name}" is not configured.')
else:
existing_value = json_object[property_name]
if existing_value == target:
print(f'Skipping, "{property_name}" is already configured as {json.dumps(target)}.')
continue
print(f'Setting "{property_name}" has unexpected value {json.dumps(existing_value)} that will be changed.')
json_object[property_name] = target
new_content = json.dumps(json_object, indent=2)
file.write_text(new_content)
print(f'Successfully configured "{property_name}" to {json.dumps(target)}.')
EOF
fi
if ! command -v 'python3' &> /dev/null; then
echo 'Skipping because "python3" is not found.'
else
python3 <<EOF
from pathlib import Path
import os, json, sys
property_name = 'telemetry.enableCrashReporter'
target = json.loads('false')
home_dir = f'/home/{os.getenv("SUDO_USER", os.getenv("USER"))}'
settings_files = [
# Global installation (also Snap that installs with "--classic" flag)
f'{home_dir}/.config/Code/User/settings.json',
# Flatpak installation
f'{home_dir}/.var/app/com.visualstudio.code/config/Code/User/settings.json'
]
for settings_file in settings_files:
file=Path(settings_file)
if not file.is_file():
print(f'Skipping, file does not exist at "{settings_file}".')
continue
print(f'Reading file at "{settings_file}".')
file_content = file.read_text()
if not file_content.strip():
print('Settings file is empty. Treating it as default empty JSON object.')
file_content = '{}'
json_object = None
try:
json_object = json.loads(file_content)
except json.JSONDecodeError:
print(f'Error, invalid JSON format in the settings file: "{settings_file}".', file=sys.stderr)
continue
if property_name not in json_object:
print(f'Settings "{property_name}" is not configured.')
else:
existing_value = json_object[property_name]
if existing_value == target:
print(f'Skipping, "{property_name}" is already configured as {json.dumps(target)}.')
continue
print(f'Setting "{property_name}" has unexpected value {json.dumps(existing_value)} that will be changed.')
json_object[property_name] = target
new_content = json.dumps(json_object, indent=2)
file.write_text(new_content)
print(f'Successfully configured "{property_name}" to {json.dumps(target)}.')
EOF
fi
ImlmICEgY29tbWFuZCAtdiAncHl0aG9uMycgJj4gL2Rldi9udWxsOyB0aGVuXG4gICAgPiYyIGVjaG8gJ0Nhbm5vdCByZXZlcnQgYmVjYXVzZSBcInB5dGhvbjNcIiBpcyBub3QgZm91bmQuJ1xuICBlbHNlXG4gICAgcHl0aG9uMyA8PEVPRlxuZnJvbSBwYXRobGliIGltcG9ydCBQYXRoXG5pbXBvcnQgb3MsIGpzb24sIHN5c1xucHJvcGVydHlfbmFtZSA9ICd0ZWxlbWV0cnkudGVsZW1ldHJ5TGV2ZWwnXG50YXJnZXQgPSBqc29uLmxvYWRzKCdcIm9mZlwiJylcbmhvbWVfZGlyID0gZicvaG9tZS97b3MuZ2V0ZW52KFwiU1VET19VU0VSXCIsIG9zLmdldGVudihcIlVTRVJcIikpfSdcbnNldHRpbmdzX2ZpbGVzID0gW1xuICAjIEdsb2JhbCBpbnN0YWxsYXRpb24gKGFsc28gU25hcCB0aGF0IGluc3RhbGxzIHdpdGggXCItLWNsYXNzaWNcIiBmbGFnKVxuICBmJ3tob21lX2Rpcn0vLmNvbmZpZy9Db2RlL1VzZXIvc2V0dGluZ3MuanNvbicsXG4gICMgRmxhdHBhayBpbnN0YWxsYXRpb25cbiAgZid7aG9tZV9kaXJ9Ly52YXIvYXBwL2NvbS52aXN1YWxzdHVkaW8uY29kZS9jb25maWcvQ29kZS9Vc2VyL3NldHRpbmdzLmpzb24nXG5dXG5mb3Igc2V0dGluZ3NfZmlsZSBpbiBzZXR0aW5nc19maWxlczpcbiAgZmlsZT1QYXRoKHNldHRpbmdzX2ZpbGUpXG4gIGlmIG5vdCBmaWxlLmlzX2ZpbGUoKTpcbiAgICBwcmludChmJ1NraXBwaW5nLCBmaWxlIGRvZXMgbm90IGV4aXN0IGF0IFwie3NldHRpbmdzX2ZpbGV9XCIuJylcbiAgICBjb250aW51ZVxuICBwcmludChmJ1JlYWRpbmcgZmlsZSBhdCBcIntzZXR0aW5nc19maWxlfVwiLicpXG4gIGZpbGVfY29udGVudCA9IGZpbGUucmVhZF90ZXh0KClcbiAgaWYgbm90IGZpbGVfY29udGVudC5zdHJpcCgpOlxuICAgIHByaW50KGYnU2tpcHBpbmcsIG5vIG5lZWQgdG8gcmV2ZXJ0IGJlY2F1c2Ugc2V0dGluZ3MgZmlsZSBpcyBlbXB0eTogXCJ7c2V0dGluZ3NfZmlsZX1cIi4nKVxuICAgIGNvbnRpbnVlXG4gIHRyeTpcbiAgICBqc29uX29iamVjdCA9IGpzb24ubG9hZHMoZmlsZV9jb250ZW50KVxuICBleGNlcHQganNvbi5KU09ORGVjb2RlRXJyb3I6XG4gICAgcHJpbnQoZidFcnJvciwgaW52YWxpZCBKU09OIGZvcm1hdCBpbiB0aGUgc2V0dGluZ3MgZmlsZTogXCJ7c2V0dGluZ3NfZmlsZX1cIi4nLCBmaWxlPXN5cy5zdGRlcnIpXG4gICAgY29udGludWVcbiAgaWYgcHJvcGVydHlfbmFtZSBub3QgaW4ganNvbl9vYmplY3Q6XG4gICAgcHJpbnQoZidTa2lwcGluZywgXCJ7cHJvcGVydHlfbmFtZX1cIiBpcyBub3QgY29uZmlndXJlZC4nKVxuICAgIGNvbnRpbnVlXG4gIGV4aXN0aW5nX3ZhbHVlID0ganNvbl9vYmplY3RbcHJvcGVydHlfbmFtZV1cbiAgaWYgZXhpc3RpbmdfdmFsdWUgIT0gdGFyZ2V0OlxuICAgIHByaW50KGYnU2tpcHBpbmcsIFwie3Byb3BlcnR5X25hbWV9XCIgaXMgY29uZmlndXJlZCB1c2luZyB7anNvbi5kdW1wcyhleGlzdGluZ192YWx1ZSl9IGluc3RlYWQgb2Yge2pzb24uZHVtcHModGFyZ2V0KX0uJylcbiAgICBjb250aW51ZVxuICBkZWwganNvbl9vYmplY3RbcHJvcGVydHlfbmFtZV1cbiAgbmV3X2NvbnRlbnQgPSBqc29uLmR1bXBzKGpzb25fb2JqZWN0LCBpbmRlbnQ9MilcbiAgZmlsZS53cml0ZV90ZXh0KG5ld19jb250ZW50KVxuICBwcmludChmJ1N1Y2Nlc3NmdWxseSByZXZlcnRlZCBcIntwcm9wZXJ0eV9uYW1lfVwiIHNldHRpbmcuJylcbkVPRlxuICBmaVxuaWYgISBjb21tYW5kIC12ICdweXRob24zJyAmPiAvZGV2L251bGw7IHRoZW5cbiAgICA+JjIgZWNobyAnQ2Fubm90IHJldmVydCBiZWNhdXNlIFwicHl0aG9uM1wiIGlzIG5vdCBmb3VuZC4nXG4gIGVsc2VcbiAgICBweXRob24zIDw8RU9GXG5mcm9tIHBhdGhsaWIgaW1wb3J0IFBhdGhcbmltcG9ydCBvcywganNvbiwgc3lzXG5wcm9wZXJ0eV9uYW1lID0gJ3RlbGVtZXRyeS5lbmFibGVUZWxlbWV0cnknXG50YXJnZXQgPSBqc29uLmxvYWRzKCdmYWxzZScpXG5ob21lX2RpciA9IGYnL2hvbWUve29zLmdldGVudihcIlNVRE9fVVNFUlwiLCBvcy5nZXRlbnYoXCJVU0VSXCIpKX0nXG5zZXR0aW5nc19maWxlcyA9IFtcbiAgIyBHbG9iYWwgaW5zdGFsbGF0aW9uIChhbHNvIFNuYXAgdGhhdCBpbnN0YWxscyB3aXRoIFwiLS1jbGFzc2ljXCIgZmxhZylcbiAgZid7aG9tZV9kaXJ9Ly5jb25maWcvQ29kZS9Vc2VyL3NldHRpbmdzLmpzb24nLFxuICAjIEZsYXRwYWsgaW5zdGFsbGF0aW9uXG4gIGYne2hvbWVfZGlyfS8udmFyL2FwcC9jb20udmlzdWFsc3R1ZGlvLmNvZGUvY29uZmlnL0NvZGUvVXNlci9zZXR0aW5ncy5qc29uJ1xuXVxuZm9yIHNldHRpbmdzX2ZpbGUgaW4gc2V0dGluZ3NfZmlsZXM6XG4gIGZpbGU9UGF0aChzZXR0aW5nc19maWxlKVxuICBpZiBub3QgZmlsZS5pc19maWxlKCk6XG4gICAgcHJpbnQoZidTa2lwcGluZywgZmlsZSBkb2VzIG5vdCBleGlzdCBhdCBcIntzZXR0aW5nc19maWxlfVwiLicpXG4gICAgY29udGludWVcbiAgcHJpbnQoZidSZWFkaW5nIGZpbGUgYXQgXCJ7c2V0dGluZ3NfZmlsZX1cIi4nKVxuICBmaWxlX2NvbnRlbnQgPSBmaWxlLnJlYWRfdGV4dCgpXG4gIGlmIG5vdCBmaWxlX2NvbnRlbnQuc3RyaXAoKTpcbiAgICBwcmludChmJ1NraXBwaW5nLCBubyBuZWVkIHRvIHJldmVydCBiZWNhdXNlIHNldHRpbmdzIGZpbGUgaXMgZW1wdHk6IFwie3NldHRpbmdzX2ZpbGV9XCIuJylcbiAgICBjb250aW51ZVxuICB0cnk6XG4gICAganNvbl9vYmplY3QgPSBqc29uLmxvYWRzKGZpbGVfY29udGVudClcbiAgZXhjZXB0IGpzb24uSlNPTkRlY29kZUVycm9yOlxuICAgIHByaW50KGYnRXJyb3IsIGludmFsaWQgSlNPTiBmb3JtYXQgaW4gdGhlIHNldHRpbmdzIGZpbGU6IFwie3NldHRpbmdzX2ZpbGV9XCIuJywgZmlsZT1zeXMuc3RkZXJyKVxuICAgIGNvbnRpbnVlXG4gIGlmIHByb3BlcnR5X25hbWUgbm90IGluIGpzb25fb2JqZWN0OlxuICAgIHByaW50KGYnU2tpcHBpbmcsIFwie3Byb3BlcnR5X25hbWV9XCIgaXMgbm90IGNvbmZpZ3VyZWQuJylcbiAgICBjb250aW51ZVxuICBleGlzdGluZ192YWx1ZSA9IGpzb25fb2JqZWN0W3Byb3BlcnR5X25hbWVdXG4gIGlmIGV4aXN0aW5nX3ZhbHVlICE9IHRhcmdldDpcbiAgICBwcmludChmJ1NraXBwaW5nLCBcIntwcm9wZXJ0eV9uYW1lfVwiIGlzIGNvbmZpZ3VyZWQgdXNpbmcge2pzb24uZHVtcHMoZXhpc3RpbmdfdmFsdWUpfSBpbnN0ZWFkIG9mIHtqc29uLmR1bXBzKHRhcmdldCl9LicpXG4gICAgY29udGludWVcbiAgZGVsIGpzb25fb2JqZWN0W3Byb3BlcnR5X25hbWVdXG4gIG5ld19jb250ZW50ID0ganNvbi5kdW1wcyhqc29uX29iamVjdCwgaW5kZW50PTIpXG4gIGZpbGUud3JpdGVfdGV4dChuZXdfY29udGVudClcbiAgcHJpbnQoZidTdWNjZXNzZnVsbHkgcmV2ZXJ0ZWQgXCJ7cHJvcGVydHlfbmFtZX1cIiBzZXR0aW5nLicpXG5FT0ZcbiAgZmlcbmlmICEgY29tbWFuZCAtdiAncHl0aG9uMycgJj4gL2Rldi9udWxsOyB0aGVuXG4gICAgPiYyIGVjaG8gJ0Nhbm5vdCByZXZlcnQgYmVjYXVzZSBcInB5dGhvbjNcIiBpcyBub3QgZm91bmQuJ1xuICBlbHNlXG4gICAgcHl0aG9uMyA8PEVPRlxuZnJvbSBwYXRobGliIGltcG9ydCBQYXRoXG5pbXBvcnQgb3MsIGpzb24sIHN5c1xucHJvcGVydHlfbmFtZSA9ICd0ZWxlbWV0cnkuZW5hYmxlQ3Jhc2hSZXBvcnRlcidcbnRhcmdldCA9IGpzb24ubG9hZHMoJ2ZhbHNlJylcbmhvbWVfZGlyID0gZicvaG9tZS97b3MuZ2V0ZW52KFwiU1VET19VU0VSXCIsIG9zLmdldGVudihcIlVTRVJcIikpfSdcbnNldHRpbmdzX2ZpbGVzID0gW1xuICAjIEdsb2JhbCBpbnN0YWxsYXRpb24gKGFsc28gU25hcCB0aGF0IGluc3RhbGxzIHdpdGggXCItLWNsYXNzaWNcIiBmbGFnKVxuICBmJ3tob21lX2Rpcn0vLmNvbmZpZy9Db2RlL1VzZXIvc2V0dGluZ3MuanNvbicsXG4gICMgRmxhdHBhayBpbnN0YWxsYXRpb25cbiAgZid7aG9tZV9kaXJ9Ly52YXIvYXBwL2NvbS52aXN1YWxzdHVkaW8uY29kZS9jb25maWcvQ29kZS9Vc2VyL3NldHRpbmdzLmpzb24nXG5dXG5mb3Igc2V0dGluZ3NfZmlsZSBpbiBzZXR0aW5nc19maWxlczpcbiAgZmlsZT1QYXRoKHNldHRpbmdzX2ZpbGUpXG4gIGlmIG5vdCBmaWxlLmlzX2ZpbGUoKTpcbiAgICBwcmludChmJ1NraXBwaW5nLCBmaWxlIGRvZXMgbm90IGV4aXN0IGF0IFwie3NldHRpbmdzX2ZpbGV9XCIuJylcbiAgICBjb250aW51ZVxuICBwcmludChmJ1JlYWRpbmcgZmlsZSBhdCBcIntzZXR0aW5nc19maWxlfVwiLicpXG4gIGZpbGVfY29udGVudCA9IGZpbGUucmVhZF90ZXh0KClcbiAgaWYgbm90IGZpbGVfY29udGVudC5zdHJpcCgpOlxuICAgIHByaW50KGYnU2tpcHBpbmcsIG5vIG5lZWQgdG8gcmV2ZXJ0IGJlY2F1c2Ugc2V0dGluZ3MgZmlsZSBpcyBlbXB0eTogXCJ7c2V0dGluZ3NfZmlsZX1cIi4nKVxuICAgIGNvbnRpbnVlXG4gIHRyeTpcbiAgICBqc29uX29iamVjdCA9IGpzb24ubG9hZHMoZmlsZV9jb250ZW50KVxuICBleGNlcHQganNvbi5KU09ORGVjb2RlRXJyb3I6XG4gICAgcHJpbnQoZidFcnJvciwgaW52YWxpZCBKU09OIGZvcm1hdCBpbiB0aGUgc2V0dGluZ3MgZmlsZTogXCJ7c2V0dGluZ3NfZmlsZX1cIi4nLCBmaWxlPXN5cy5zdGRlcnIpXG4gICAgY29udGludWVcbiAgaWYgcHJvcGVydHlfbmFtZSBub3QgaW4ganNvbl9vYmplY3Q6XG4gICAgcHJpbnQoZidTa2lwcGluZywgXCJ7cHJvcGVydHlfbmFtZX1cIiBpcyBub3QgY29uZmlndXJlZC4nKVxuICAgIGNvbnRpbnVlXG4gIGV4aXN0aW5nX3ZhbHVlID0ganNvbl9vYmplY3RbcHJvcGVydHlfbmFtZV1cbiAgaWYgZXhpc3RpbmdfdmFsdWUgIT0gdGFyZ2V0OlxuICAgIHByaW50KGYnU2tpcHBpbmcsIFwie3Byb3BlcnR5X25hbWV9XCIgaXMgY29uZmlndXJlZCB1c2luZyB7anNvbi5kdW1wcyhleGlzdGluZ192YWx1ZSl9IGluc3RlYWQgb2Yge2pzb24uZHVtcHModGFyZ2V0KX0uJylcbiAgICBjb250aW51ZVxuICBkZWwganNvbl9vYmplY3RbcHJvcGVydHlfbmFtZV1cbiAgbmV3X2NvbnRlbnQgPSBqc29uLmR1bXBzKGpzb25fb2JqZWN0LCBpbmRlbnQ9MilcbiAgZmlsZS53cml0ZV90ZXh0KG5ld19jb250ZW50KVxuICBwcmludChmJ1N1Y2Nlc3NmdWxseSByZXZlcnRlZCBcIntwcm9wZXJ0eV9uYW1lfVwiIHNldHRpbmcuJylcbkVPRlxuICBmaSI=
Help
How to apply or restore "Disable Visual Studio Code telemetry" using commands
- ≈ 2 min to complete
- Tools: Terminal
- Difficulty: Medium
- ≈ 3 instructions
- 1
Open terminal
Open your terminal application. - 2
Copy code
Copy the code: - 3
Paste & run
Paste the commands into terminal application and press Enter to run.Some changes require a system restart to take effect
Similar Guides
Wider Goal
Guides below includes this guide to achieve a wider goal.See other more general settings that includes this one as one of its actions.These plans combine multiple privacy settings, including this one, for stronger protection.
- Disable Visual Studio Code data collection
- Configure programs
Visual Studio Code, also commonly referred to as VS Code, is a source-code editor made by Microsoft. Visual Studio Code makes outgoing network requests t...
These scripts configure third-party applications installed on Linux distributions to harden their security and privacy to protect your data. They scripts...
Same Goal
Other guides in Disable Visual Studio Code data collection See settings that are in the same category as this guide.Using other actions in the same category may help you achieve your goal better.
See all 10 guides
About the Creators
These people have authored this documentation and written its scripts:
Reviewed By
This guide has undergone comprehensive auditing and peer review:Expert review by undergroundwires
- Verified technical accuracy and editorial standards
- Assessed system impact and user privacy risks
- Audited and verified using automated security tests
Public review by large community
- Privacy enthusiasts and professionals peer-reviewed
- Millions of end-users tested across different environments
- Audited and verified using third-party security software
History
We continually monitor our guides, their impact and other potential privacy options. We update our guides when new information becomes available. On every update, we publicly store who made the change, what has been changed, why the change was made and when the change was made.