Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. # How To Sync Addons, Settings and Screenshots
  2.  
  3. ## Setup
  4.  
  5. ### OneDrive
  6.  
  7. 1. Create a folder in OneDrive. For these instructions we'll use "World of Warcraft Settings" and will refer to it as `Settings` folder.
  8. 1. Right click on the folder and make sure the "Always keep on this device" is checked.
  9. 1. Copy the `WTF`, `Interface` and `Screenshots` folders to the `Settings` folder.
  10.  
  11. ### Create Junction Points
  12.  
  13. Open the command prompt as administrator and run the following commands.
  14.  
  15. Change the `WowInstallDir` and `WowSyncDir` to match your setup.
  16.  
  17. ```bat
  18. set "WowInstallDir=C:\Games\World of Warcraft\_classic_"
  19. set "WowSyncDir=%OneDrive%\World of Warcraft Settings"
  20. mklink /J "%WowInstallDir%\WTF" "%WowSyncDir%\WTF"
  21. mklink /J "%WowInstallDir%\Interface" "%WowSyncDir%\Interface"
  22. mklink /J "%WowInstallDir%\Screenshots" "%WowSyncDir%\Screenshots"
  23.  
  24. ```
  25.  
  26. **That's it. Have fun**
  27.  
  28. ## Adding a New PC
  29.  
  30. 1. Make sure the OneDrive folder with your settings in synced.
  31. 1. Right click on the folder and make sure the "Always keep on this device" is checked.
  32. 1. Delete or rename the `WTF`, `Interface` and `Screenshots` folders in your WoW install dir.
  33. 1. Run the commands described in [Create Junction Points](#create-junction-points).
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement