← All Tweaks
Nagle Algorithm
Find Network Adapter GUID
Locate your network adapter's GUID for registry configuration
Benefit
Required first step to apply Nagle algorithm tweaks to the correct NIC
Impact
lowCommands (1)
$nics = @(Get-NetAdapter -ErrorAction SilentlyContinue); if ($nics.Count -eq 0) { Write-Host '[ERR] No network adapters found'; return } Write-Host 'Detected network adapters:'; $nics | ForEach-Object { $state = if ($_.Status -eq 'Up') { '[ACTIVE]' } else { "[$($_.Status)]" }; Write-Host " $state $($_.Name) - $($_.InterfaceGuid) - $($_.InterfaceDescription)" }