updates for VScode blocked via firewall.
This commit is contained in:
parent
6e63419124
commit
54692a6a92
@ -4,6 +4,9 @@ set CONFIG=config\install-vscode.txt
|
|||||||
set EXE=..\software\vscode-setup.exe
|
set EXE=..\software\vscode-setup.exe
|
||||||
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
|
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
|
||||||
|
|
||||||
|
rem update.code.visualstudio.com
|
||||||
|
set VSCODEUPDATEIP=51.144.164.215
|
||||||
|
|
||||||
if NOT EXIST %EXE% (
|
if NOT EXIST %EXE% (
|
||||||
echo ERROR: %EXE% not found!
|
echo ERROR: %EXE% not found!
|
||||||
exit /b
|
exit /b
|
||||||
@ -27,6 +30,13 @@ move /Y "%PUBLIC%\Desktop\Visual*.lnk" "%PUBLIC%\Desktop\VScode.lnk"
|
|||||||
rem refresh desktop (W10 style)
|
rem refresh desktop (W10 style)
|
||||||
ie4uinit.exe -show
|
ie4uinit.exe -show
|
||||||
|
|
||||||
|
rem NO updates here! FUCK YOU!
|
||||||
|
echo disabling automatic updates via W10 firewall ...
|
||||||
|
netsh advfirewall firewall delete rule name="block_vscode_updates" 2>nul
|
||||||
|
netsh advfirewall firewall add rule name="block_vscode_updates" ^
|
||||||
|
dir=out action=block protocol=tcp localip=any remoteip=%VSCODEUPDATEIP% ^
|
||||||
|
remoteport=80,443 program="%ProgramFiles%\Microsoft VS Code\Code.exe"
|
||||||
|
|
||||||
echo ####### %0 #######
|
echo ####### %0 #######
|
||||||
pause
|
pause
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user