Windows computers make it easy to capture your screen. Many people know about the Print Screen button, but what if yours is broken, missing, or you just want a better way? There are many simple methods to take screenshots on Windows without using Print Screen. Whether you’re saving information, sharing a bug, or creating a quick tutorial, knowing these methods can help. In this guide, you’ll find clear instructions, practical tips, and examples so you can screenshot like a pro—even if you’re new to Windows.
Why Screenshot Without Print Screen?
The Print Screen button is convenient, but it’s not always accessible. Some laptops don’t include it, and others require pressing extra keys. Sometimes you want more than just a basic screenshot—you might need to capture a specific window or area, annotate your screenshot, or save it in a certain format. Knowing alternative methods gives you flexibility and saves time.

17% off Today's Exclusive Deals
Limited-time Exclusive Deals. Check current discount on Amazon.
Check Price on Amazon As an Amazon Associate I earn from qualifying purchases.Statistics show that over 80% of Windows users take screenshots at least once a month, but less than half use advanced tools. Learning these alternatives not only helps you when Print Screen isn’t available, but also makes your workflow smoother and your screenshots better.
Using Windows Built-in Tools
Windows has several tools built right in that let you take screenshots without Print Screen. These tools are simple, free, and require no extra downloads.
Snipping Tool
The Snipping Tool is available on most Windows versions. It lets you capture the whole screen, a window, or a custom area.
- Search for “Snipping Tool” in the Start menu.
- Open the app.
- Click “New” to start a screenshot.
- Drag your mouse to select the area you want.
- Save or copy your snip.
You can choose different types of snips:
- Rectangular Snip: Draw a box around what you want.
- Free-form Snip: Draw any shape.
- Window Snip: Capture a specific window.
- Full-screen Snip: Capture everything.
Pro tip: If you need to screenshot something that disappears quickly, use the delay feature. Click “Delay” and pick a time—Snipping Tool will wait before taking the shot.
Snip & Sketch
Windows 10 and 11 include Snip & Sketch, which is like an upgraded Snipping Tool.
- Press Windows + Shift + S.
- Your screen dims, and you can select the area to capture.
- The screenshot goes to your clipboard; a notification pops up.
- Click the notification to edit, annotate, or save.
This tool is faster for quick screenshots and lets you draw, highlight, or crop before saving.
Example: If you want to capture only a small part of a webpage, Snip & Sketch helps you avoid cropping later.
Windows Game Bar
If you’re a gamer or want to capture videos, the Windows Game Bar is powerful.
- Press Windows + G to open Game Bar.
- Click the camera icon or press Windows + Alt + Print Screen (no need for Print Screen key on many laptops).
- Screenshots are saved in your Videos/Captures folder.
Game Bar is great for capturing apps, but it won’t work on the desktop or File Explorer.
Windows Touch Devices
On tablets like the Surface Pro, you can screenshot using hardware buttons.
- Press Power + Volume Up at the same time.
- The screen flashes, and the screenshot is saved in Pictures/Screenshots.
This is handy when there’s no keyboard attached.
Using Keyboard Shortcuts
You don’t need Print Screen to capture your screen. Windows has other shortcuts:
- Windows + Shift + S: Opens Snip & Sketch overlay.
- Alt + Windows + S: Opens Snipping Tool (Windows 11).
- Windows + G: Opens Game Bar for screenshots.
These shortcuts are faster and give you more options than Print Screen.
Non-obvious tip: On some laptops, the function key (Fn) might block these shortcuts. Try pressing Fn with your shortcut if nothing happens.
Taking Screenshots With Third-party Apps
If you need advanced features, third-party apps are a great choice. They often offer editing, cloud storage, and more.
Lightshot
Lightshot is a popular free tool.
- Download from https: //app.prntscr.com/en/index.html.
- Press its custom shortcut (usually Print Screen, but you can change it).
- Select an area, annotate, and upload or save.
Lightshot is easy and fast, but may lack some advanced features.
Greenshot
Greenshot is another free app with more options.
- Download from https: //getgreenshot.org/.
- Set your own shortcut in settings.
- Capture regions, windows, or full screen.
- Annotate, crop, and export to many formats.
Greenshot is lightweight, and many users like its quick annotation tools.
Sharex
ShareX is a powerful open-source tool.
- Download from https: //getsharex.com/.
- Set custom shortcuts.
- Capture screen, window, region, scrolling pages.
- Edit, upload, automate tasks.
ShareX can be overwhelming for beginners but offers features like GIF creation, OCR (text recognition), and advanced workflows.
Comparison Of Third-party Apps
Here’s a simple comparison to help you pick:
| App | Price | Features | Ease of Use | Editing |
|---|---|---|---|---|
| Lightshot | Free | Basic capture, upload | Very easy | Basic |
| Greenshot | Free | Capture, annotate, export | Easy | Good |
| ShareX | Free | Capture, edit, automate | Moderate | Excellent |
Insight: Beginners often miss that many apps allow you to set your own shortcut, so you never need Print Screen again.

