-
Notifications
You must be signed in to change notification settings - Fork 0
/
VMwareRSSEnable.ps1
57 lines (41 loc) · 2.14 KB
/
VMwareRSSEnable.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<#
.SYNOPSIS
Enable RSS on VMware VMs
.DESCRIPTION
Enabling RSS will enable multiple CPUs to send/process network traffic
.NOTES
Created by Jauder Ho
Last modified 11/1/2019
https://www.carumba.com
BSD License
Pull requests are welcome.
.LINK
https://www.carumba.com
#>
# Elevate as needed
# https://superuser.com/questions/108207/how-to-run-a-powershell-script-as-administrator
param([switch]$Elevated)
function Test-Admin {
$currentUser = New-Object Security.Principal.WindowsPrincipal $([Security.Principal.WindowsIdentity]::GetCurrent())
$currentUser.IsInRole([Security.Principal.WindowsBuiltinRole]::Administrator)
}
if ((Test-Admin) -eq $false) {
if ($elevated) {
# tried to elevate, did not work, aborting
}
else {
Start-Process powershell.exe -Verb RunAs -ArgumentList ('-noprofile -noexit -file "{0}" -elevated' -f ($myinvocation.MyCommand.Definition))
}
exit
}
Write-Output 'Running with full privileges...'
function Enable-VMwareRSS {
# https://virtualnomadblog.com/2018/04/04/vmware-tools-10-2-5/
# https://kb.vmware.com/s/article/2008925
Get-NetAdapter | Where-Object { $_.InterfaceDescription -like "vmxnet3*" } | Get-NetAdapterAdvancedProperty | Where-Object { $_.RegistryKeyword -like "*RSS" -or $_.RegistryKeyword -like "RxThrottle" } | Format-Table -AutoSize
Get-NetAdapter | Where-Object { $_.InterfaceDescription -like "vmxnet3*" } | Set-NetAdapterAdvancedProperty -DisplayName "Receive Side Scaling" -DisplayValue "Enabled" -NoRestart
Get-NetAdapter | Where-Object { $_.InterfaceDescription -like "vmxnet3*" } | Set-NetAdapterAdvancedProperty -DisplayName "Receive Throttle" -DisplayValue "30" -NoRestart
Get-NetAdapter | Where-Object { $_.InterfaceDescription -like "vmxnet3*" } | Get-NetAdapterAdvancedProperty | Where-Object { $_.RegistryKeyword -like "*RSS" -or $_.RegistryKeyword -like "RxThrottle" } | Format-Table -AutoSize
# Get-NetAdapter | Get-NetAdapterAdvancedProperty | Where-Object { $_.RegistryKeyword -like "*RSS" -or $_.RegistryKeyword -like "RxThrottle" } | Format-Table -AutoSize
}
Enable-VMwareRSS