I am looking to get the total screen resolution using dual monitors in powershell.
$screen = [System.Windows.Forms.Screen]::PrimaryScreen
$SCREENWIDTH = [int]$screen.bounds.Size.Width
$SCREENHEIGHT = [int]$screen.bounds.Size.Height
With this I get 1920 X 1200 but the resolution is actually 3840 X 1200. I could just double the resolution, however that wont always work depending on the monitors being used.
I am doing this within powershell studio. The reason for knowing this is because sometimes the program opens up off screen, if it does open off screen, I can move it back to the bottom right hand corner.
On the primary Screen the Resolution is still 1920x1200. You can check, how much screens are attached (
[System.Windows.Forms.Screen]::AllScreens
) and work with the bounds[System.Windows.Forms.Screen]::AllScreens | select -ExpandProperty bounds
.This is what I found works with the help of Martin. But I know it is super sloppy. I may ask another question to try to get this cleaned up.