Introducing Quake Mode, an innovative feature in Windows Terminal that allows users to effortlessly summon a dropdown console from the top of their screen. Triggering this convenient mode is as simple as using the keyboard shortcut Windows + ` (grave accent), granting access to PowerShell, Command Prompt, or other terminal applications. Once you’ve experienced Quake Mode, you may find it challenging to revert to traditional terminal emulators on Windows.
Understanding Quake Mode in Windows Terminal
Quake Mode is defined by Microsoft as a specialized state in which your default terminal emulator transforms into a dropdown interface. This interface stays accessible from the top of your screen, overlaying any currently active applications or tabs. However, it is essential to note that Quake Mode windows can only be resized vertically; horizontal adjustments are not permitted.

If there are other instances of Windows Terminal open, Quake Mode will seamlessly stack alongside them, but only one instance of Quake Mode can be active at any time.
The concept of quake-style dropdown windows originated in Linux, with applications such as Ghostty terminal. Quake Mode allows for quick invocation or dismissal of the terminal interface, significantly expediting your workflow.
Necessary Steps Prior to Using Quake Mode
Before activating Quake Mode, ensure you have the updated version of Windows Terminal installed on your device. If you haven’t done so yet, refer to the installation guidelines.
Once the terminal window is open, access the Settings menu via the dropdown icon.

Navigate to the Startup tab and select your preferred Default profile, depending on whether you predominantly use PowerShell or Command Prompt.

You can further customize the When Terminal starts settings to specify whether to open a tab with the default profile or initiate a new session. Remember to click Save to apply these changes.

For those who require PowerShell or Command Prompt to run with administrative privileges, select Profiles from the left sidebar and choose the application you wish to launch.
Enabling the toggle for Run this profile as Administrator and setting the Starting directory path to C:\Windows\System32 before clicking Save will finalize the configuration.

Activating and Deactivating Quake Mode in Windows Terminal
To activate Quake Mode, launch the Windows Terminal. There are two primary methods to initiate the dropdown console.
Method 1: Keyboard Shortcuts (Global Hotkeys)
The straightforward way to launch Quake Mode is by using the keyboard shortcut Windows + `. This shortcut is located on the same key as the tilde (~) on most standard keyboards, making access quick and intuitive. The Quake mode terminal will become visible instantly, even while working in a browser.

To temporarily dismiss or minimize this mode, simply press the hotkeys Windows + ` again. You can toggle the Quake Mode on and off as needed. Once you’re finished, the main Windows Terminal application can be closed as it is no longer necessary.
Method 2: Using the Windows Terminal Console
Additionally, you can enable Quake Mode directly from an open Windows Terminal console by entering the following command:
wt -w _quake

Both PowerShell and Command Prompt can be used to initiate Quake Mode, showcasing the flexibility of Windows Terminal.
Disabling Quake Mode
To deactivate the Quake Mode terminal, simply type exit in the dropdown console. This action will permanently close the Quake Mode instance. To reactivate it, you will need to launch Windows Terminal once again.

For clearing previous commands in the Quake Mode terminal, use the cls command.
Quake Mode as a Game-Changer for Power Users
Gaining immediate access to the command line can drastically enhance your workflow, particularly for developers, administrators, and power users. This level of accessibility allows for quick monitoring of processes and execution of scripts without disrupting your current activities.
For instance, when my system performance begins to lag, I used to minimize all windows to access the terminal. However, with Quake Mode, I can simply press Windows + ` while continuing to work in my current application. From there, I can run a cmdlet that reveals the top ten CPU-consuming applications in descending order.
Get-Process | Sort-Object CPU -Descending | Select-Object -First 10

This enables me to systematically address resource-intensive applications all from one convenient spot, whether I’m streaming my favorite series or performing system maintenance. Now, I can quickly use Taskkill to terminate unnecessary tasks right as they arise.
Quake Mode allows for instantaneous actions, whether you’re running scripts or diagnosing problematic USB drives, effectively making it an invaluable tool for power users.
Additional Benefits of Quake Mode for Casual Users
Quake Mode represents a transformative feature for enhancing productivity, speed, and workflow on Windows 10 and 11. It caters not only to tech-savvy users but also to those who occasionally require system troubleshooting or command prompt access.
- Instant Network Status Check: Quickly run
ipconfigor ping websites from your dropdown console. - On-the-Fly System Maintenance: Execute essential commands like
sfc/scannoworchkdskwithout disrupting your workflow. - Immediate Access to System Information: Check device statistics, battery status, and resource usage using commands like
resmonwith ease. - Simplified Copy-Pasting: No longer a hassle, you can copy-paste commands directly from this global console, streamlining your processes.
Having a global hotkey-triggered overlay at your disposal can save valuable time during troubleshooting and debugging tasks. It dramatically reduces reliance on mouse interactions, making it possible to accomplish a range of tasks using just the keyboard. Furthermore, Quake Mode is lightweight and won’t put undue strain on your device’s specifications.
Leave a Reply