Advertisement
Guest User

Untitled

a guest
Mar 20th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. Quick Synapse fix for stuck loading issues.
  2. Instructions:
  3.  
  4. 1. Copy the following code between CODE and END into a new notepad.
  5. 2. Go to File > Save As... > Save the file as autofix.bat (you can name it anything as long as you ensure you add the ".bat" at the end of the file when saving)
  6. 3. The file should look like a box with gears, if it's a text file, follow the 2nd step more closely.
  7. 3. Save the file to your Synapse folder that contains the Synapse program*. If you saved the batch file somewhere else then just move it into your main Synapse folder.
  8.  
  9. *This folder should contain the synapse.exe, synapse-x-x-x.bin files, x64, x86, autoexec, scripts folder, etc.
  10.  
  11. In other words, Just put the fucking bat file into the folder where you open synapse, ok? :)
  12.  
  13. 4. Right click and execute the bat file as ADMIN
  14.  
  15. ------------------------------------
  16. CODE
  17. ------------------------------------
  18.  
  19. @ECHO OFF Working...
  20. TASKKILL /F /T /FI "IMAGENAME eq synapse*"
  21. TASKKILL /F /T /IM "RobloxPlayerBeta.exe"
  22. CD %appdata%
  23. RD /S /Q SynapseAuth
  24. RD /S /Q SynapseData
  25. TIMEOUT /T 2 /NOBREAK
  26. IF EXIST Synapse.exe. DEL /F /Q *.bin. ELSE echo filename. not found
  27. TIMEOUT /T 2 /NOBREAK
  28. @ECHO Relaunching Synapse...
  29. Synapse.exe
  30. Pause
  31. @ECHO Done. Press any key...
  32.  
  33. ------------------------------------
  34. END
  35. ------------------------------------
  36.  
  37. Explanation:
  38.  
  39. This simply terminates both the Roblox and Synapse processes if any are running in the background, then deletes the appdata folders for a fresh re-creation, then it will delete the old .bin backups if found (only will occur if ran in the Synapse folder, if it is not then it will be skipped). It will relaunch Synapse (again, same rule applies, only if launched in the same folder as Synapse). Otherwise, just relaunch Synapse manually. Hit any key to close the console.
  40.  
  41. --TheVoid
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement