How to turn off the num lock on your computer

How to turn off the num lock on your computer

Numlock is probably the most irritating and ineffective key on any modern keyboard. You can accidentally tap your keyboard and suddenly all of its keys will sprout numbers. How can you turn Numlock off permanently on a compute?

Laptop keyboards have numbers printed on the keys, so instead of having a numeric keypad, this is a major problem. The Numlock, located somewhere near the top of the keyboard, is where you press it when reaching for the Home key.

Turn off num lock on your computer

What the Numlock Key is doing wrong

Like the Caps Lock button and Numlock, it is also a toggle. Can’t you tap the Numlock key again to unlock it if you press it accidentally?

Although you could, this is only for an occasional situation. Numlock is causing problems on your system repeatedly, so you will need a better permanent solution.

The Numlock can interrupt your flow, halt you from working and cause chaos in any project. It also wastes a lot of effort and time cleaning it up. It’s not as useful as the Caps Lock key. Nearly everyone uses a number pad.

What is the reason why Numlock keeps activating on my computer?

The three reasons the Numlock indicator appears frequently on a computer are as follows.

First and foremost, accidental. As many quick typists make the mistake of hitting the Numlock key, this is most likely to be the reason.

This might even be the default setting. The standard recommendation is that the Numlock be deactivated at startup. However, there are some bugs or changes in the settings that can make it activated every boot.

It could also be software related. Rarely, the Num Lock is activated by the software without the physical key pressing. It is difficult to identify the cause of this error, making it the most challenging problem to resolve.

How to turn off num lock

Most people have the problem of accidentally taping the number lock key when they are typing. It is easy to fix this AutoHotkey can be used to disable your key.

Use AutoHotkey to disable the Num Lock key

AHK, a small utility that allows you to remap keys or create custom hotkeys in Windows 10, 11 and 10. It uses scripts but it requires very few lines of code to create key bindings. We can, for example, disable Numlock with just one line:

NumLock::Return

Easy, isn’t it? We will show you how to install AutoHotkey on your PC and then run the script.

  1. First, download AutoHotkey Visit the official website.
Turn off num lock
  1. To install AutoHotkey, run the setup file.
Turn off num lock
  1. AutoHotkey will allow you to make an AHK-script anywhere once it is installed. Click on an empty folder space and click “Right-click” to select New > AutoHotkey Script.
Turn off num lock
  1. Geben it a proper name, and then hit the Enter key. You can edit the script by right clicking on it and selecting “Edit” Open with > Notepad.
Turn off num lock
  1. You will find a lot of files already there, so you can set things up. You can ignore that and simply enter what follows in a separate line:

NumLock:: Return

Turn off num lock
  1. Close Notepad and save the file. Double-click the file to apply it. Numlock keys will not work anymore. The script can be closed at any moment by right-clicking the AHK system tray icon, and choosing Close Exit.
Turn off num lock

Some applications, mainly video games, might cause problems with AHK. It’s best to simply right-click on the script and select Run Run as Administrator. . This allows the script to have priority and can be used over other applications.

2. Disable the Num Lock key using SharpKeys

AutoHotkey does not provide the only method to do this Microsoft Windows remap keys. . SharpKeys is also available, which can do the exact same thing but it’s a GUI-based application.

SharpKeys makes changes directly to Windows Registry, rather than intercepting keypresses such as AHK. SharpKeys doesn’t require any keypresses like AHK to work The scripting system at AHK allows for flexibility, However, we do not need to know anything in particular to reprogram a key.

  1. The utility is available for download Its GitHub Page . . If you wish, you can download a zip file which acts as an app or MSI installer.
Turn off num lock
  1. After you have extracted SharpKeys or installed the app, run it.
Turn off num lock
  1. SharpKeys will display all of the key bindings in their main window. You can create your own by clicking on the Add button. The following opens the Add New Key Mapping With parallel lists of key and function functions that you can replace with, windo.
Turn off num lock
  1. Finding a particular key manually can take some time, so be selective Type Key Click the Numlock button on the keyboard below the pane. SharpKeys will detect the keypress and you can select OK to continue.
Turn off num lock
  1. The default option on the right side is Turn Key Off, OK.again.
Turn off num lock
  1. You can now see that the main screen has an entry explaining the change. This will apply the change to your actual screen Write to Registry button.
Turn off num lock

It will cause your Numlock key to stop working, just like with AHK scripts. It is more difficult to reverse this than with a script, because you will need SharpKeys to open SharpKeys and then delete the changes, instead of just quitting the program.

Fix 3: Change the default num lock state to off in registry

Many people find that the issue isn’t that they hit the Numlock key accidentally, but that Numlock has been enabled automatically on their computers.

We must be clear from the beginning: changing Numlock’s default behavior isn’t an easy fix. This requires modification to the appropriate setting the BIOS or the registry.

You don’t have to fix this problem. Numlock can be disabled manually each time your computer is started. The AHK script described in Fix 5 does a better job of automatically disabling Num Lock regardless of whether it was activated by default.

You can still tweak Registry settings by following this step-by-step guide.

  1. Start the Registry Editor and search for Regedit under the Start menu.
Turn off num lock
  1. Navigate to HKEY_USERS.Default\Control Panel\Keyboard\ in the left panel. This address can be appended to the root using the address bar at top:
Turn off num lock
  1. On the right side, you will find a number of keys including one called InitialKeyboardIndicators. . To modify the value of this entry, double-click it.
Turn off num lock
  1. Set the Numlock Off value to 0 in order to turn Numlock on at startup. You can select OK Close Regedit to save your changes. When you reboot your computer again, the new settings will be in effect.

Fix 4: Change the default num lock state from Off to On in BIOS

You can also modify Numlock’s default state from your BIOS settings on many laptops or desktop computers. This will usually be a permanent solution than the Registry editing, which Windows may undo.

Turn off num lock

As BIOS layouts vary from one motherboard to the next, there is not a specific way to change the Numlock status in BIOS. It is important to note that there are no specific steps for changing the Numlock state in BIOS Check out the BIOS Settings Check the settings on your computer for Num Lock. This is often the default setting.

Fix 5: With AutoHotkey, Keep Num Lock Continuously Disabled

You’ve seen the AHK method of mapping Numlock keys to null using AHK. But what about keeping Num Lock off? This can be done in two different ways.

AHK’s SetNumLockState function can be used as the first option. You can use this function to force the Numlock not to be enabled no matter how many apps or keypresses attempt to do so. The following lines can be added to a new AutoHotkeyScript and saved:

#SingleInstance force

#Persistent

SetNumLockState, Off

SetNumLockState, AlwaysOff

This script should now be run as administrator. You will not be able to activate Numlock with your key. It will not matter if Numlock had been enabled prior to running the script.

You can always suspend or pause Numlock from the system tray icon if you ever want to use it again.

Some systems may have the AlwaysOn feature not working consistently. This occurs when the state triggers by an app and not a key.

A slightly longer script will be required for these scenarios. A timer is needed that checks the status of Num Lock every several hundred milliseconds. If it is enabled, it will turn it off. It sounds complex, but it is really easy in practice.

#Persistent

SetTimer, CheckNumlock, 500

Return

CheckNumlock:

State := GetKeyState(“Numlock”, “T”)

IfEqual, State, 1

{

SetNumLockState,, Off

}

Return

You can run this script as an administrator and Numslock on your computer will not be activated again.

Which is the best way to turn off num lock on your compute?

An AutoHotkey script is the best way to deactivate Numlock completely on your computer – and to keep it that way. It continuously monitors Num Lock’s status and disengages it when necessary.

However, the majority of users won’t require such an extensive script. A simple AHK script will do the trick if you only want to deactivate the Numlock keys on your keyboard.

You can modify the default Numlock state at startup by either going into the registry, or changing the BIOS settings. If you find both options too complicated, you can tap the button once per boot.

Leave a Reply

Your email address will not be published. Required fields are marked *