Posted On March 11, 2021

PowerShell: Improve Network Speed of Windows on 20 Mbps or Faster Connections

kimconnect 0 comments
blog.KimConnect.com >> Codes , Networking >> PowerShell: Improve Network Speed of Windows on 20 Mbps or Faster Connections

This has been tested on Windows 10 – will not work on a Server OS:

$networkRegistry='REGISTRY::HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters'
$keyName='IRPStackSize'
$keyValue=32
$previousValue=(Get-ItemProperty -Path $networkRegistry -Name $keyName).$keyName
if($keyValue -ne $previousValue){
    set-itemproperty -path $networkRegistry -Name $keyName -Value $keyValue
    $setValue=(Get-ItemProperty -Path $networkRegistry -Name $keyName).$keyName
    write-host "$keyName previous value $previousValue has been changed to $setValue"
}else{
    write-host "$keyName current value of $previousValue is already matching the intended set value."
}

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

HTML: Basic Anatomy of A Page

Modern browsers discern the type of documents being loaded; thus, it is necessary to tag…

PowerShell: Setting Windows Firewall Rules

# Set variables for HTTP$protocolName="HTTP"$protocol="TCP"$portNumbers='80','443'$direction="Inbound"$scopes='Domain', 'Private'# Add Firewall RuleNew-NetFirewallRule -DisplayName "$protocolName-$direction" -Profile @($scopes) -Direction $direction…

NaN

- Meaning: Not a Number - When used as an assignment to an element index…