We found a fix for Lacerte Tax that was causing one of our CPAs performance to tank. We were unsure if it was AVD related or Lacerte related for some time. After many attempts in different areas, the culprit ended up being a network adapter setting.
Large Send Offload (LSO) properties in Device Manager
Lacerte performs slowly if network speeds go below 20MB/s. All network interface cards, including the server's, should have Large Send Offload (LSO) files disabled to ensure true gigabit speeds across the network.
- To disable LSO properties in the Group Policy Object (GPO), refer to Microsoft's Disable-NetAdapterLso.
We ran the following in powershell, rebooted the host, and found an immediate performance increase
Get-NetAdapter
Disable-NetAdapterLso -Name "AdapterName"
Comments (10 comments)