Microsoft Ergonomic Keyboard 4000 Driver Mac Os X

22.12.2020

According to some studies, ergonomic keyboard designs, such as the Microsoft Natural line, have been associated with significant reduction of carpal tunnel syndrome symptoms. Rest your wrists against the plush palm rest in a relaxed, natural angle with this keyboard’s curved key bed, ergonomic arc, and reversed slope. Microsoft Sculpt Comfort Mouse on MacOS. I was looking for an all-in-one mouse. Audi s4 b8 tune download. After some researches, I ended up buying this Microsoft mouse for my Mac.

The Microsoft Natural Keyboard 4000 is pretty great, but the 'Zoom' slider in the middle never seemed very useful to me - how often do I need to zoom in or out? I scroll much more often than I need to zoom, so it would be nice to remap to scroll instead.

https://nameadvance.weebly.com/blog/lightroom-software-download-for-mac. Microsoft Natural Ergonomic Keyboard 4000 won't work on OS X El Capitan-why? The shortcuts don't work since upgrading to El Capitan on the Microsoft Natural Ergonomic Keyboard 4000, but will work on an Apple keyboard. I've used the Microsoft Natural Ergonomic Keyboard 4000 for years and like the keyboard and I'm used to it. Remapping Zoom on the Microsoft Natural Keyboard 4000 - Mac OS X. Worked pretty fine, 10.8 + MS drivers 9.2. Unknown February 23.


