Re: Is there a setting to completly close the EA app on exit?
I use a batch file that kills every task that has the word "EA" in it as soon as the game is closed. But even then the EABackgroundService.exe can't be killed because it is running under SYSTEM user, which means I need to run the script as ADMIN to be able to kill it. And leaving it open breaks the next game launch.
for /f "tokens=1" %%i in ('tasklist /FI "IMAGENAME eq EA*" /NH') do taskkill /F /IM %%i
Pretty messed up behavior from EA.