Add vscode update block to logon script #117
This commit is contained in:
parent
f44992d2b7
commit
1d1ad4b34d
@ -37,7 +37,7 @@ echo removing VScode startmenu folder ...
|
|||||||
rd /S /Q %STARTMENU%\"Visual Studio Code" 2>nul
|
rd /S /Q %STARTMENU%\"Visual Studio Code" 2>nul
|
||||||
|
|
||||||
echo adding VScode MARKDOWNTABLE plugin ...
|
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 #######
|
echo ####### %0 #######
|
||||||
|
|
||||||
|
9
scripts/config/vscode-settings.json
Normal file
9
scripts/config/vscode-settings.json
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"update.mode": "none",
|
||||||
|
"enableTelemetry": false,
|
||||||
|
"workbench.enableExperiments": false,
|
||||||
|
"extensions.autoUpdate": false,
|
||||||
|
"workbench.startupEditor": "newUntitledFile",
|
||||||
|
"extensions.ignoreRecommendations": true
|
||||||
|
}
|
||||||
|
|
@ -193,6 +193,10 @@ set LOCALSTATE="%LOCALAPPDATA%"\Packages\Microsoft.WindowsTerminal_8wekyb3d8bbwe
|
|||||||
mkdir %LOCALSTATE% 1>nul 2>nul
|
mkdir %LOCALSTATE% 1>nul 2>nul
|
||||||
copy /Y %TOOLS%\scripts\config\wt-settings.json %LOCALSTATE%\settings.json 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 ...
|
echo disabling RUFUS autoupdate ...
|
||||||
reg add "HKCU\SOFTWARE\Akeo Consulting\Rufus" /v UpdateCheckInterval ^
|
reg add "HKCU\SOFTWARE\Akeo Consulting\Rufus" /v UpdateCheckInterval ^
|
||||||
/t REG_DWORD /d "0xffffffff" /f 1>nul
|
/t REG_DWORD /d "0xffffffff" /f 1>nul
|
||||||
|
Loading…
Reference in New Issue
Block a user