Posted On March 31, 2019

NUMLOCK windows XP

kimconnect 0 comments
blog.KimConnect.com >> Windows >> NUMLOCK windows XP
  1. Go to Start>> Run. Type in: regedit [Enter] or click OK.
  2. Navigate to the following registry key:
  3. HKEY_CURRENT_USER\Control Panel\Keyboard
  4. Click the “keyboard” entry once to empty its contents into the right pane.
  5. Find a string entry titled “InitialKeyboardIndicators”.
  6. Double click this entry and change the Value to either ‘0’ for off, or ‘2’ for on.
  7. Exit the Registry Editor and reboot your system for the changes to take effect.

Leave a Reply

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

Related Post

User Account Group Membership Copy

This is the quick snippet to be executed in the context of a Domain Administrator:…

PowerShell: Command to Retrieve Windows Applications List

The following the the PoSH equivalent of appwiz.cpl in Windows: PS> invoke-command TestWindows {Get-Package -Provider…

Quick PowerShell Cmdlet to Move Computer Object

$computername='SomeComputerName' $targetOU='OU=Computers,DC=kimconnect,DC=com' Move-ADObject -Identity (Get-ADComputer $computername).objectguid -TargetPath $targetOU