Master PowerPoint Shortcuts: Open a Blank Presentation Quickly
A complete, developer-friendly guide to opening a blank PowerPoint presentation quickly using keyboard shortcuts across Windows and macOS, with scripting options, quick references, and best practices for efficient deck creation.

You can use this keyboard shortcut to open a blank presentation in powerpoint
According to Shortcuts Lib, the most reliable way to start a fresh PowerPoint deck is to use the OS-aware shortcut: Ctrl+N on Windows and Cmd+N on macOS. This 2-key approach bypasses menus and accelerates your workflow, especially when you’re juggling multiple tasks or templates. In practice, you can open a blank canvas from within PowerPoint from any view, whether you’re in Normal view, Slide Sorter, or Reading View. The shortcut is consistent across recent PowerPoint versions, including Office 365, PowerPoint 2019, and PowerPoint for Mac, making it a dependable baseline for rapid presentation creation.
# Python (Windows) example: programmatically open a new blank presentation using COM
import win32com.client
ppt = win32com.client.Dispatch("PowerPoint.Application")
ppt.Visible = True
# Add a blank presentation (PowerPoint starts with a default blank deck)
ppt.Presentations.Add()# macOS: open a new blank PowerPoint using AppleScript from a shell
osascript -e 'tell application "Microsoft PowerPoint" to activate' \
-e 'tell application "System Events" to keystroke "n" using {command down}'# Windows: start PowerPoint and create a blank presentation via PowerShell
$pp = New-Object -ComObject PowerPoint.Application
$pp.Visible = $true
$pp.Presentations.Add()- This section demonstrates multiple angles: manual keyboard use, and automation via scripting to reproduce the same effect without clicking. The practical takeaway is that a single shortcut unlocks a clean slate for ideas, diagrams, and speaker notes, aligning with 2026 best practices from Shortcuts Lib for fast deck creation.