From 961c8eaab4d8105777b63637d8b23725aabb0d32 Mon Sep 17 00:00:00 2001 From: "Michael H.G. Schmidt" Date: Sun, 13 Aug 2023 16:24:59 +0200 Subject: [PATCH] added network protocol disabling ... --- scripts/settings.cmd | 5 ++++- tools/logon.cmd | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+), 1 deletion(-) diff --git a/scripts/settings.cmd b/scripts/settings.cmd index 930a0e4..3d2c97d 100644 --- a/scripts/settings.cmd +++ b/scripts/settings.cmd @@ -17,4 +17,7 @@ set localadmin_name=Local Administrator set localadmin_password= set start_desktopinfo=1 set use_nettime=1 - +set bluetooth_networking=0 +set ms_tcpip6=0 +set ms_implat=0 +set ms_server=0 diff --git a/tools/logon.cmd b/tools/logon.cmd index f97b244..6c56be7 100644 --- a/tools/logon.cmd +++ b/tools/logon.cmd @@ -27,6 +27,10 @@ set seafile_domain=0 set install_aerolite=0 set preserve_savedgames_folder=1 set start_desktopinfo=0 +set bluetooth_networking=false +set ms_tcpip6=0 +set ms_implat=0 +set ms_server=0 echo ####### %0 ####### @@ -405,6 +409,38 @@ if %ERRORLEVEL% == 0 ( echo removing OneDrive update task ... powershell -Command "Get-ScheduledTask | Where-Object {$_.Taskname -match 'OneDrive Standalone Update'} | Unregister-ScheduledTask -Confirm:$false" + echo disabling some network cards and protocols ... + + rem BlueTooth ... + powershell -Command "Disable-NetAdapter -Name 'Bluetooth Network Connection' -Confirm:$%bluetooth_networking%" + powershell -Command "Get-NetAdapter -Name 'Bluetooth Network Connection'" + + rem IPv6 ... + if %ms_tcpip6% == 0 ( + powershell -Command "Disable-NetAdapterBinding -Name '*' -ComponentID ms_tcpip6" + ) else ( + powershell -Command "Enable-NetAdapterBinding -Name '*' -ComponentID ms_tcpip6" + ) + powershell -Command "Get-NetAdapterBinding -ComponentID ms_tcpip6" + + + rem File sharing ... + if %ms_server% == 0 ( + powershell -Command "Disable-NetAdapterBinding -Name '*' -ComponentID ms_server" + ) else ( + powershell -Command "Enable-NetAdapterBinding -Name '*' -ComponentID ms_server" + ) + powershell -Command "Get-NetAdapterBinding -ComponentID ms_server" + + + rem Multiplexor protocol ... + if %ms_implat% == 0 ( + powershell -Command "Disable-NetAdapterBinding -Name '*' -ComponentID ms_implat" + ) else ( + powershell -Command "Enable-NetAdapterBinding -Name '*' -ComponentID ms_implat" + ) + powershell -Command "Get-NetAdapterBinding -ComponentID ms_implat" + ) else ( rem ===========