(I know there is already accepted answer, but)...
First, from XP onwards, Windows has a feature called automatic metric. This feature should automatically prioritize traffic on adapter with highest throughput. When you enable 'better' NIC (eg. by plugging in cable) Windows should automatically route traffic via that interface. Obviously yours incorrectly thinks WiFi is faster (which seems to be reported for some of WiFi cards)
What is a metric anyway and how it's used by network software? Well,a metric is used in routing when there are multiple paths to a destination and a decision needs to be made which one is the best. The lower, the better. Imagine you're at exit gates in a stadium. There are several gates and each will eventually allow you to get out - you need to select which one is the best, eg. by looking at how many people queue at each. Windows does the same, but bases it's decision on link speed.
Your gate to 'outside' is called default route. Let's look at output from route print
command, which shows you ip routing table:
> (output ommited)
Network Destination Netmask Gateway Interface Metric
> 0.0.0.0 0.0.0.0 192.168.0.1 192.168.0.12 25
> 0.0.0.0 0.0.0.0 192.168.0.1 192.168.0.22 10
(output ommited)
Those entries with 0.0.0.0 are default routes (sometimes also called quad 0 routes). Obviously I have two (with both cable and WiFi active), which one will be selected? The one with lower metric. In my case - 0.22 which happens to be my cable connection.
Now important thing - changing adapter priority via adapter setting does not change metric. This means it will not change routing decisions!
To actually change metric you need to to to open each adapter properties, then TCP/IP properties, Advanced, uncheck automatic metric
and enter your own value. Adapter with lowest metric wins.
You can quickly check which interface is actually used - open Task Manager - Network, start download/upload and look at interface usage. If you need more detail - use Perfmon.
In the mentioned menu it already shows my LAN network to have higher priority than my WLAN one. However, in the bottom right corner it still says it is connected to WLAN. Is this normal? Would it still show WLAN connectivity even if priorizing LAN? – kram1032 – 2014-11-27T18:52:22.620
1Two words: freakin' awesome! – Chad Harrison – 2012-07-31T19:42:32.627