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
Bookmarks