Post: How to Disable Caps Lock Key in the System
05-18-2011, 05:50 AM #1
Dopey
NGU :/
(adsbygoogle = window.adsbygoogle || []).push({}); I had a question on this a couple of days ago and received nothing but hate, infractions and a ban. Today, I will teach you how to disable the caps lock key if you ever run into any problems with it.

Mac Version
On the top left click the Apple symbol.
Click System preferences.
Under Hardware, click Keyboard.
On the top, you have two tabs, one says keyboard, one says keyboard shortcuts. Click keyboard.
On the bottom of that window, click "Modifier Keys".
You now have a few options to replace some keys on your keyboard. For Caps Lock, click no action.
Click ok and your caps lock key is now disabled Smile


Windows Version

To Toggle the CAPS LOCK Key On
Use any text editor (such as Notepad) to create the following file:
    
a 100
mov ax,0040
mov ds,ax
or byte ptr [0017],40
mov ah,1
int 16
mov ax,4c00
int 21

r cx
0013
n CAPS_ON.COM
w
q


Save the file as Capson.deb
Type the following line at a command prompt:
debug < capson.deb
This creates an MS-DOS-based program named Caps_on.com that toggles the CAPS LOCK key on.

To Toggle the CAPS LOCK Key Off
Use any text editor (such as Notepad) to create the following file:
    
a 100
mov ax,0040
mov ds,ax
and byte ptr [0017],bf
mov ah,1

int 16
mov ax,4c00
int 21

r cx
0013
n CAPS_OFF.COM
w
q


Save the file as Capsoff.deb
Type the following line at a command prompt:
debug < capsoff.deb
This creates an MS-DOS-based program named Caps_off.com that toggles the CAPS LOCK key off.


I hope this can help you stay out of trouble Claps
Last edited by Dopey ; 05-18-2011 at 06:26 AM.

The following 9 users say thank you to Dopey for this useful post:

ⒿⒺⒷⓇⓄ, Alpha, erbisme4, helpmeoprah, mman259, Phrenzy,
05-18-2011, 06:11 AM #2
Thank you! I always end up accidentally pressing caps lock, so i just want to disable it lol.
Last edited by mman259 ; 05-18-2011 at 02:35 PM.
05-18-2011, 02:07 PM #3
ⒿⒺⒷⓇⓄ
At least I can fight
Originally posted by Dopey View Post
I had a question on this a couple of days ago and received nothing but hate, infractions and a ban. Today, I will teach you how to disable the caps lock key if you ever run into any problems with it.

Mac Version
On the top left click the Apple symbol.
Click System preferences.
Under Hardware, click Keyboard.
On the top, you have two tabs, one says keyboard, one says keyboard shortcuts. Click keyboard.
On the bottom of that window, click "Modifier Keys".
You now have a few options to replace some keys on your keyboard. For Caps Lock, click no action.
Click ok and your caps lock key is now disabled Smile


Windows Version

To Toggle the CAPS LOCK Key On
Use any text editor (such as Notepad) to create the following file:
    
a 100
mov ax,0040
mov ds,ax
or byte ptr [0017],40
mov ah,1
int 16
mov ax,4c00
int 21

r cx
0013
n CAPS_ON.COM
w
q


Save the file as Capson.deb
Type the following line at a command prompt:
debug < capson.deb
This creates an MS-DOS-based program named Caps_on.com that toggles the CAPS LOCK key on.

To Toggle the CAPS LOCK Key Off
Use any text editor (such as Notepad) to create the following file:
    
a 100
mov ax,0040
mov ds,ax
and byte ptr [0017],bf
mov ah,1

int 16
mov ax,4c00
int 21

r cx
0013
n CAPS_OFF.COM
w
q


Save the file as Capsoff.deb
Type the following line at a command prompt:
debug < capsoff.deb
This creates an MS-DOS-based program named Caps_off.com that toggles the CAPS LOCK key off.


I hope this can help you stay out of trouble Claps


Why did you ask about the caps lock in the sb?
05-18-2011, 02:24 PM #4
xd366
find me on twitter now
You must login or register to view this content.
Last edited by xd366 ; 05-18-2011 at 02:33 PM.

The following user groaned xd366 for this awful post:

--Ben-
05-18-2011, 08:38 PM #5
Dopey
NGU :/
Originally posted by jebro View Post
Why did you ask about the caps lock in the sb?


My key was broken slightly, in an attempt to fix it, I pulled it out with caps lock on and well I was asking for a way to fix it. This is what I found that helped me.
05-18-2011, 08:44 PM #6
DEREKTROTTER
You're Goddamn Right
anyway WTF? infracted for using caps - it doesnt do any harm

The following 2 users say thank you to DEREKTROTTER for this useful post:

helpmeoprah, Phrenzy
05-18-2011, 08:52 PM #7
Dopey
NGU :/
Originally posted by DEREKTROTTER View Post
anyway WTF? infracted for using caps - it doesnt do any harm


It's considered spamming, even if you are typing in all caps to ask for a way to disable it...
05-18-2011, 09:21 PM #8
Default Avatar
Sox
Guest
There is no difference if you use caps or not.
05-18-2011, 09:24 PM #9
ZoneHD
Shiver do you lift?
Originally posted by Dopey View Post
I had a question on this a couple of days ago and received nothing but hate, infractions and a ban. Today, I will teach you how to disable the caps lock key if you ever run into any problems with it.

Mac Version
On the top left click the Apple symbol.
Click System preferences.
Under Hardware, click Keyboard.
On the top, you have two tabs, one says keyboard, one says keyboard shortcuts. Click keyboard.
On the bottom of that window, click "Modifier Keys".
You now have a few options to replace some keys on your keyboard. For Caps Lock, click no action.
Click ok and your caps lock key is now disabled Smile


Windows Version

To Toggle the CAPS LOCK Key On
Use any text editor (such as Notepad) to create the following file:
    
a 100
mov ax,0040
mov ds,ax
or byte ptr [0017],40
mov ah,1
int 16
mov ax,4c00
int 21

r cx
0013
n CAPS_ON.COM
w
q


Save the file as Capson.deb
Type the following line at a command prompt:
debug < capson.deb
This creates an MS-DOS-based program named Caps_on.com that toggles the CAPS LOCK key on.

To Toggle the CAPS LOCK Key Off
Use any text editor (such as Notepad) to create the following file:
    
a 100
mov ax,0040
mov ds,ax
and byte ptr [0017],bf
mov ah,1

int 16
mov ax,4c00
int 21

r cx
0013
n CAPS_OFF.COM
w
q


Save the file as Capsoff.deb
Type the following line at a command prompt:
debug < capsoff.deb
This creates an MS-DOS-based program named Caps_off.com that toggles the CAPS LOCK key off.


I hope this can help you stay out of trouble Claps


Your making a big deal out of this for nothing, Its a infraction... Calm down..

The following 4 users say thank you to ZoneHD for this useful post:

Ada Wong, Samberg, TTS.

The following 2 users groaned at ZoneHD for this awful post:

--Ben-,
05-18-2011, 09:32 PM #10
Dopey
NGU :/
Originally posted by ZoneHD View Post
Your making a big deal out of this for nothing, Its a infraction... Calm down..


This thread is to educate the readers about how to this. On the infraction part, it was 2 infractions, one never expires, and I was banned for it...

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo