Forum Discussion

WTF_DOC's avatar
4 years ago
Solved

Workaround: C&C Remastered - Failed to launch, start as administrator

Here is a work around if your C&C Remsastered won't launch on PC using EA Desktop (including xbox gold pass or regular EA desktop).

If the game fails to launch, prompting to launch in administrator mode then does nothing:

Option 1:

  1. Sign out of EA desktop.
  2. Open task manager and end the following tasks:
    1. EABackgroundService.exe 
    2. EADesktop.exe 
    3. EAGEP.exe 
    4. EALocalHostSvc.exe 
  3. Open EA Desktop and sign back in.

Option 2:

Sign out of EA desktop.

Open notepad, copy and paste this:

taskkill /IM EABackgroundService.exe /F
taskkill /IM EADesktop.exe /F
taskkill /IM EAGEP.exe /F
taskkill /IM EALocalHostSvc.exe /F

Save to your desktop as .bat with any filename you want, example I use "ea task end.bat"

Right click -> run as administrator. This will kill the tasks automatically without you having to go one by one.

The game will now open.

  • incase someone comes upon this thread, go into Properties of your Game in the EA-App and add -NOSPLASHPRELOAD
    Idk what it does i have it from a Steamfix for this game and it also works in the EA-App. I can start the game finally now.

25 Replies

  • Cartonian321's avatar
    Cartonian321
    2 years ago

    Thank you, I never thought to look on the taskbar!! I used to play this on my old Windows 10 pc but the permissions window always popped up. I half guessed that it was a amin permission thing. Thank God you have sharp eyes!!! Definitely solved my problem, thank you once again!!

  • Literally did it your way and it didnt work.  Hers did.

  • With that batch code in the first post from WTF_DOC, you'll want to add all this code which runs the batch file as Admin. Otherwise some of those processes may not end like the EABackgroundService.exe process.

    So save all this in a text editor and name it something.bat Make sure it has the .bat file extension. You may need to show file extensions from the Windows Control Panel | File Explorer Options.

    @echo off

    :: BatchGotAdmin
    :-------------------------------------
    REM --> Check for permissions
    IF "%PROCESSOR_ARCHITECTURE%" EQU "amd64" (
    >nul 2>&1 "%SYSTEMROOT%\SysWOW64\cacls.exe" "%SYSTEMROOT%\SysWOW64\config\system"
    ) ELSE (
    >nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
    )

    REM --> If error flag set, we do not have admin.
    if '%errorlevel%' NEQ '0' (
    echo Requesting administrative privileges...
    goto UACPrompt
    ) else ( goto gotAdmin )

    :UACPrompt
    echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
    set params= %*
    echo UAC.ShellExecute "cmd.exe", "/c ""%~s0"" %params:"=""%", "", "runas", 1 >> "%temp%\getadmin.vbs"

    "%temp%\getadmin.vbs"
    del "%temp%\getadmin.vbs"
    exit /B

    :gotAdmin
    pushd "%CD%"
    CD /D "%~dp0"
    :--------------------------------------
    taskkill /IM EABackgroundService.exe /F
    taskkill /IM EADesktop.exe /F
    taskkill /IM EAGEP.exe /F
    taskkill /IM EALocalHostSvc.exe /F

About Command & Conquer Franchise Discussion

Chat about your favorite games in the Command and Conquer franchise and get help from the player community.13,560 PostsLatest Activity: 10 hours ago