I am launching an MS Edge window with a particular URL via Powershell: (example)
Start-Process msedge.exe https:\\google.com
Start-Process msedge.exe https:\\blah.com
Start-Process msedge.exe https:\\foo.com
... is there a way from Powershell to make it open in a particular DESKTOP?
I can create multiple desktops using the "task view" button. For instance, I may want the first instance of Edge in the script to launch on desktop one. The second on desktop two, and the third on desktop three.
It would also be interesting to know if I can (through powershell) create the desktops if they don't already exist (by default there is only one).
Thanks in advance!