Tag: performance
-
RDP Painfully Slow? Your NIC’s Power-Saving Features Are Probably the Culprit
RDP lag is almost always blamed on internet speed. But when ping is solid and bandwidth is idle, the real bottleneck is the NIC driver. Five PowerShell commands to disable Energy Efficient Ethernet, Interrupt Moderation, and other power-saving features that tank RDP responsiveness. No reboot required.
-

File Audit with Entity Framework: Retrieve and Check Missing Files with Closest Modification Date
The FileAudit method is a useful way to retrieve file names from a database table and check if these files exist in a specified directory. With supporting methods like GetParent and GetClosestFile, it provides information about the missing files and the closest file based on the modification date. This article delves into the details of…