El Capitan and Microsoft Mouse (IntelliPoint) Not Working

Anonymous
2015-09-11T14:32:37+00:00

After installing the El Capitan GM, the forward/back buttons (side buttons, 4 & 5) on my Microsoft Wireless Mouse 5000 are only registering as left mouse buttons. The most recent driver, Microsoft Mouse 8.2 is installed and shows up in the System Preferences, but appears to not be functioning. MicrosoftMouseHelper is in the login items. Suggestions?

[Moved from Community Participation Center]

There is not an appropriate category to post this question to!

Windows for home | Other | Devices and drivers

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

56 answers

Sort by: Oldest
  1. Anonymous
    2016-06-22T21:19:22+00:00

    Not working here.  Disabled SIP and no luck.  Made a script as mentioned by someone and has it launch as an agent and daemon and no luck.  With it running under daemon I couldn't click around, unplugged it and plugged back in and same thing.  If I go into the MS PreferencePane then it works.  Exit out and stop working.  Ugg.....my favorite mouse for years!  Even have a backup incase it fails!....lol

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2016-06-22T22:20:22+00:00

    Ok got it working here.....I was being stupid and setting the left mouse button and right mouse button as forward and backwards.  DUH!

    Here is what I did:

    1. SIP is still enabled and mouse seems to be fine here so far.  Did disable it and re-enabled while testing. 
    2. Below where you see "yourusername" change it to the name of your Home Directory under /Users.
    3. You can name DBMicrosoftMouseHelper.sh anything you want, just make sure you point the Daemon to the correct file below.
    4. Same for com.ptc.DBMicrosoftMouseHelper.plist, it can be named com.whatever.plist.

    First Created Script as mentioned before:

    1. cd /Users/yourusername/Documents
    2. touch DBMicrosoftMouseHelper.sh    (doesn't matter what you name it just keep it the same below)
    3. Added following contents to file using: pico DBMicrosoftMouseHelper.sh 

    #!/bin/bash

    Below should be on one line

    nohup /Library/PreferencePanes/Microsoft\ Mouse.prefPane/Contents/Resources/MicrosoftMouseHelper.app/Contents/MacOS/MicrosoftHelper

    exit

    1. Set Permissions on file:

        chmod 755 /Users/yourusername/Documents/DBMicrosoftMouseHelper.sh

    Second Created a LaunchDaemon as /Library/LaunchDaemons/com.ptc.DBMicrosoftMouseHelper.plist:

    1. cd /Library/LaunchDaemons/
    2. touch com.ptc.DBMicrosoftMouseHelper.plist
    3. Set the correct permissions on the file:

         chown root:wheel /Library/LaunchDaemons/com.ptc.DBMicrosoftMouseHelper.plist

         chmod 644 /Library/LaunchDaemons/com.ptc.DBMicrosoftMouseHelper.plist

    1. Add contents to file using pico com.ptc.DBMicrosoftMouseHelper.plist

    <?xml version="1.0" encoding="UTF-8"?>

    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">

    <plist version="1.0">

    <dict>

     <key>Label</key>

     <string>com.ptc.DBMicrosoftMouseHelper</string>

     <key>ProgramArguments</key>

     <array>

     <string>/Users/yourusername/Documents/DBMicrosoftMouseHelper.sh</string>

     </array>

     <key>RunAtLoad</key>

     <true/>

     <key>KeepAlive</key>

     <true/>

     <key>Disabled</key>

     <false/>

    </dict>

    </plist>

    1. Enable daemon with:

        launchctl load com.ptc.DBMicrosoftMouseHelper.plist

    1. Reboot for the heck of it and it should work.  In the MS PrefPane I hit the Defaults button at the bottom and setup all my buttons again, but I don't think you have to do that.  I was just being stupid with what I did setting the wrong buttons.

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2016-06-22T22:33:37+00:00

    So I just removed the /Library/LaunchDaemons/com.ptc....   file and the mouse is still working after reboot.  Did everyone just try reinstalling the drivers from MS?  

    https://www.microsoft.com/hardware/en-us/d/intellimouse-optical

    I did and had issues still.  I did go in at one point into the Microsoft PrefPane and defaulted the buttons and set them up again. But not sure at what point I messed up the buttons setting the left and right as the back and forward buttons.

    Was this answer helpful?

    0 comments No comments
  4. Anonymous
    2016-11-23T19:20:11+00:00

    I just tried this, typed exactly what you had very carefully and got a whole lot of scary error text in the Terminal window I didn't know how to fix.

    I'm now trying to re-install El Capitan and still have no idea how I'm going to be able to work at my client's studio without a functioning 3D mouse tomorrow.

    I never anticipated this much trouble with such a simple thing!

    Old Intellimouse has always been rock solid!

    Was this answer helpful?

    0 comments No comments
  5. Anonymous
    2016-11-23T19:23:09+00:00

    Drivers seem to have gone from that page.

    Was this answer helpful?

    0 comments No comments