If you’re using a real Linux shell, you can usually scroll up from the keyboard, but sadly that’s not an option in the Windows command shell world. Naturally, we can fix this up with a little AutoHotkey magic.
Of course, there actually is a way to scroll the command prompt with the keyboard, but itâs really complicated and requires too many keystrokes to be useful. This is a better way.
What weâll do to solve the problem is create an AutoHotkey script that makes it so whenever you press Shift+Page Up/Down, or Ctrl + Up/Down, it will send a mouse wheel scroll command to the window, scrolling it up or down.
Setting Up the Scrolling Window Script
Create a new AutoHotkey script, or paste the following into your existing script:
#IfWinActive ahk_class ConsoleWindowClass
+PgUp::
Send {WheelUp}
Return+PgDn::
Send {WheelDown}
Return^Up::
Send {WheelUp}
Return^Down::
Send {WheelDown}
Return#IfWinActive
Once youâve done so, save the script and double-click on it to start it upâyouâll be able to scroll the command prompt window with the keyboard now. Personally I prefer using Shift+Page Up or Down to scroll, since thatâs the more Linux way to do it.
If you want to add this to your startup to run every time you start your PC, open up a new Windows Explorer window and type in the following into the location bar:
shell:startup
Then simply put a shortcut to the AutoHotkey script into that folder.
Extra: if you like this one, make sure to read our article on how to enable Ctrl+V for pasting into the Windows command prompt.
Downloadable Scrolling Window Script
Simply download, extract, and double-click on the script file. Note: if you want to remove the tray icon from the script when itâs running, youâll need to add the #NoTrayIcon line to the beginning of the script.
Download ScrollingCommandPrompt AutoHotkey Script
- › How to Customize Your Mouse Scroll Speed in Windows
- › How to Change the Priority of Wired/Wireless Network Cards in Windows
- › Logitech MX Mechanical Keyboard Review: Easy on the Eyes, Not the Fingertips
- › AMD’s Ryzen 7000 Series Are the First 5nm Desktop CPUs Ever
- › Logitech MX Master 3S Mouse Review: Muted Refinements
- › Should You Buy a Drone?
- › What’s New in Chrome 102, Available Now
- › The Best Budget Speakers of 2022