QuickEdit Mode ?

  • Thread starter Thread starter R J
  • Start date Start date
R

R J

Can anyone tell me if there is possible with a registry-fix to disable use
of mouseclick in a command window in win2000

I mean that using a batch-script in a command window, sometimes the process
stops when the mouse has clicked into the window.

Is there a way to avoid this ?



Richard
 
R J said:
Can anyone tell me if there is possible with a registry-fix to disable use
of mouseclick in a command window in win2000

I mean that using a batch-script in a command window, sometimes the process
stops when the mouse has clicked into the window.

Is there a way to avoid this ?



Richard
I found out that when setting hkey_current_user\console\quickedit=0 then it
was disabled.
But how do i manually set that into the registry ?
I tried 'reg /add hkey_current_user\console\quickedit=0' which gives me a
successful output, but registry is not updated !

Anyone that can give me the right syntax ?

Richard
 
Richard said:
I found out that when setting hkey_current_user\console\quickedit=0 then it
was disabled.
But how do i manually set that into the registry ?
I tried 'reg /add hkey_current_user\console\quickedit=0' which gives me a
successful output, but registry is not updated !

Wrong syntax, try reg add /? for help.
Anyone that can give me the right syntax ?

Yes, should be
reg add HKCU\Console /v QuickEdit2 /t REG_DWORD /d 0
 
Olof said:
Wrong syntax, try reg add /? for help.



Yes, should be
reg add HKCU\Console /v QuickEdit2 /t REG_DWORD /d 0

No, I typed wrong, should be:
reg add HKCU\Console /v QuickEdit /t REG_DWORD /d 0
 
Olof Lagerkvist said:
No, I typed wrong, should be:
reg add HKCU\Console /v QuickEdit /t REG_DWORD /d 0

thank you very much !. I found out adding /f at the end makes the user not
get any questions.
Works perfect now !

Richard
 
Back
Top