Screenshot Browser Extensions
If you take screenshots mostly from web pages, browser extensions work well.
Chrome Extensions
- Awesome Screenshot: Capture, annotate, share.
- Nimbus Screenshot: Full page capture, editing.
Firefox Add-ons
- Fireshot: Save full web pages.
- Screenshot Tool: Quick region selection.
Browser extensions often include cloud upload, making sharing easy. They’re perfect for capturing long articles or web forms.
Using Microsoft Powerpoint Or Word
Many don’t know that PowerPoint and Word can capture screenshots.
- Open PowerPoint or Word.
- Click “Insert” > “Screenshot.”
- Choose a window or use “Screen Clipping” to select an area.
Your screenshot appears in the document. You can crop or annotate before saving.
This method is ideal for teachers, students, or anyone preparing presentations.
Taking Screenshots With Windows Accessibility Features
Windows offers accessibility tools that can capture screenshots.
On-screen Keyboard
If your physical Print Screen button is broken, use the On-Screen Keyboard.
- Search “On-Screen Keyboard” in Start.
- Open it.
- Click the PrtScn button.
This simulates Print Screen, but you can combine it with other shortcuts.
Magnifier Tool
Windows Magnifier (accessibility tool) includes a screenshot feature.
- Start Magnifier (Windows + Plus).
- Click the camera icon.
- Save the screenshot.
Magnifier is designed for visually impaired users but works for anyone.
Using Command Line And Powershell
Advanced users can take screenshots using command line tools.
Powershell Script
With PowerShell, you can automate screenshots.
Example script:
Add-Type -AssemblyName System.Windows.Forms
Add-Type -AssemblyName System.Drawing
$bounds = [System.Windows.Forms.Screen]::PrimaryScreen.Bounds
$bitmap = New-Object System.Drawing.Bitmap $bounds.Width, $bounds.Height
$graphics = [System.Drawing.Graphics]::FromImage($bitmap)
$graphics.CopyFromScreen($bounds.Location, [System.Drawing.Point]::Empty, $bounds.Size)
$bitmap.Save("C:\Users\Public\screenshot.png")
This saves a screenshot to your public folder. You can run scripts like this for scheduled or automated screenshots.
Non-obvious tip: PowerShell lets you capture screenshots even on servers or headless systems, which many beginners overlook.
Comparing Screenshot Methods
Which method suits you best? Let’s compare built-in, third-party, and browser tools:
| Method | Speed | Editing | Sharing | Best For |
|---|---|---|---|---|
| Snipping Tool | Moderate | Basic | Manual | Any user |
| Snip & Sketch | Fast | Good | Manual | Quick screenshots |
| Game Bar | Fast | None | Auto-save | Gamers |
| Third-Party Apps | Varies | Excellent | Cloud | Power users |
| Browser Extensions | Fast | Good | Cloud | Web screenshots |
Guidance: If you need editing and sharing, third-party apps are best. For quick captures, use Snip & Sketch. For web pages, browser extensions are ideal.
How To Choose The Best Screenshot Method
Choosing the right method depends on your needs:
- Speed: If you need to capture something fast, use Snip & Sketch or Game Bar.
- Editing: For marking or cropping, use Snip & Sketch or Greenshot.
- Sharing: If you want to share online, try Lightshot or browser extensions.
- Automation: If you need scheduled screenshots, PowerShell or ShareX is best.
- Web Pages: Use browser extensions for full-page captures.
Common mistake: Many users stick to one method and don’t realize other tools can save time or offer better features.

