w10install/tools/disable-networkfeatures.ps1
2022-06-20 13:38:33 +02:00

16 lines
521 B
PowerShell

# REMOVE useless/not needed network features like IPv6 ...
$myBindingList = @("ms_tcpip6", "ms_pacer", "ms_lldp", "ms_server", "ms_implat", "ms_lltdio", "ms_rspndr")
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'
$ErrorActionPreference = 'SilentlyContinue'
foreach ($myBinding in $myBindingList) {
Disable-NetAdapterBinding -Name "*" -ComponentID $myBinding
Get-NetAdapterBinding -ComponentID $myBinding
}
echo ""
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'