Skip to content

Instantly share code, notes, and snippets.

View Neurosploit's full-sized avatar

Neurosploit

View GitHub Profile
@Neurosploit
Neurosploit / UnfuckVS16.bat
Last active September 12, 2019 18:24
Disable telemetry in Visual Studio 2019
@echo off
fltmc >nul 2>&1 || (
echo This batch script requires administrator privileges. Right-click on
echo the script and select "Run as administrator".
goto :die
)
rem Change this path if you are using Community or Professional editions
set "VS_INSTALL_DIR=%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Professional"