Although Microsoft's control panel lets you remap the special function keys, it doesn't let you change the Zoom slider function. Luckily for Windows users there's a fairly simple xml file that you can edit to change the mapping (and there are plenty of explanations: SuperUser, Josh Highland, Joel Bennett, etc).
Unfortunately, the 'commands.xml' config file doesn't exist on Mac OS X. Instead, there's a binary file for the configuration, which makes it tough to modify:
/Users/YOUR_NAME/Library/Preferences/com.microsoft.keyboard.pref
After a bit of reverse-engineering, I was able to remap the Zoom slider to the UP and DOWN keys (sadly, using the SCROLL mapping doesn't auto-repeat, so UP/DOWN was the best I could do).
Scrolling Instead of Zooming - The Easy Way:
The easiest way to get scrolling instead of zooming is to replace your com.microsoft.keyboard.pref file with a modified version:
  1. Make sure System Preferences is closed
  2. Download the modified pref file: com.microsoft.keyboard.pref
  3. Navigate to /Users/YOUR_NAME/Library/Preferences/
  4. Back up the com.microsoft.keyboard.pref file (e.g. rename it to com.microsoft.keyboard.pref.old)
  5. Move the modified pref file into that folder
  6. Open System Preferences, and open the Microsoft Keyboard preference panel (this causes the pref file to be reloaded)
If you're interested to see how the file was modified (or want to map the Zoom slider to something other than UP/DOWN), keep reading.
How to reverse-engineer the preferences:
Since com.microsoft.keyboard.pref is a binary file, opening it with TextEdit or vim isn't going to be very useful. Instead, take a hex dump of the original configuration:
cd /Users/YOUR_NAME/Library/Preferences
xxd com.microsoft.keyboard.pref > prefsOrig.hex

Now we'll make some key mapping changes and see what parts of the pref file change. I changed the Open and Close buttons to do nothing.
Now we'll take another hex dump and compare the two:
xxd com.microsoft.keyboard.pref > prefMod.hex
diff prefOrig.hex prefMod.hex

which outputs:
182,183c182,183
< 0000b50: 0000 0000 0000 0000 0000 0000 0000 5400
< 0000b60: 0000 0000 0000 0000 0000 0000 0000 0000
---
> 0000b50: 0000 0000 0000 0000 0000 0000 0000 0000
> 0000b60: 0000 ff00 0000 0000 0000 0000 0000 0000
185c185
< 0000b80: 0000 0000 0000 5500 0000 0000 0000 0000
---
> 0000b80: 0000 0000 0000 0000 0000 ff00 0000 0000
Notice the changes:
  1. At 0x0000b5e, value 0x5400000000 becomes 0x00000000ff
  2. At 0x0000b86, value 0x5500000000 becomes 0x00000000ff
It looks like the 0xff signifies 'None' mode, whereas the 0x54 and 0x55 probably specified the Open and Close functions that used to be there.
You can play around with this technique to figure out how the byte values change with different mappings. For example, let's make Open and Close map to zooming in and zooming out. The pref file diff now looks like:
Microsoft ergonomic keyboard 4000 driver mac os x 10.8182,183c182,183
< 0000b50: 0000 0000 0000 0000 0000 0000 0000 5400
< 0000b60: 0000 0000 0000 0000 0000 0000 0000 0000
---
> 0000b50: 0000 0000 0000 0000 0000 0000 0000 0800
> 0000b60: 0000 ff00 0000 0000 0000 0000 0000 0000
185c185
< 0000b80: 0000 0000 0000 5500 0000 0000 0000 0000
---

> 0000b80: 0000 0000 0000 0900 0000 ff00 0000 0000
The changes:
  1. At 0x0000b5e, value 0x5400000000 changes to 0x08000000ff
  2. At 0x0000b86, value 0x5500000000 changes to 0x09000000ff.

The next issue is figuring out which bytes correspond to the Zoom slider's key-mappings. The only control that the GUI provides is enable/disable, zoom speed, and zoom acceleration, so we can mess with those.
If you toggle 'Enable zooming' you get a hex diff that looks like:
82,83c82,83Microsoft Ergonomic Keyboard 4000 Driver Mac Os X
< 0000510: 0000 0000 0000 0000 0000 0000 0000 0800
< 0000520: 0000 0000 0000 0000 0000 0000 0000 0000
---
> 0000510: 0000 0000 0000 0000 0000 0000 0000 0000
> 0000520: 0000 ff00 0000 0000 0000 0000 0000 0000
85c85
< 0000540: 0000 0000 0000 0900 0000 0000 0000 0000
---
> 0000540: 0000 0000 0000 0000 0000 ff00 0000 0000
Notice the similarities to the diff when we changed Open/Close to None:
  1. At 0x000051e, the value 0x0800000000 changes to 0x00000000ff
  2. At 0x0000546, the value 0x0900000000 changes to 0x00000000ff
So it looks like disabling zooming is actually just switching 2 key mappings to None (0x00000000ff) - and now we know where the key mappings for the Zoom buttons are located (0x51e and 0x546)!
Again, we can play around with some other key mappings to figure out the byte values to map keys to the UP and DOWN actions (0x030000007e and 0x030000007d). Now, just apply these values to the prefOrig.hex file, at the addresses we found for the Zoom slider's mappings (0x51e and 0x546):
0000510: 0000 0000 0000 0000 0000 0000 0000 0300
0000520: 0000 7e00 0000 0000 0000 0000 0000 0000
0000530: 0000 0000 0000 0000 0000 0000 0000 0000
0000540: 0000 0000 0000 0300 0000 7d00 0000 0000

Microsoft Ergonomic Keyboard 4000 Driver Mac Os X 10.10


(If you want to make your Zoom slider do something other than UP/DOWN, you can replace 0x030000007e and 0x030000007d with different key mappings)

Microsoft Natural Ergonomic Keyboard 4000 Mac Os X Driver


Finally, convert the modified hex dump back into a binary preference file:

Microsoft Ergonomic Keyboard 4000 Driver Mac Os X El Capitan


Microsoft Ergonomic Keyboard 4000 Driver Mac Os X64

Now open the Microsoft Keyboard settings panel within System Preferences to get the driver to reload the pref file, and you're all done!

Microsoft Ergonomic Keyboard 4000 Driver Mac Os X 10.8

I'm very interested in any replies to Cliff's question. I've reached the point where the motion of reaching over to move the mouse with my right hand causes excruciating pain in my arm. Talk about repetitive motion injuries; I've been using a mouse since they first came out - when - 1980? and I guess I'm about moused out. For now, I've switched the mouse over to the left side, but as I'm right-handed, it's awkward at best.
I have an old Adesso ergonomic keyboard with a touchpad at the bottom that I got about 4 years ago for my Windows-based computer. It solved the problem perfectly. If I get adapter cables to convert the six-pin cables to USB, will I be able to use it? Adesso apparently makes a Mac-compatible ergonomic keyboard but I can't find it to buy it. If I download their Mac driver, do you think it would work?
Any other ideas for an ergonomically designed keyboard with a centered touchpad would be appreciated.
Kathryn Z

Feb 1, 2008 12:03 PM /windows-posready-2009-serial-number.html.