fumiya.f
fumiya.f

Reputation: 324

Avoid pausing tasks when select something on PowerShell and Command Prompt

When I click and select texts on PowerShell and Command Prompt, running tasks always be paused. How can I avoid this?

I'd like to avoid accidental stopping tasks by unexpected mouse control. ( I just need normal selecting behaviors with no side effects like mac or linux terminal. )

Upvotes: 6

Views: 3986

Answers (1)

midacts
midacts

Reputation: 341

I tend to like this feature or maybe I am just use to it. Sometimes it is nice to pause a task.

i hit one of the arrow keys to "unpause" something when I want it to continue.

https://www.vistax64.com/threads/script-pauses-when-you-click-in-the-powershell-text-window.112032/

The only method I know of changing this is the "Quick Edit" setting, via the registry HKCU\Console\QuickEdit 0x1 (on) 0x0 (off)

Or by going to the properties of the console windows (right click on title bar, Properties) to change the setting:

enter image description here

Upvotes: 10

Related Questions