You can try the following approach.
in registry editor open class "Net" Class {4d36e972-e325-11ce-bfc1-08002be10318}
HKLM\SYSTEM\CurrentControlSet\Control\Class\{4d36e972-e325-11ce-bfc1-08002be10318}
You will find four digit keys in order they get listed/enumerated.
0000
0001
0002
The idea is to change the order so your device will be the last in the order. To achieve this simply rename the keys so yours has the last number. There is no need to rename all - just swap with the last one.
After that you have to fix the path for both renamed drivers. It has to be pointed by devices correctly.
You can find both device path into DeviceInstanceID
values located at
HKLM\SYSTEM\CurrentControlSet\Control\Class\{4d36e972-e325-11ce-bfc1-08002be10318}\00xx\
DeviceInstanceID
This value will point to Enum [DeviceInstanceID]
HKLM\SYSTEM\CurrentControlSet\Enum\[DeviceInstanceID]\
Driver
You have to update these values with renamed (reordered) values
{4d36e972-e325-11ce-bfc1-08002be10318}\00xx
Both has to match new locations after renaming
Additionally. You can make sure you are looking into right device by matching NetCfgInstanceId
to its configured IP addresses
HKLM\SYSTEM\CurrentControlSet\Control\Class\{4d36e972-e325-11ce-bfc1-08002be10318}\00xx\
NetCfgInstanceId
HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\[NetCfgInstanceId]\
IPAddress
WARNING
Its not an official way.
Make sure you take backup.
Make sure you've found proper keys/values.
Practice first.
It will failure load network drivers during boot if miss configured.
Do it on your own risk.