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 .
The modern Windows way to handle screenshots is the (or Snip & Sketch). This is the most versatile method for dual-monitor users. Press Windows Key + Shift + S . how to print screen one monitor when you have two
: Highly popular for office environments; it provides a quick menu after every capture asking if you want to save, open in Outlook, or send to Word. Summary Checklist for Dual Monitors Shortcut (Windows) Shortcut (Mac) Capture Active Window Alt + PrtSc Cmd + Shift + 4 + Space Capture Custom Area Win + Shift + S Cmd + Shift + 4 Auto-save to File Win + Alt + PrtSc Cmd + Shift + 3 Your cursor turns into a crosshair
Your screens will dim, and a small toolbar will appear at the top. Choose your mode: The modern Windows way to handle screenshots is
If your monitors have different resolutions (e.g., one 4K and one 1080p), PrtSc can sometimes create "black bars." Using the Snipping Tool avoids this.
By mastering the or Windows + Shift + S combos, you’ll never have to worry about accidentally sharing your "messy" second monitor during a presentation or in a quick message again.
$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")