Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @echo off
- REM Just remember this Batch file needs to be run as administrator to work correctly!
- REM Now, let's mute the command prompt ugliness with Echo Off and stop that lighting service.
- Title Apex Legends LightingService Fix
- net stop LightingService
- REM On the line below this, replace "D:" with which ever drive you have Apex Legends installed on. Eg. "G:" with no quotations.
- D:
- REM Let's tell Command Prompt where Apex Legends is intalled on your drive. Look for the folder where r5apex.exe is and point to it
- REM with the Change Directory (CD) command and start the game using "exec"
- cd D:\Games\EA Origin\Apex
- r5apex.exe
- REM Now we'll clear the screen and make CMD wait until we come back and press any key before starting Lighting service again!
- Echo Press any key to start the LightingService service again...
- pause
- REM Starting the service, then exiting the Command Prompt
- net start LightingService
- cls
- echo Thankyou for playing Apex Legends! : class="re0">D
- pause
Advertisement
Add Comment
Please, Sign In to add comment