-
-
Save hunterwei/c514e21bac9ab4457e9ce1dfe8622a76 to your computer and use it in GitHub Desktop.
Revisions
-
binki revised this gist
Jan 28, 2022 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1 +1 @@ Get-NetAdapterAdvancedProperty | Where-Object Name -like 'vEthernet*' | Where-Object {$_.RegistryKeyword -like '[*]Lso*IPv*' -or $_.RegistryKeyword -like '[*]Rsc*IP*'} | Select-Object -Property Name,RegistryKeyword,@{name='RegistryValue';expression={'0'}} | Set-NetAdapterAdvancedProperty -
binki revised this gist
Jan 28, 2022 . 3 changed files with 4 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1 +1,3 @@ See [this SO answer](https://superuser.com/a/1428275). Disable large send offload in host on vEthernet (to avoid messing with non-virtual adapters). Disable larg send offload in guest for all adapters (unable to predict adapter names and probably all of them are real). This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ Get-NetAdapterAdvancedProperty | Where-Object RegistryKeyword -like '*Lso*IPv*' | Select-Object -Property Name,RegistryKeyword,@{name='RegistryValue';expression={'0'}} | Set-NetAdapterAdvancedProperty File renamed without changes. -
binki created this gist
Jan 27, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ See [this SO answer](https://superuser.com/a/1428275). This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ Get-NetAdapterAdvancedProperty | Where-Object Name -like 'vEthernet*' | Where-Object RegistryKeyword -like '*Lso*IPv*' | Select-Object -Property Name,RegistryKeyword,@{name='RegistryValue';expression={'0'}} | Set-NetAdapterAdvancedProperty