I have this code to save in multiple locations, but from the second time (when I already have the file saved in both places), excel starts giving me this pop-up asking me if I want to replace it (of course I want, but with the same name) and changing the name and place of it when I say that I want.
Is there any way to deactivate this pop-up? or saving it in another way? or another thing that solves it?

This is the code:
Sub SaveToLocations()
    ActiveWorkbook.SaveAs "C:\Users\Alice\Downloads\Excel" + ActiveWorkbook.Name
    ActiveWorkbook.SaveAs "C:\Users\Alice\Dropbox" + ActiveWorkbook.Name
End Sub