how-to-disable-netbios-on-windows

To support me, you can subscribe to the channel, share and like the videos, disable your ad blocker or make a donation. Thank you!

Hi, here’s how to disable hibernation with or without retaining quick start

Commands used to manage extended standby

# Disable netbios in Powershell
# 0: Netbios configuration based on DHCP.
# 1: Netbios enabled.
# 2: Netbios disabled.
# WMI
(Get-WmiObject Win32_NetworkAdapterConfiguration -Filter IpEnabled='true').SetTcpipNetbios(2)
# Or CIM
Get-CimInstance Win32_NetworkAdapterConfiguration -Filter IpEnabled='true' |
Invoke-CimMethod -MethodName SetTcpipNetbios -Arguments @{ 'TcpipNetbiosOptions' = 2 }
# Or with the register
$reg = 'HKLM:\SYSTEM\CurrentControlSet\Servicesnetbt\Parameters\interfaces'
Get-ChildItem $reg | ForEach-Object -process {
$path = Join-Path $reg $_.pschildname
Set-ItemProperty -Path $path -name NetBiosOptions -value 2
}

Video : how-to-disable-netbios-on-windows

Related links