hi !
i have a same problem with internet connection by wi-fi (USB) for mars sortie on another PC
use this command line (AHK) in admin
this command disable wi-fi
push enter to quit game and enable wifi
if you use demulshooter, you must add command line in AHK to launch game
#Persistent
; Remplacer par le chemin de l'exécutable de votre programme
programPath := "YOUR FOLDER\Shooter.exe"
DisableWiFi()
{
Run, netsh interface set interface "Wi-Fi" admin=disable, , Hide
Sleep, 2000
}
EnableWiFi()
{
Run, netsh interface set interface "Wi-Fi" admin=enable, , Hide
Sleep, 2000
}
DisableWiFi()
Run, %programPath%
Enter::
EnableWiFi()
Send, !{F4}
ExitApp
return
launcher disable wifi.ahk