How To Print Screen One Monitor When You Have Two
Your cursor turns into a crosshair. Drag it across the monitor you want to capture. Capture an Entire Monitor/Window Command: Command + Shift + 4 , then press Spacebar .
: Click and drag your mouse over the specific monitor you want to capture. how to print screen one monitor when you have two
macOS handles multiple monitors very intuitively with built-in crosshairs. Capture a Specific Area Command + Shift + 4 Your cursor turns into a crosshair
$screen = [System.Windows.Forms.Screen]::AllScreens[0] # 0 = primary, 1 = secondary $bounds = $screen.Bounds $bitmap = New-Object System.Drawing.Bitmap($bounds.Width, $bounds.Height) $graphics = [System.Drawing.Graphics]::FromImage($bitmap) $graphics.CopyFromScreen($bounds.X, $bounds.Y, 0, 0, $bounds.Size) $bitmap.Save("$env:USERPROFILE\Desktop\monitor1.png") how to print screen one monitor when you have two