3

My Macbook Air 13" (macOS 10.13.6) has a USB problem which triggers a warning notification every five minutes:

USB Accessories Disabled

Looking in the Console, I see lots of "overcurrent detected" warnings; testing the two USB ports shows that the left one seems dead while the right one works. Visually, the left port is fine; no schmutz that might be causing problems.

Clearly I'm going to have to replace the left USB port (actually the I/O board), but in the meantime is there any way to disable this specific notification? (I really don't need both USB ports; if I could stop the messages I would probably skip fixing the hardware.)

Edit: I wasn't clear: these messages appear even when nothing is plugged into either USB port.

1 Answers1

3

Have you tried...

This applescript will close them for you. Paste it into Script Editor and then Save as an application. Then grant access to that application in (System Preferences > Security & Privacy > Accessibility) Then you can use an application like ControlPlane https://www.controlplaneapp.com/ to run the application on wake thus closing them all automatically! ** Note: You will need to grant Accessibility access to ControlPlane as well.

tell application "System Events"
tell process "NotificationCenter"
    set numwins to (count windows)
    repeat with i from numwins to 1 by -1
        tell window i
            set temp to value of static text 1
        end tell
        if temp contains "USB Accessories Disabled" then
            click button "Close" of window i
        end if
    end repeat
end tell
end tell

From How do I disable this message: "the disk was not ejected properly"?

This will need some tweaking to close the window you are looking for maybe a cron job or something similar but it might be a step in the right direction.

anki
  • 11,753
  • 1
    Obviously the OP will need to amend the code to change the string it's looking for to determine whether or not to close the window. Perhaps replacing Disk Not Ejected Properly with USB Accessories Disabled. – Monomeeth Jul 22 '19 at 06:39
  • Thanks for the answer; I'll check whether it works soon. (And boy! do I hate AppleScript... it's right down there with Perl, although for very different reasons...) – Daniel Griscom Jul 22 '19 at 12:21
  • Is ControlPlane still recommended? The website is not online anymore, and the github repo (https://github.com/dustinrue/ControlPlane) hasn't been updated for a couple of years and it looking for a maintainer. – northben Dec 06 '21 at 21:29