w10install/scripts/disable-networkfeatures.cmd
2022-12-24 15:56:30 +01:00

13 lines
265 B
Batchfile

@echo off
set TOOLS=c:\tools
net session >nul 2>&1
if NOT %ERRORLEVEL% == 0 (
echo ERROR: User has NO ADMINISTRATOR rights!
exit /b
)
echo disabling unwanted NETWORK features ...
powershell -command %TOOLS%\scripts\disable-networkfeatures.ps1