This commit is contained in:
Michael H.G. Schmidt 2023-08-13 18:26:28 +02:00
parent 1f401106c7
commit d68a706fdd
4 changed files with 10 additions and 8 deletions

View File

@ -257,9 +257,6 @@ echo.
call disable-systemproxy.cmd call disable-systemproxy.cmd
echo. echo.
call disable-networkfeatures.cmd
echo.
powershell -command .\disable-soundscheme.ps1 powershell -command .\disable-soundscheme.ps1
echo. echo.

View File

@ -1,5 +1,5 @@
@echo off @echo off
set TOOLS=%SystemDrive%\tools set T=%SystemDrive%\TEMP
set EXE=..\software\adk-setup.exe set EXE=..\software\adk-setup.exe
@ -11,7 +11,7 @@ if NOT EXIST %EXE% (
echo ####### %0 ####### echo ####### %0 #######
echo installing Microsoft ADK deployment tools ... 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 ####### echo ####### %0 #######

View File

@ -21,3 +21,4 @@ set bluetooth_networking=0
set ms_tcpip6=0 set ms_tcpip6=0
set ms_implat=0 set ms_implat=0
set ms_server=0 set ms_server=0

View File

@ -27,7 +27,7 @@ set seafile_domain=0
set install_aerolite=0 set install_aerolite=0
set preserve_savedgames_folder=1 set preserve_savedgames_folder=1
set start_desktopinfo=0 set start_desktopinfo=0
set bluetooth_networking=false set bluetooth_networking=0
set ms_tcpip6=0 set ms_tcpip6=0
set ms_implat=0 set ms_implat=0
set ms_server=0 set ms_server=0
@ -412,8 +412,12 @@ if %ERRORLEVEL% == 0 (
echo disabling some network cards and protocols ... echo disabling some network cards and protocols ...
rem BlueTooth ... rem BlueTooth ...
powershell -Command "Disable-NetAdapter -Name 'Bluetooth Network Connection' -Confirm:$%bluetooth_networking%" if %bluetooth_networking% == 0 (
powershell -Command "Get-NetAdapter -Name 'Bluetooth Network Connection'" 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 ... rem IPv6 ...
if %ms_tcpip6% == 0 ( if %ms_tcpip6% == 0 (