Guest User

Apex Legends Lighting Service Fix

a guest
Jul 20th, 2019
11,609
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.98 KB | None | 0 0
  1. @echo off
  2. REM Just remember this Batch file needs to be run as administrator to work correctly!
  3. REM Now, let's mute the command prompt ugliness with Echo Off and stop that lighting service.
  4.  
  5. Title Apex Legends LightingService Fix
  6. net stop LightingService
  7.  
  8. REM On the line below this, replace "D:" with which ever drive you have Apex Legends installed on. Eg. "G:" with no quotations.
  9.  
  10. D:
  11.  
  12. 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
  13. REM with the Change Directory (CD) command and start the game using "exec"
  14.  
  15. cd D:\Games\EA Origin\Apex
  16. r5apex.exe
  17.  
  18. REM Now we'll clear the screen and make CMD wait until we come back and press any key before starting Lighting service again!
  19.  
  20. Echo Press any key to start the LightingService service again...
  21. pause
  22.  
  23. REM Starting the service, then exiting the Command Prompt
  24.  
  25. net start LightingService
  26. cls
  27.  
  28. echo Thankyou for playing Apex Legends! : class="re0">D
  29.  
  30. pause
Advertisement
Add Comment
Please, Sign In to add comment