Page 1 of 1

Can I change the parameters that`s only for reading?

Posted: Thu May 30, 2019 11:23 am
by Regabuser
Hi!
I know that in Windows 10 Home/Pro i can`t change some parameters in [netsh] tcp supplemental or [powershell] Get-NetTCPSetting
Can I change the parameters that`s only for reading?
I want to change the icw, DelayedAckTimeout(It`s TcpAckDelTcisk, isn`t it?), DelayedAckFrequency(it`s TcpAckFrequency, isn`t it?)
I remember that you said something about this here - https://www.speedguide.net/articles/win ... o-tcp-6266
But i didn`t understand

Posted: Sat Jun 01, 2019 3:25 am
by Philip
Unfortunately writing is not possible in Windows 10 Home/Pro for ICW as far as I know. Some parameters may be read-only with PowerShell cmdlets, but editable with netsh, or vice-versa. Some of the parameters may be editable in Powershell, depenidng on your Windows version.

You can see the editable parameters in powershell with: Get-NetTCPSetting -SettingName Internet
You can generally edit them with cmdlets similar to: Set-NetTCPSetting -SettingName Internet -AutoTuningLevelLocal Normal

In the above example the last two words are the setting name, and its value. You can try those in Powershell and see what's editable in your version of Windows.

I hope this helps