Disabling the Windows Key on Microsoft Natural Keyboard (181348)



The information in this article applies to:

  • Microsoft Windows 2000 Server
  • Microsoft Windows 2000 Advanced Server
  • Microsoft Windows 2000 Professional
  • Microsoft Windows 2000 Datacenter Server
  • Microsoft Windows NT Server 4.0
  • Microsoft Windows NT Workstation 4.0

This article was previously published under Q181348
IMPORTANT: This article contains information about modifying the registry. Before you modify the registry, make sure to back it up and make sure that you understand how to restore the registry if a problem occurs. For information about how to back up, restore, and edit the registry, click the following article number to view the article in the Microsoft Knowledge Base:

256986 Description of the Microsoft Windows Registry

SUMMARY

Administrators who want to lock computers in secure environments (for example, demonstration workstations and kiosks) may need to disable the Windows keyboard commands found on the Microsoft Natural Keyboard and compatible keyboards.

MORE INFORMATION

System policies can be defined to limit access to items on the desktop and Start menu, including the Run and Find commands on the Start menu.

Default and existing user profiles can be customized to add or remove application shortcuts visible to the user. Administrators wanting to deny access to local and network files may remove the Windows Explorer application, Explorer.exe, from the Start menu in addition to the My Computer icon.

Even when the icon for Explorer has been removed from the Start menu and desktop, users with a Microsoft Natural Keyboard or other compatible keyboard press Windows logo key+E shortcut to start Explorer.

The following script used in conjunction with the Regini.exe utility from the resource kit disables the left and right Windows logo keys on the Microsoft Natural Keyboard and other compatible keyboards.

To disable all Windows keyboard shortcut keys, save the following text in a REGINI script called Disable_wins.ini. Run the script from the Windows NT command prompt. For example, from the C:\users\default> prompt, type regini disable_wins.ini. Restart the computer to make the changes take effect.
   [REGINI SCRIPT STARTS HERE:]

   ;
   ; This mapping is used to turn both Windows keys off
   ;
   \Registry\Machine\SYSTEM\CurrentControlSet\Control\Keyboard Layout
       Scancode Map = REG_BINARY 24    \ 
           0x00000000 0x00000000 3     \ 
           0xE05B0000 0xE05C0000       \ 
           0x0

   ; Here is an explanation of all the values:
   ;
   ; 24         Size of the scancode map including header, in bytes
   ; 0x00000000 Header : Version
   ; 0x00000000        : Flags
   ; 3                 : Number of entries (includes null terminator)
   ; 0xE05B0000 left Windows -> nul (0xE0 0x5b -> 0x00)
   ; 0xE05C0000 right Windows -> nul (0xE0 0x5c -> 0x00)
   ; 0x00000000 null terminator

   [REGINI SCRIPT ENDS HERE]
				

For additional information on Microsoft Natural Keyboard shortcuts, click the article number below to view the article in the Microsoft Knowledge Base:

126449 Keyboard Shortcuts for Windows 95


WARNING: If you use Registry Editor incorrectly, you may cause serious problems that may require you to reinstall your operating system. Microsoft cannot guarantee that you can solve problems that result from using Registry Editor incorrectly. Use Registry Editor at your own risk.

NOTE: You should back up the registry before editing it.

To remove this mapping, delete the following key in Regedt32.exe:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout\Scancode Map

Restart the computer to make the changes take effect. If modifications to the registry prevent the use of the keyboard during interactive logon attempts and you have two computers on a network, use Regedt32.exe over the network to delete the scancode mapping.

Modification Type:MajorLast Reviewed:6/3/2003
Keywords:kbhowto KB181348