Practical Examples
Let’s see how these methods work in real life.
Example 1: Capturing A Bug
Your app crashes, and you want to send a screenshot to support.
- Press Windows + Shift + S.
- Select the error window.
- Click the notification to annotate.
- Save and attach to your email.
Example 2: Creating A Tutorial
You want to show steps for installing software.
- Use Snip & Sketch for each step.
- Annotate with arrows and text.
- Save images in sequence.
Example 3: Saving Web Content
You need to save a long article.
- Install Nimbus Screenshot extension.
- Click “Full Page” capture.
- Save as PDF or image.
Example 4: Scheduled Screenshots
You want to monitor a server.
- Use ShareX or PowerShell script.
- Set a schedule for automatic screenshots.
- Review images later.
Troubleshooting Common Issues
Screenshots not working? Here’s what to check:
- Shortcuts not responding: Check if another app is using the shortcut. Try changing it.
- Nothing saved: Some tools copy to clipboard only. Paste into Paint or Word to save.
- Permission errors: Some folders need admin rights. Save to Pictures or Desktop.
- Missing notifications: Make sure notifications are enabled in Windows settings.
- Tablet mode: On touch devices, use hardware buttons.
Insight: Many beginners miss that clipboard screenshots need to be pasted before saving. Always check your clipboard before you panic.
Security And Privacy Tips
Screenshots can reveal sensitive information. Always check what’s visible before sharing.
- Hide passwords, email addresses, and private messages.
- Use annotation tools to blur or cover sensitive parts.
- For business, use company-approved tools to avoid leaks.
Stat: Over 30% of screenshot leaks come from careless sharing. Double-check before uploading.
Backing Up Your Screenshots
Screenshots are valuable for records, tutorials, or troubleshooting. To avoid losing them:
- Save to cloud services like OneDrive or Google Drive.
- Organize by date or topic.
- Use tags or filenames for easy search.
Pro tip: Set up automatic backup for your screenshot folder. This prevents accidental loss.
Advanced Screenshot Features
Some tools offer features beginners often ignore:
- Scrolling Capture: Save full pages, even if they don’t fit on screen.
- GIF Creation: Record screen actions as GIFs.
- OCR: Extract text from screenshots.
- Automation: Schedule or trigger screenshots by events.
Exploring these features can turn simple screenshots into powerful workflows.
Screenshot File Formats
Different tools save in different formats. Common ones:
- PNG: Best for quality and transparency.
- JPG: Good for photos, smaller size.
- PDF: For documents and full-page captures.
- GIF: For animations.
Tip: PNG is best for most screenshots. Only use JPG if you need smaller files.

Where To Find Saved Screenshots
Screenshots are usually saved in:
- Pictures/Screenshots (Windows default)
- Videos/Captures (Game Bar)
- Custom folders (third-party apps)
- Clipboard (Snip & Sketch, Print Screen)
If you can’t find your screenshot, check the app settings or clipboard.
Windows Version Differences
Windows 7, 8, 10, and 11 have different tools.
- Windows 7: Snipping Tool only.
- Windows 8: Snipping Tool, basic shortcuts.
- Windows 10: Snip & Sketch, Game Bar.
- Windows 11: Snipping Tool merged with Snip & Sketch, new shortcuts.
Tip: If you upgrade Windows, learn the new tools. Old shortcuts may change.
Accessibility And Language Support
Windows screenshot tools work in many languages. You can change app language in settings. Accessibility tools like Magnifier and On-Screen Keyboard help users with disabilities.
If you need voice commands, use Cortana or other assistants to launch screenshot tools.
External Resource
For more detailed technical information, visit the official Microsoft support page:
microsoft Support
Frequently Asked Questions
How Can I Screenshot A Specific Part Of My Screen?
Use Windows + Shift + S to open Snip & Sketch. Select the area you want. Your screenshot is copied to the clipboard; click the notification to edit or save.
Can I Screenshot Without Any Keyboard?
Yes, on touch devices like Surface, press Power + Volume Up together. You can also use the On-Screen Keyboard to simulate Print Screen.
Where Do My Screenshots Get Saved?
Default folders are Pictures/Screenshots or Videos/Captures. Some tools copy to clipboard only—paste into Paint or Word to save. Check app settings for custom folders.
What’s The Best Format For Screenshots?
PNG is ideal for quality and transparency. Use JPG for photos or smaller size. For documents or full-page web captures, PDF is good.
How Do I Screenshot A Scrolling Window Or Full Web Page?
Use browser extensions like Nimbus Screenshot or ShareX. These tools let you capture pages longer than your screen, saving full articles or chats.
Taking screenshots on Windows without Print Screen is simple once you know the options. Built-in tools, keyboard shortcuts, third-party apps, browser extensions, and accessibility features let you capture, edit, and share screens with ease. Try different methods for different needs, and keep your screenshots organized and secure.
With these tips, you’ll never be stuck again when Print Screen isn’t available.
