Add vscode update block to logon script #117

This commit is contained in:
Michael H.G. Schmidt 2023-07-30 09:28:16 +02:00
parent f44992d2b7
commit 1d1ad4b34d
3 changed files with 14 additions and 1 deletions

View File

@ -37,7 +37,7 @@ echo removing VScode startmenu folder ...
rd /S /Q %STARTMENU%\"Visual Studio Code" 2>nul
echo adding VScode MARKDOWNTABLE plugin ...
"%ProgramFiles%\Microsoft VS Code\bin\code" --install-extension %MARKDOWNTABLE%
"%ProgramFiles%\Microsoft VS Code\bin\code" --install-extension %MARKDOWNTABLE% --force
echo ####### %0 #######

View File

@ -0,0 +1,9 @@
{
"update.mode": "none",
"enableTelemetry": false,
"workbench.enableExperiments": false,
"extensions.autoUpdate": false,
"workbench.startupEditor": "newUntitledFile",
"extensions.ignoreRecommendations": true
}

View File

@ -193,6 +193,10 @@ set LOCALSTATE="%LOCALAPPDATA%"\Packages\Microsoft.WindowsTerminal_8wekyb3d8bbwe
mkdir %LOCALSTATE% 1>nul 2>nul
copy /Y %TOOLS%\scripts\config\wt-settings.json %LOCALSTATE%\settings.json 1>nul 2>nul
echo Setting up VS-Code ...
mkdir "%USERPROFILE%"\AppData\Roaming\Code\User 1>nul 2>nul
copy /Y %TOOLS%\scripts\config\vscode-settings.json "%USERPROFILE%"\AppData\Roaming\Code\User\settings.json 1>nul 2>nul
echo disabling RUFUS autoupdate ...
reg add "HKCU\SOFTWARE\Akeo Consulting\Rufus" /v UpdateCheckInterval ^
/t REG_DWORD /d "0xffffffff" /f 1>nul