I am trying to create a batch file and embed Javascript so that it opens an IE window at a specific size and location. I have checked here and have also read about using Powershell and installing Node.js, however I need to be able to run it from a basic batch file.
I know that I can use (from this Microsoft thread)
javascript:resizeTo(960,760);moveTo(73,63)
And add that as a favorite to change the window size and location. Would I be able to somehow embed in a batch file or import to a batch file without running powershell, installing node.js, etc?
Thank you in advance.