Set (Many) Programs' Window Size/Position
You could use the PowerShell UIAutomation module.
For example, to move Notepad to screen location (100, 100):
$w = Get-UIAWindow -ProcessName notepad
$w.Move(100, 100)
You could use the PowerShell UIAutomation module.
For example, to move Notepad to screen location (100, 100):
$w = Get-UIAWindow -ProcessName notepad
$w.Move(100, 100)