Re: Changing drives
@imjuliewaters The issue is more likely the first part of the command. First, make sure the Electronic Arts folder is still present in Documents. If it's not, create a new Electronic Arts folder, or make the symlink for the Electronic Arts folder, like this:
MKLINK /J “%UserProfile%\Documents\Electronic Arts” “D:\Electronic Arts”
The symlink works just as well this way.
If that doesn't help, the issue is probably the %UserProfile% part. Instead, write out the entire file path to the Electronic Arts or Sims 4 folder, for example:
MKLINK /J “C:\Users\username\Documents\Electronic Arts\The Sims 4” “D:\Electronic Arts\The Sims 4”
To double-check the file path, right-click on the Sims 4 folder on C, or the Electronic Arts folder, and select Properties > General, then find the Location. One common problem is that the user folder is in OneDrive, in which case %UserProfile% doesn't find it.
Please let me know which of these is the issue, for future reference.