From d68a706fdd7f8f036bb149425bb93628a4370b8f Mon Sep 17 00:00:00 2001 From: "Michael H.G. Schmidt" Date: Sun, 13 Aug 2023 18:26:28 +0200 Subject: [PATCH] bugfix --- scripts/autoconfig.cmd | 3 --- scripts/install-adk.cmd | 4 ++-- scripts/settings.cmd | 1 + tools/logon.cmd | 10 +++++++--- 4 files changed, 10 insertions(+), 8 deletions(-) diff --git a/scripts/autoconfig.cmd b/scripts/autoconfig.cmd index d4f7401..c05192e 100644 --- a/scripts/autoconfig.cmd +++ b/scripts/autoconfig.cmd @@ -257,9 +257,6 @@ echo. call disable-systemproxy.cmd echo. -call disable-networkfeatures.cmd -echo. - powershell -command .\disable-soundscheme.ps1 echo. diff --git a/scripts/install-adk.cmd b/scripts/install-adk.cmd index 9d0f436..28888b3 100644 --- a/scripts/install-adk.cmd +++ b/scripts/install-adk.cmd @@ -1,5 +1,5 @@ @echo off -set TOOLS=%SystemDrive%\tools +set T=%SystemDrive%\TEMP set EXE=..\software\adk-setup.exe @@ -11,7 +11,7 @@ if NOT EXIST %EXE% ( echo ####### %0 ####### echo installing Microsoft ADK deployment tools ... -%EXE% /q /ceip off /norestart /features OptionId.DeploymentTools /log %TOOLS%\scripts\install-adk.txt +%EXE% /q /ceip off /norestart /features OptionId.DeploymentTools /log %T%\install-adk.txt echo ####### %0 ####### diff --git a/scripts/settings.cmd b/scripts/settings.cmd index 3d2c97d..080f6e6 100644 --- a/scripts/settings.cmd +++ b/scripts/settings.cmd @@ -21,3 +21,4 @@ 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 6c56be7..cea49c6 100644 --- a/tools/logon.cmd +++ b/tools/logon.cmd @@ -27,7 +27,7 @@ set seafile_domain=0 set install_aerolite=0 set preserve_savedgames_folder=1 set start_desktopinfo=0 -set bluetooth_networking=false +set bluetooth_networking=0 set ms_tcpip6=0 set ms_implat=0 set ms_server=0 @@ -412,8 +412,12 @@ if %ERRORLEVEL% == 0 ( 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'" + if %bluetooth_networking% == 0 ( + powershell -Command "Disable-NetAdapter -Name 'Bluetooth Network Connection' -Confirm:$false" 1>nul 2>nul + ) else ( + powershell -Command "Disable-NetAdapter -Name 'Bluetooth Network Connection' -Confirm:$true" 1>nul 2>nul + ) + powershell -Command "Get-NetAdapter" rem IPv6 ... if %ms_tcpip6% == 0 (