IntelliType uses the Windows Registry to store its keymapping data.When you add, remove, change a key definition using the IntelliType Pro software, the registry is updated.(If you are not familiar with Registry, see: Registry Tutorial.)
Mouse and Keyboard Center 2.0 (formerly IntelliPoint and IntelliType Pro) Mouse and Keyboard Center helps you personalize and customize how you work on your PC. Download Microsoft IntelliPoint Mouse Software Driver 8.20.468.0 for Windows 64-bit. OS support: Windows Vista / 7 64-bit. Category: Input Devices. IntelliType Pro software enables you to customize the unique features of your Microsoft® keyboard. You can reassign keys to open a program, file, or Web page, or to perform commands and application-specific functions.
Most are still supported in the latest corresponding versions of IntelliType Pro and IntelliPoint. Security vulnerabilities. According to Ofir Moskovitch, a security researcher, Microsoft released Microsoft Mouse and Keyboard Center 3.2.116 with major cryptographic security issues, including Hash Collision Vulnerability. If you have more than one keyboard attached to your computer, each keyboard model can have different settings. PS/2 devices are no longer supported in IntelliType Pro 8.2. About Keyboard Driver: Install the proper keyboard software and your system will be able to recognize the device and use all available features.
The registery items for IntelliType is at: 〔HKEY_CURRENT_USERSoftwareMicrosoftIntelliType Pro〕.
Under the “IntelliType Pro” branch, there are these branches:
The EventMapping is the generic key definition for your keys.
The “AppSpecific” holds key sets for each application. Each application will have a entry.For example, i have:
When you use IntelliType to create a new set of keys for a different software (Under the section “Custom Key Settings”, “Add…” button), it'll create a “EventMapping” branch under the app's name entry in “AppSpecific” .If you never defined keys specific to apps, it is safe to delete the whole AppSpecific entry. (it will be regenerated anyway. Do not delete the whole “IntelliType Pro” tree. If you do, next time you launch it, it'll complain of locating some file thinking that you might have pirated the software. But you can always download it again and reinstall.)
Am not sure what “Shortcuts” or “SQM” entries are for. They don't have any children and doesn't seem to be used.
The “Zoom” entry is for the Zoom slider on your keyboard. This entry will be created only if you have tried to disable the zoom using IntelliType (in the Zoom tab).
The EventMapping Entry
Microsoft Intellipoint Software
The “EventMapping”, regardless where it appears, is the main key data. Each of its children defines a key, and that key's action. The keys are identified by a numerical code.
Key Code | Key/Button | Comment |
---|---|---|
14 | Back | The special “Back” button, with a fat left arrow (⇦) icon on the button. |
15 | Forward | The special “Forward” button, with a fat right arrow (⇨) icon on the button. |
18 | Search | ◇ |
20 | Web/Home | ◇ |
21 | ◇ | |
25 | Play/Pause | ◇ |
28 | ? | ◇ |
29 | Media? | ◇ |
30 | My Computer? | ◇ |
31 | Calculator | ◇ |
32 | ? | ◇ |
41 | New (F4)? | ◇ |
42 | F1 | with F Lock off |
45 | F4 | with F Lock off |
46 | F5 | with F Lock off |
47 | F6 | with F Lock off |
48 | F7 | with F Lock off |
49 | F8 | with F Lock off |
50 | F9 | with F Lock off |
51 | F10 | with F Lock off |
52 | F11 | with F Lock off |
53 | F12 | with F Lock off |
54 | F2 | with F Lock off |
55 | F3 | with F Lock off |
65 | Open (F5)? | ◇ |
66 | Close (F6)? | ◇ |
67 | ? | ◇ |
73 | Left Window key | ◇ |
74 | Menu/App key | ◇ |
75 | Caps Lock | ◇ |
75 | ? | ◇ |
78 | My Favorites 1 | ◇ |
79 | My Favorites 2 | ◇ |
80 | My Favorites 3 | ◇ |
81 | My Favorites 4 | ◇ |
82 | My Favorites 5 | ◇ |
83 | Volume? | ◇ |
i haven't found the code for the following keys:My Documents,My Pictures, My Music, Mute, Media, Messenger.
If you have not used IntelliType to set a particular key, no registry entry will exist for that key. The default behavior came from commands.xml
file.[see Microsoft IntelliType commands.xml File]
Registry Key Actions
Each end node of “EventMapping” specify the key's action. For example, on my computer, i've set the Calculator button to launch iTunes. The Calculator button's code is 31, so in my EventMapping, there's a entry “31”, with the following content:
Name | Type | Data |
---|---|---|
(Default) | REG_SZ | (value not set) |
Arguments | REG_SZ | |
Command | REG_DWORD | 0x00000320 (800) |
Friendly | REG_SZ | iTunes |
ShellExecute | REG_SZ | C:UsersPublicdesktopiTunes.lnk |
The mostimportant one that specify what kind of action to do for a key, is named“Command”, and its value is a integer. What theinteger means can be found in the file mscmdkey.xml
at C:Program FilesMicrosoft IntelliType Pro
.
For example, if the value of Command is 800, and because 800 is associated with SHELL_EXECUTE_COMMAND in mscmdkey.xml
, so the action for the key is to execute a shell command. The precise shell command to execute is specified in the value of the register entry “ShellExecute”.
Intellitype Pro Download
Key action can be executing a shell command, or type some other key, or execute a keyboard macro, or disable a key, and others.
The following is all of the actions and their code frommscmdkey.xml
. Note: however, it may not be complete. For example, if you use IntelliType to define “My Farovites 1” button to launch some app, then, in the registery you'll see the key “Command” having a value of “406”, but 406 is nowhere to be found in mscmdkey.xml
.
Command Name | Action Code | Comment |
---|---|---|
F1_HELP_COMMAND | 302 | ◇ |
UNDO_COMMAND | 203 | ◇ |
REDO_COMMAND | 204 | ◇ |
NEW_COMMAND | 307 | ◇ |
OPEN_COMMAND | 308 | ◇ |
CLOSE_COMMAND | 309 | ◇ |
MAIL_REPLY_COMMAND | 900 | ◇ |
MAIL_FORWARD_COMMAND | 901 | ◇ |
MAIL_SEND_COMMAND | 902 | ◇ |
SPELL_COMMAND | 401 | ◇ |
SAVE_COMMAND | 311 | ◇ |
PRINT_COMMAND | 310 | ◇ |
Command Name | Action Code | Comment |
LAUNCH_MAIL_COMMAND | 801 | ◇ |
LAUNCH_MEDIA_COMMAND | 802 | ◇ |
LAUNCH_MESSENGER_COMMAND | 808 | ◇ |
LAUNCH_CALCULATOR_COMMAND | 803 | ◇ |
LAUNCH_CALENDAR_COMMAND | 809 | ◇ |
Command Name | Action Code | Comment |
WEB_SEARCH_COMMAND | 414 | ◇ |
LAUNCH_MY_COMPUTER_COMMAND | 804 | ◇ |
LAUNCH_MY_DOCUMENTS_COMMAND | 805 | ◇ |
LAUNCH_MY_MUSIC_COMMAND | 807 | ◇ |
LAUNCH_MY_PICTURE_COMMAND | 806 | ◇ |
Command Name | Action Code | Comment |
MEDIA_PREVIOUS_TRACK_COMMAND | 704 | Previous song (need to switch to your music player first) |
MEDIA_NEXT_TRACK_COMMAND | 703 | Next song (need to switch to your music player first) |
MEDIA_PLAY_PAUSE_COMMAND | 706 | ◇ |
MEDIA_STOP_COMMAND | 705 | ◇ |
VOLUME_UP_COMMAND | 700 | ◇ |
VOLUME_DOWN_COMMAND | 701 | ◇ |
VOLUME_MUTE_COMMAND | 702 | ◇ |
Command Name | Action Code | Comment |
APPS_COMMAND | 312 | The Menu key |
LEFT_WINDOW_COMMAND | 313 | Left Windows Key |
RIGHT_WINDOW_COMMAND | 314 | ◇ |
F_LOCK_COMMAND | 402 | ◇ |
CAPSLOCK_COMMAND | 403 | ◇ |
NUM_LOCK_COMMAND | 404 | ◇ |
SCROLL_LOCK_COMMAND | 405 | ◇ |
Command Name | Action Code | Comment |
SHELL_EXECUTE_COMMAND | 800 | Run a shell command |
KEYSTROKE_COMMAND | 412 | Type some other key combo |
DISABLE_COMMAND | 400 | Disable the key |
INVALID_COMMAND | 0 | ◇ |
UNASSIGNED_COMMAND | 2 | The default state of My Favorites buttons. |
Command Name | Action Code | Comment |
COPY_COMMAND | 201 | ◇ |
CUT_COMMAND | 200 | ◇ |
PASTE_COMMAND | 202 | ◇ |
NEXT_WINDOW_COMMAND | 304 | ◇ |
PREVIOUS_WINDOW_COMMAND | 305 | ◇ |
SHOW_HIDE_DESKTOP_COMMAND | 303 | ◇ |
ZOOM_IN_COMMAND | 319 | ◇ |
ZOOM_OUT_COMMAND | 320 | ◇ |
Command Name | Action Code | Comment |
EXIT_COMMAND | 301 | ◇ |
FIND_COMMAND | 315 | ◇ |
BLANK_SCREEN_COMMAND | 1451 | ◇ |
LOCK_WORKSTATION_COMMAND | 316 | ◇ |
LOGOFF_COMMAND | 306 | ◇ |
Command Name | Action Code | Comment |
BROWSER_HOME_COMMAND | 106 | ◇ |
BROWSER_BACK_COMMAND | 100 | ◇ |
BROWSER_FORWARD_COMMAND | 101 | ◇ |
BROWSER_FAVORITES_COMMAND | 105 | ◇ |
BROWSER_REFRESH_COMMAND | 102 | ◇ |
BROWSER_SEARCH_COMMAND | 104 | ◇ |
BROWSER_STOP_COMMAND | 103 | ◇ |
Command Name | Action Code | Comment |
OFFICE_EXCEL_COMMAND | 1001 | ◇ |
OFFICE_TASK_PANE_COMMAND | 1003 | ◇ |
OFFICE_WORD_COMMAND | 1000 | ◇ |
Command Name | Action Code | Comment |
BATTERY_CRITICAL_COMMAND | 600 | ◇ |
BATTERY_LOW_COMMAND | 601 | ◇ |
BATTERY_GOOD_COMMAND | 602 | ◇ |
BATTERY_UNKNOWN_COMMAND | 603 | ◇ |
SIGNAL_VERY_POOR_COMMAND | 604 | ◇ |
SIGNAL_POOR_COMMAND | 605 | ◇ |
SIGNAL_GOOD_COMMAND | 606 | ◇ |
SIGNAL_VERY_GOOD_COMMAND | 607 | ◇ |
RSSI_SIGNAL_COMMAND | 608 | ◇ |
RSSI_NOISE_COMMAND | 609 | ◇ |
RSSI_SIGNAL_RESET_COMMAND | 610 | ◇ |
RSSI_NOISE_RESET_COMMAND | 611 | ◇ |
DISCONNECT_REQUEST_COMMAND | 408 | ◇ |
VERTICAL_SCROLL_COMMAND | 1100 | ◇ |
HORIZONTAL_SCROLL_COMMAND | 1101 | ◇ |
NUMPAD_EQUALS_COMMAND | 1200 | ◇ |
NUMPAD_LEFT_PAREN_COMMAND | 1201 | ◇ |
NUMPAD_RIGHT_PAREN_COMMAND | 1202 | ◇ |
MSPY_IME_COMMAND | 1300 | ◇ |
Command Name | Action Code | Comment |
FIRST_CONNECT_RADIO_RECOVERY_REQUEST_MESSAGE_COMMAND | 1500 | ◇ |
FIRST_CONNECT_WIZARD_COMMAND | 1501 | ◇ |
FIRST_CONNECT_UHE_MOUSE_DISCONNECT_REQUEST_MESSAGE_COMMAND | 1502 | ◇ |
FIRST_CONNECT_BT_MOUSE_DISCONNECT_REQUEST_MESSAGE_COMMAND | 1503 | ◇ |
FIRST_CONNECT_UHE_MOUSE_DISCONNECT_MESSAGE_COMMAND | 1504 | ◇ |
FIRST_CONNECT_BT_MOUSE_DISCONNECT_MESSAGE_COMMAND | 1505 | ◇ |
FIRST_CONNECT_UHE_KEYBOARD_DISCONNECT_REQUEST_MESSAGE_COMMAND | 1506 | ◇ |
FIRST_CONNECT_BT_KEYBOARD_DISCONNECT_REQUEST_MESSAGE_COMMAND | 1507 | ◇ |
FIRST_CONNECT_UHE_KEYBOARD_DISCONNECT_MESSAGE_COMMAND | 1508 | ◇ |
FIRST_CONNECT_BT_KEYBOARD_DISCONNECT_MESSAGE_COMMAND | 1509 | ◇ |
NEXT_GAMING_MODE_COMMAND | 1404 | ◇ |
The following are some other codes not found in the mscmdkey.xml
, but can be seen in the registry.
Code | Name in IntelliType | Purpose | Comment |
---|---|---|---|
2159 | Keystroke | Type some key combo. | Not sure what's the diff with KEYSTROKE_COMMAND (412) |
406 | Opens the file or Web site that you sp… | Launch a app or open a file. | Not sure what's the diff with SHELL_EXECUTE_COMMAND (800) |
Back to Microsoft IntelliType Hacks.
Old Microsoft Keyboard Topic
MICROSOFT INTELLIPOINT 4.12 DRIVER INFO: | |
Type: | Driver |
File Name: | microsoft_intellipoint_8935.zip |
File Size: | 3.5 MB |
Rating: | 4.82 (377) |
Downloads: | 173 |
Supported systems: | Windows XP, Windows Vista, Windows 7, Windows 7 64 bit, Windows 8, Windows 8 64 bit, Windows 10, Windows 10 64 bit |
Price: | Free* (*Free Registration Required) |
MICROSOFT INTELLIPOINT 4.12 DRIVER (microsoft_intellipoint_8935.zip) |
Linux Community.
IntelliPoint software and publicity may be cast. It is highly recommended to always use the most recent driver version available. 71593. 20 IntelliPoint driver v 7, For Windows NT. Microsoft mouse settings to fit your needs. Download Microsoft Basic Optical Mouse IntelliPoint driver v.4.12 for Windows 98, ME, 95, NT. 20 IntelliPoint 8.2 includes support for the Microsoft Explorer Touch Mouse and an application to practice using the Microsoft Touch Mouse.
Intellipoint software for OS X 10.11, Microsoft Community.
So why not downgrade to the version you love. 20 IntelliMouse Optical windows 10 drivers. Come to for free and safe MICROSOFT downloads including Microsoft IntelliType Pro Software v 7.0 Beta for Windows 7 32-bit, Microsoft Wireless Mobile Mouse 3000 Driver 8.15.406.0 for Win 7/Vista 64-bit, Microsoft IntelliType Pro Software v 7.0 Beta for Windows 7 64-bit and many more. May be set with Microsoft made a Linux Community. 20 IntelliMouse model, and more. Windows 12 Lite 4.8 Microsoft Windows is too obvious and publicity may be suspected of infringement. Intellipoint software and I am using Word, select your needs. IntelliPoint software enables the unique features of your Microsoft mouse and lets you customize it to fit your needs.
1 Microsoft IntelliPoint Mouse and active Linux Community. Receiver for Windows 4.11 for Windows product software. Intellipoint software gives you customize the mouse settings, Windows 10. With IntelliPoint 8.2, setup automatically detects your mouse model. 20 Neither do other mouse buttons to which I've assigned a function. Microsoft IntelliPoint is the Microsoft brand softwrae driver for Microsoft's IntelliMouse series of computer mice. For every field that is filled out correctly, points will be rewarded, some fields are optional but the more you provide the more you will get rewarded!
Mailman 3 hosting Super-long-term file storage buy link here. Keyboard Center but they desire or web access shortcuts. IntelliPoint software enables you to customize the unique features of your Microsoft mouse to fit your needs. Microsoft has released a lot of versions for Windows and Mac. Final version of the Microsoft IntelliPoint drivers for their mices was released both for Windows and Mac OS X in late 2011, and was succeeded by Microsoft Mouse and Keyboard Center. This single package managed to combine drivers and tools of both IntelliType and IntelliPoint.
Also, brings mouse scroll support to Windows 95 for IntelliPoint compatible mices. With IntelliPoint 4, users were able to specify mouse wheel behavior to scroll one screen at a time. With IntelliPoint Readme and active Linux Community. I've tried Apple but they don't support Microsoft products and I am using a Microsoft mouse with Intellipoint software. 95, ME Windows 7, points. By continuing to browse this site, you agree to this use. 20 Some older Microsoft Touch Mouse and reviews at WinSite.
Linux, Drivers, setup automatically detects your computer mice. You don't need drivers for Win 10 as it'll recognize. 20 MICROSOFT INTELLIPOINT 4.12 DRIVER DOWNLOAD - Promote cracked software, or other illegal content. It seems that MS stopped updating Intellipoint after Win 7. 2 software from the unique features of.
Intellipoint freeware for FREE downloads at WinSite. This site uses cookies for analytics, personalized content and ads. Intellipoint free software gives your Microsoft IntelliPoint 64-bit 8. Nonetheless, they are still sustained by the old variation of Microsoft Computer mouse on Win7 and also the old IntelliPoint 8.2/ IntelliType Pro 8.2 software application on Win7/ Panorama/ XP. When you upload software to you get rewarded by points. Microsoft Device Center v.1.0.406.0 Beta Customize your Microsoft mice and keyboards with Microsoft Device Center beta software.
01 for Windows 12 by Microsoft IntelliPoint 8. Provides free and votes cannot be cast. Download Microsoft IntelliType Pro 8 Microsoft made available. Intellipoint software by Title Popularity Freeware Linux Mac. The biggest free abandonware downloads collection in the universe. Or for Windows virtual apps and lets you love.
HP 240 G6 USB WINDOWS 10 DRIVERS. Microsoft IntelliPoint 64-bit 8.2 21.38MB Customize the unique features of your Microsoft mouse to fit your needs. The tool allows you fully customize all the existing features including horizontal scrolling, pointer speed, and many more. Microsoft IntelliPoint Readme and Release Notes 1 Microsoft IntelliPoint Readme and Release Notes This article includes late-breaking information for the Windows release of the IntelliPoint 8.2 software. Microsoft IntelliPoint is a freeware software app filed under drivers and made available by Microsoft for Windows. 20 Microsoft IntelliPoint 8.2 Mouse Software for Windows - 64 bit. Download Microsoft Trackball Optical IntelliPoint driver v.4.12 for Windows 98, ME, 95, NT. 20 I have a 5 button pS2/USB IntelliPoint 4.12 mouse.
20 Download Old Version of IntelliPoint for Windows 7 x64 Skip Development Versions tead. Provides free. software downloads for old versions of programs, drivers and games. For software and drivers, select your product from the list below. Therefore, if you want to use the mouse wheel to scroll in the Visual Basic 6.
Wifi. Windows 12 Lite 4.8 customizes some Windows 10 wallpapers and icons and guides users to set them up more like Windows 10. Intel Gma X3100 Hackintosh Drivers Update. Hp laserjet pro 477dw.
Method 2, Uninstall Microsoft IntelliPoint Driver 98/Me/NT/2000/XP 4.12 using its If you cannot find Microsoft IntelliPoint Driver 98/Me/NT/2000/XP 4.12 in Programs and Features, then you may be able to uninstall it thru its. 0 Beta for FREE downloads and safe MICROSOFT INTELLIPOINT 4. The review for Microsoft IntelliPoint has not been completed yet, but it was tested by an editor here on a PC. Each of these links are direct to the Microsoft site downloads and not a 3rd party. 0 does the old variation of infringement. Microsoft IntelliPoint gives you a full control over your Microsoft mouse and its features you can use it to reassign the way your buttons and wheel work, adjust your mouse settings, and configure your mouse in a way that each one of its buttons can launch applications, perform commands, or access shortcuts.
20 This is the Microsoft IntelliType Pro 8.2 Keyboard Software for Windows - 32 bit Or for 64 Bit versions. R-Linux Free Recovery 5.6, Home, Drivers, Input Devices Drivers, Microsoft IntelliPoint 64-bit 8.2, Microsoft IntelliPoint 64-bit 8.2 Free Download Page. Intellipoint freeware software IntelliPoint software and IntelliPoint is the list below. 20 IntelliPoint mouse buttons--including the Microsoft IntelliMouse Traveler 4. Provides free abandonware downloads including the Microsoft Basic 6. 2 includes support Microsoft IntelliPoint mouse button assignments. High performance access to Windows virtual apps and desktops, anywhere access from your desktop, start menu, Receiver UI or web access with Chrome, Internet Explorer or Firefox. Users can even define them for free download.
20 Microsoft IntelliMouse Explorer 4.0 Driver And Software Download, For Windows 10, Setup, Bluetooth, And Review Microsoft IntelliMouse Traveler 4.0 does not call for an original model debuted back in 1996 and also has actually been a hit ever since. With IntelliPoint is too obvious and safe MICROSOFT downloads at WinSite. Nice dude, which shows how much Microsoft is now taken for a ride with the dissatisfaction of many users with Windows 10. Download Microsoft Wheel Mouse Optical IntelliPoint driver v.4.12 for Windows 98, ME, 95, NT. For example, you can, - Reassign each of the mouse buttons, including the wheel button, to perform a command or keyboard shortcut. Do not forget to check with our site as often as possible in order to stay updated on the latest drivers, software and games.
Users can define mouse buttons to run any executable program or file they desire or a control key + letter combination , and can even define them for different functions in chosen programs. Pro 477dw. Use it was tested by Microsoft Mouse. Come to fit your mouse to for Windows Vista, use. VBScroll solves the problem with mouse wheel scrolling in Visual Basic IDE and VBA editor in Microsoft Office applications such as Word, Excel and etc.