So, I'm trying to use a batch file to open various instances of Windows File explorer in various locations on my desktop instead of them all starting right on top of each other, which is annoying. I've had no luck Googling this, so what can I incorporate into my batch script that will force each window to open in a specific location and at a certain size on my desktop? I'm not afraid to use plugins or 3rd party solutions.
This is an example of the script I have so far, which just opens them all on top of each other:
@echo off
start explorer "M:\2) Mathematical Innovations"
start explorer "This PC\3) Pictures"
start explorer "D:\5) Projects\Ae"
What should I do?