Can't disable touchpad when external mouse connected

Hey guys,
OS: Win7 64Bit
Product : b0p18pa#ab4
Model: dv6-7007tx
The only way i've figured out a way to disable the touchpad is to uninstall the PS/2 compatible mouse in device manager. (which requires a restart) to come into effect and is reinstalled after the next restart afterwards.
the touchpad is SO sensitive it makes it extremely aggrivating to type as i keep tapping  the pad with my palms.
any insight would be fantastic.
cheers guys.

Hi,
Please try:
   Control panel > Mouse > ClickPad Settings
   Tick Disable internal pointing device when .....
   Click Apply
Regards. 
BH
**Click the KUDOS thumb up on the left to say 'Thanks'**
Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

Similar Messages

  • Better solution to disabling touchpad on external mouse connection??

    Hi all,
    I've been playing around with a "clean" solution to disabling the Synaptics touchpad on my laptop - when I connected a USB external mouse OR when the USB mouse is already connected at boot...
    I have a very hacked together solution... First for info the stock "mouse" devices on laptop...
    lrwxrwxrwx 1 root root 0 26.09.2013 12:38 mouse0 -> ../../devices/virtual/input/input6/mouse0/
    lrwxrwxrwx 1 root root 0 26.09.2013 12:38 mouse1 -> ../../devices/platform/i8042/serio4/input/input14/mouse1/
    FYI MCE IR Keyboard/Mouse (ite-cir) and Synaptics touchpad respectively.
    So I have a simple script...
    #! /bin/bash
    username=$(users | gawk '{print $1}')
    export DISPLAY=":0"
    export XAUTHORITY="/home/${username}/.Xauthority"
    if $(lsusb -v | grep -q Mouse); then
    synclient TouchpadOff=1
    else
    synclient TouchpadOff=0
    fi
    exit 0
    that is called by a udev (/etc/udev/rules.d/01-touchpad.rules ) rule...
    ACTION=="add", SUBSYSTEM=="input", KERNEL=="mouse[0-9]", ENV{ID_CLASS}="mouse", PROGRAM="/root/Scripts/mouse_detect.sh"
    ACTION=="remove", SUBSYSTEM=="input", KERNEL=="mouse[0-9]", ENV{ID_CLASS}="mouse", PROGRAM="/root/Scripts/mouse_detect.sh"
    Problem is that solution does not fire when I logout and login again, or boot from cold, into KDM/KDE... My hack to solve this problem was the following (awful!!) systemd unit...
    [Unit]
    Description=Mouse Detect (on Desktop Environment startup)
    After=display-manager.service
    Requires=display-manager.service
    [Service]
    Type=oneshot
    RestartSec=20
    Restart=always
    ExecStart=/root/Scripts/mouse_detect.sh
    [Install]
    WantedBy=graphical.target
    It's stored as mouse-detect.service in /etc/systemd/system ... It fires too early, probably when KDM is active (hence why it auto-restarts every 20 seconds).... Not even sure if it's possible to get the mouse_detect.sh script to work during the KDM Session (as I'm not sure where the Xauthority information is stored for KDM and so on)...
    If I make it the service unit stop on a successful run of synclient (e.g. Restart=onfailure) - it won't every refire - if say I logout and log back into my KDE session!!
    Any thoughts on how to do this more cleanly??
    Given that the current solution works - I was just looking to learn some more - by implementing a less hacked version!! 
    Thanks
    Bob
    Last edited by bobwya (2013-09-26 14:25:52)

    Zamajalo wrote:What about using one simple udev rule? Manual can be found here
    The udev rule falls down when you boot with a USB mouse already attached to the laptop - on boot (as I clearly stated). The rule only detects change of state (mouse attached or detached). Also what if you have 2 USB mice attached?? :-) The udev idea of what a "mouse" is - is also rather generic (e.g. touchpad, infrared remote control are definitely not USB mice!!)
    The script is overkill for running from a udev rule (- although it does have the benefit of not have a hard-coded username). However the script is necessary to test for a mouse being attached - when a KDE session starts. That was basically what my question was about... How to run this script at the start of the KDE session - my use of lsusb is annoying - because it means the script must run as root (due to the verbose flag)... There must be a way to do this as a normal desktop user (and then the script should run OK in a normal autostart desktop script).
    Thanks
    Bob

  • How to disable UltrNav when external mouse connected

    Is there a way to have the UltraNav turned off automatically when an external mouse is connected?
    When typing it’s too easy to inadvertently touch the UltrNav and if you’re not watching find you’re typing in a different location, so we like to turn it off. But when I need to quickly access the laptop I would like to use the UltrNav and not have to find and connect the mouse.
    I can turn it off/on through the control panel/system tray, however it’s near impossible to turn on without a mouse.
    Our users have gotten use to this feature in other laptop brands but according to the Lenovo help desk it’s not available.  

    Hi, GDodman
    Unfortunately, I don't think this option is currently supported on Lenovo Think brands. I did some research on the topic and attempted to change the settings of UltraNav, but was not able to find this function. If you find that UltraNav is too easy to inadvertantly tap while typing, then I would recommend changing the sensitvity to a lower setting to reduce future misclicks and random movements.
    Best of luck,
    Adam
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution!" This will help the rest of the community with similar issues identify the verified solution and benefit from it.

  • Problem with udev rule to disable touchpad when USB mouse connects

    Hi, I've been running Arch on this laptop, but I can't get this udev rule to work properly.
    What I want to happen is: when I plug in my usb mouse, the laptop touchpad is disabled, and the left and right buttons are reversed (I'm left handed)
    After following several tutorials, both from the arch wiki and other sites, I've come up with this udev rule:
    ACTION=="add", SUBSYSTEM=="input", RUN+="/usr/local/bin/USBMouse.sh"
    ACTION=="remove", SUBSYSTEM=="input", RUN+="/usr/local/bin/USBMouse.sh"
    And here's the script it links to (USBMouse.sh):
    #!/bin/bash
    export DISPLAY=:0.0
    synclient TouchPadOff=$(/usr/bin/lsusb | grep "Microsoft Corp.\
    Nano Transceiver v1.0 for Bluetooth" | wc -l)
    if [[ $(/usr/bin/lsusb | grep "Microsoft Corp.\
    Nano Transceiver v1.0 for Bluetooth" | wc -l) == 1 ]]
    then
    xmodmap -e 'pointer = 3 2 1'
    fi
    if [[ $(/usr/bin/lsusb | grep "Microsoft Corp.\
    Nano Transceiver v1.0 for Bluetooth" | wc -l) == 0 ]]
    then
    xmodmap -e 'pointer = 1 2 3'
    fi
    Running the script from a terminal returns no errors and works as expected. The problem is when I plug/unplug the mouse from the usb port, nothing happens.
    I appreciate any insight you might have about how to fix this, and thank you in advance

    This has already been done. And another relevant thread.

  • Satellite Pro A300 - Cursor constantly moves when external mouse connected

    Hi there
    I have a Satellite Pro A300. When I attach a mouse directly by USB the cursor is constantly moving. I also have a mouse attached via a Toshiba docking station and that works perfectly.
    It doesn't matter which USB port I use or whether the laptop is connected to the docking station or not, or whether it is running on mains or battery power.
    I thought it was the mouse that was the problem so I went and bought a new one but the problem is persisting.
    Actually, while I have been writing this post, it has stopped doing it and then started again! Very frustrating.
    Can anyone help?
    Thanks
    Susib

    Hi
    How about the touchpad does the cursor moves and jumps using the touchpad?
    Try to disable the touchpad while using the USB mouse check if you can notice a difference
    How about BIOS?
    Do you have the latest version installed?
    Check this!

  • How to disable touchpad when usb mouse in on HP ENVY dv7-7259nr Notebook PC‏ using Windows 7

    I would like to have my touch pad disabled when using my USB mouse or otherwise be able to manually disable it.  It is a pain to use when typing with the touch pad enabled but I would like to use the touch pad on occasions such as when I am traveling or if my mouse goes out. Not to mention, I would need to re-enable the touh pad if for some reason I have no mouse (keyboard shortcut?)
    I am using windows 7 on my HP ENVY dv7-7259nr Notebook PC‏

    This is what it looks like. 
    You should consider returning you notebook to the Windows 8 OS. There are many new features that it has that Windows 7 never did. Download use the free open source software called classic shell to give yourself a start button in Windows 8 that even has more features than Windows 7 start buton does. Once you use Windows 8 for a while you will enjoy it, especially the refresh feature and lower memory use. 
    I wouldn't hold my breath waiting for Windows 7 drivers.
    regards,
    erico
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

  • Option to disable UltraNav (touchpad + trackpoint) when external mouse is connected

    I grabbed the 5/2011 drivers for UltraNav from the Lenovo site and it appears that an option 'to disable the integrated pointing devices when an external pointing device is present' does not exist, or at the very least I can't easily find it.  Please please please please tell me I'm simply being dense and this behavior is very easy to enable.
    Seriously, the 5-year old Dell drivers I had with my old machine did that, and this is driving me BONKERS.
    Alternatively, if what I'm doing here is feature-requesting, I'd be like 50% there if I could Fn+F8 and have an option to kill both the touchpad and the trackpoint - alas, I can disable 1 or the other BUT NOT BOTH WITH THAT OPTION.  Can I really not disable both?
    Lenovo W520, Windows 7 Professional 64-bit.

    Even though it passed some time from first post I'm writing a solution for auto disabling UltraNav touchpad and trackpoint when external mouse is connected.
    I have Lenovo L530 that doesn't have shortcut on keyboard to disable Elantech touchpad so after a driver update (from about 20 March 2013) I tried to find a solution again -now with success.
    To auto disable touchpad when external mouse is connected you have to set value in registry editor here is procedure (for Windows 7 procedure for other Windows editions is similar or same):
    Click Windows type in regedit and run it.
    Navigate to HKEY_CURRENT_USER\Software\Elantech\OtherSetting. (If you can't find Elantech\OtherSetting in HKEY_CURRENT_USER navigate to HKEY_LOCAL_MACHINE\Software\Elantech\OtherSetting.)
    Find DisableWhenDetectUSBMouse double click it and change value (from 0) to 1, hit OK.
     (If you don't have DisableWhenDetectUSBMouse in Elantech\OtherSetting create new DWORD with name DisableWhenDetectUSBMouse and set value to 1.)
    Restart computer.
    I hope someone still find this helpful.

  • HT1491 Hi, i have recently brought some tv shows on my ipod touch. I can only watch them when i'm connected to the internet.............why? Also is it possible to move them to my music folder? Thanks

    Hi, I have recently brought some tv programmes from itunes on my ipod touch. I can only watch them when i'm connected to the internet though. Any way i can move them to my music folder too? Thanks

    That means it is not fully downloaded so you are streaming it. Fully download it.

  • How can i access web when i am connected through a proxy?

    HI,
    I am rakesh from bangalore. I want to know how can i access web when i am connected to internet throug a proxy. are there any classes to handle this in java.net package?
    Thanking you
    Rakesh

    the URL class can also handle a proxyserver.
    URL urlobj = new URL("http", proxyhost, proxyport, url);

  • Problem disabling touchpad when mouse present

    Hi,
    I looked on the wiki to find out how to disable the touchpad on my laptop when a USB mouse is present. I configured xorg.conf in the correct way, then I added the following udev rules as instructed:
    ACTION=="add", SUBSYSTEM=="input", ID_CLASS="mouse", RUN+="/usr/bin/synclient TouchpadOff=1"
    ACTION=="remove", SUBSYSTEM=="input", ID_CLASS="mouse", RUN+="/usr/bin/synclient TouchpadOff=0"
    This works to an extent, insofar as when I have a running system with X working the touchpad is disabled and enabled when the mouse is plugged in or removed respectively. However, when I boot the machine with a mouse attached, X starts up and both devices are enabled. The reason for this is twofold:
    1. synclient will not work properly when the X server is not running
    2. An "add" action is not generated for the device unless you actually plug it in on a running system
    Is there any way to detect the presence of the USB mouse on boot and disable the touchpad? It would be much cooler if this could be done without looking for specific device names like /dev/input/mouse0, mouse1 etc. because then we will have a solution that works for everyone that we can put on the wiki.

    OK, so this is just a skeleton of a possible solution...  Assuming that it is a USB mouse that we're talking about...  Run "lsusb and check the ID number of the mouse (it should look something like "07aa:2501", for example).  Write a little script which looks something like this:
    #!/bin/sh
    lsusb | grep -q 07aa:2501
    if [ "$?" -eq "0" ]
    then
    /usr/bin/synclient TouchpadOff=1
    fi
    Change "07aa:2501" to the ID of your mouse, of course.  The script checks if the mouse is connected and if it is it disables the touchpad; if mouse is not connected then nothing happens.  I haven't checked if it works (I have no mouse to try it with here) but it should work.  Once you save the script and make it executable add it to /etc/rc.local so that it gets executed on every boot.
    EDIT: You're right -- synclient is not going to work if X server is not running, so the rc.local is not a good place to execute that script...  It's not a huge problem -- you should be able to execute it during the start up routine of X (add it to xinitrc, possibly with sleep to make sure that X is actually started when the script is executed) or to autostart in gnome/kde (depending on what WM/DE you're using).
    Last edited by fwojciec (2008-02-20 22:46:00)

  • Automatically disabling touchpad when mouse plugged in

    Is there some way for me to configure udev so that, when I plug a USB mouse into my laptop, the laptop's touchpad gets disabled? And reenabled if I pull the mouse? The touchpadd can be a PITA when I am typing ... a slight brush of the thumb can cause a "mouse click" often moving my cursor location.
    Mark

    See the manpage of udev, quote:
    After device node creation, removal, or network device  renaming,  udev
           executes  the programs located in the directory tree under /etc/dev.d/.
           The name of a program must have the suffix .dev to be recognized.
           In addition to the hotplug environment variables, UDEV_LOG  is  set  if
           udev  is  configured  to use the syslog facility. Executed programs may
           want to follow that setting.  DEVNAME is exported to make the  name  of
           the  created node, or the name the network device is renamed to, avail-
           able to the executed program.  The  programs  in  every  directory  are
           sorted in lexical order, while the directories are searched in the fol-
           lowing order:
           /etc/dev.d/$(DEVNAME)/*.dev
           /etc/dev.d/$(SUBSYSTEM)/*.dev
           /etc/dev.d/default/*.dev

  • L3000-N100 - Disable touchpad when typing?

    I have a Lenovo 3000 N100 with Windows Vista.  I want to disable the touchpad when using a USB mouse. The touchpad does not show up in the control panel under 'mouse'.  There is no button anywhere near the touchpad.  There is no function key with a mouse or touchpad symbol visible on it.  There are 4 buttons on the top right, 3 control volume, and the 4th one looks like an orange suitcase with a wrench, but it doesn't appear to do anything.  I've searched forums,  but can't find a solution.  Can anybody tell me how I can disable the touchpad to stop the cursor from jumping all over when I'm typing?  Thanks!!!
    Solved!
    Go to Solution.

    Hi griffraser,
    You should have a Synaptics touchpad.  Try going into Control Panel, Device Manager and at the top of the window, click view.  Then click "Show hidden devices".  Then click Mice and other pointing devices and see if the touchpad shows up in there. If it does, right click it and then click disable.
    Do you not have an icon for the touchpad in your taskbar on the right side?
    Edit:  If you don't, you should be able to go back into Control Panel and click Taskbar and Start Menu and then click Customize in the Notification area window. I always have the "Always show all icons and notifications on the taskbar" checked, but if you don't, you can click on the "Show icon and notifications' to the right of the touchpad and the icon for the touchpad should show up in the taskbar.  It's easy  to disable it from the taskbar then. 
    Regards,
    Dave
    T430u, x301, x200T, x61T, x61, x32, x41T, x40, U160, ThinkPad Tablet 1838-22R, Z500 touch, Yoga Tab 2 Windows 8.1, Yoga Tablet 3 Pro
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!
    If someone helped you today, pay it forward. Help Someone Else!
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • Udev rule to disable touchpad when usbmouse is used [solved]

    Hello guys,
    I tried the udev-rule from the wiki to disable/enable touchpad when my usbmouse is plugged/unplugged.
    Here is the rule:
    #/etc/udev/rules.d/01-touchpad.rules
    ACTION=="add", SUBSYSTEM=="input", ENV{ID_CLASS}="mouse", RUN+="/usr/bin/synclient TouchpadOff=1"
    ACTION=="remove", SUBSYSTEM=="input", ENV{ID_CLASS}="mouse", RUN+="/usr/bin/synclient TouchpadOff=0"
    The problem is that the status of my touchpad won't change when I plug/unplug my mouse. It has to be a problem with the rule because manually the synclient command works without any problem.
    Here is the relevant output of lsusb:
    Bus 007 Device 012: ID 046d:c00c Logitech, Inc. Optical Wheel Mouse
    Thank you.
    Last edited by orschiro (2010-03-18 15:15:10)

    Hello Coacher,
    I did what you said but have no idea what to do with that logfile. I'll better post it here. Perhaps you could help me again.
    monitor will print the received events for:
    UDEV - the event which udev sends out after rule processing
    KERNEL - the kernel uevent
    KERNEL[1268568009.445312] remove /devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/input/input14/mouse2 (input)
    UDEV_LOG=0
    ACTION=remove
    DEVPATH=/devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/input/input14/mouse2
    SUBSYSTEM=input
    DEVNAME=input/mouse2
    SEQNUM=48167
    MAJOR=13
    MINOR=34
    KERNEL[1268568009.461185] remove /devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/input/input14/event14 (input)
    UDEV_LOG=0
    ACTION=remove
    DEVPATH=/devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/input/input14/event14
    SUBSYSTEM=input
    DEVNAME=input/event14
    SEQNUM=48168
    MAJOR=13
    MINOR=78
    KERNEL[1268568009.471273] remove /devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/input/input14 (input)
    UDEV_LOG=0
    ACTION=remove
    DEVPATH=/devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/input/input14
    SUBSYSTEM=input
    PRODUCT=3/46d/c00c/110
    NAME="Logitech USB Mouse"
    PHYS="usb-0000:00:1d.1-2/input0"
    UNIQ=""
    EV==17
    KEY==70000 0 0 0 0
    REL==103
    MSC==10
    MODALIAS=input:b0003v046DpC00Ce0110-e0,1,2,4,k110,111,112,r0,1,8,am4,lsfw
    SEQNUM=48169
    KERNEL[1268568009.471331] remove /devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/0003:046D:C00C.0001/hidraw/hidraw0 (hidraw)
    UDEV_LOG=0
    ACTION=remove
    DEVPATH=/devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/0003:046D:C00C.0001/hidraw/hidraw0
    SUBSYSTEM=hidraw
    DEVNAME=hidraw0
    SEQNUM=48170
    MAJOR=251
    MINOR=0
    KERNEL[1268568009.472063] remove /devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/0003:046D:C00C.0001 (hid)
    UDEV_LOG=0
    ACTION=remove
    DEVPATH=/devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/0003:046D:C00C.0001
    SUBSYSTEM=hid
    HID_ID=0003:0000046D:0000C00C
    HID_NAME=Logitech USB Mouse
    HID_PHYS=usb-0000:00:1d.1-2/input0
    MODALIAS=hid:b0003v0000046Dp0000C00C
    SEQNUM=48171
    KERNEL[1268568009.472116] remove /devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0 (usb)
    UDEV_LOG=0
    ACTION=remove
    DEVPATH=/devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0
    SUBSYSTEM=usb
    DEVTYPE=usb_interface
    DEVICE=/proc/bus/usb/007/002
    PRODUCT=46d/c00c/610
    TYPE=0/0/0
    INTERFACE=3/1/2
    MODALIAS=usb:v046DpC00Cd0610dc00dsc00dp00ic03isc01ip02
    SEQNUM=48172
    KERNEL[1268568009.473105] remove /devices/pci0000:00/0000:00:1d.1/usb7/7-2 (usb)
    UDEV_LOG=0
    ACTION=remove
    DEVPATH=/devices/pci0000:00/0000:00:1d.1/usb7/7-2
    SUBSYSTEM=usb
    DEVNAME=bus/usb/007/002
    DEVTYPE=usb_device
    DEVICE=/proc/bus/usb/007/002
    PRODUCT=46d/c00c/610
    TYPE=0/0/0
    BUSNUM=007
    DEVNUM=002
    SEQNUM=48173
    MAJOR=189
    MINOR=769
    UDEV [1268568009.596460] remove /devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/input/input14/event14 (input)
    UDEV_LOG=0
    ACTION=remove
    DEVPATH=/devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/input/input14/event14
    SUBSYSTEM=input
    DEVNAME=/dev/input/event14
    SEQNUM=48168
    ID_INPUT=1
    ID_INPUT_MOUSE=1
    ID_VENDOR=Logitech
    ID_VENDOR_ENC=Logitech
    ID_VENDOR_ID=046d
    ID_MODEL=USB_Mouse
    ID_MODEL_ENC=USB\x20Mouse
    ID_MODEL_ID=c00c
    ID_REVISION=0610
    ID_SERIAL=Logitech_USB_Mouse
    ID_TYPE=hid
    ID_BUS=usb
    ID_USB_INTERFACES=:030102:
    ID_USB_INTERFACE_NUM=00
    ID_USB_DRIVER=usbhid
    ID_PATH=pci-0000:00:1d.1-usb-0:2:1.0
    MAJOR=13
    MINOR=78
    DEVLINKS=/dev/char/13:78 /dev/input/by-id/usb-Logitech_USB_Mouse-event-mouse /dev/input/by-path/pci-0000:00:1d.1-usb-0:2:1.0-event-mouse
    UDEV [1268568009.605422] remove /devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/0003:046D:C00C.0001/hidraw/hidraw0 (hidraw)
    UDEV_LOG=0
    ACTION=remove
    DEVPATH=/devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/0003:046D:C00C.0001/hidraw/hidraw0
    SUBSYSTEM=hidraw
    DEVNAME=/dev/hidraw0
    SEQNUM=48170
    MAJOR=251
    MINOR=0
    DEVLINKS=/dev/char/251:0
    UDEV [1268568009.606695] remove /devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/input/input14/mouse2 (input)
    UDEV_LOG=0
    ACTION=remove
    DEVPATH=/devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/input/input14/mouse2
    SUBSYSTEM=input
    DEVNAME=/dev/input/mouse2
    SEQNUM=48167
    ID_INPUT=1
    ID_INPUT_MOUSE=1
    ID_VENDOR=Logitech
    ID_VENDOR_ENC=Logitech
    ID_VENDOR_ID=046d
    ID_MODEL=USB_Mouse
    ID_MODEL_ENC=USB\x20Mouse
    ID_MODEL_ID=c00c
    ID_REVISION=0610
    ID_SERIAL=Logitech_USB_Mouse
    ID_TYPE=hid
    ID_BUS=usb
    ID_USB_INTERFACES=:030102:
    ID_USB_INTERFACE_NUM=00
    ID_USB_DRIVER=usbhid
    ID_PATH=pci-0000:00:1d.1-usb-0:2:1.0
    MAJOR=13
    MINOR=34
    DEVLINKS=/dev/char/13:34 /dev/input/by-id/usb-Logitech_USB_Mouse-mouse /dev/input/by-path/pci-0000:00:1d.1-usb-0:2:1.0-mouse
    UDEV [1268568009.608264] remove /devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/0003:046D:C00C.0001 (hid)
    UDEV_LOG=0
    ACTION=remove
    DEVPATH=/devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/0003:046D:C00C.0001
    SUBSYSTEM=hid
    HID_ID=0003:0000046D:0000C00C
    HID_NAME=Logitech USB Mouse
    HID_PHYS=usb-0000:00:1d.1-2/input0
    MODALIAS=hid:b0003v0000046Dp0000C00C
    SEQNUM=48171
    UDEV [1268568009.609657] remove /devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/input/input14 (input)
    UDEV_LOG=0
    ACTION=remove
    DEVPATH=/devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/input/input14
    SUBSYSTEM=input
    PRODUCT=3/46d/c00c/110
    NAME="Logitech USB Mouse"
    PHYS="usb-0000:00:1d.1-2/input0"
    UNIQ=""
    EV==17
    KEY==70000 0 0 0 0
    REL==103
    MSC==10
    MODALIAS=input:b0003v046DpC00Ce0110-e0,1,2,4,k110,111,112,r0,1,8,am4,lsfw
    SEQNUM=48169
    UDEV [1268568009.611650] remove /devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0 (usb)
    UDEV_LOG=0
    ACTION=remove
    DEVPATH=/devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0
    SUBSYSTEM=usb
    DEVTYPE=usb_interface
    DEVICE=/proc/bus/usb/007/002
    PRODUCT=46d/c00c/610
    TYPE=0/0/0
    INTERFACE=3/1/2
    MODALIAS=usb:v046DpC00Cd0610dc00dsc00dp00ic03isc01ip02
    SEQNUM=48172
    UDEV [1268568009.614119] remove /devices/pci0000:00/0000:00:1d.1/usb7/7-2 (usb)
    UDEV_LOG=0
    ACTION=remove
    DEVPATH=/devices/pci0000:00/0000:00:1d.1/usb7/7-2
    SUBSYSTEM=usb
    DEVNAME=/dev/bus/usb/007/002
    DEVTYPE=usb_device
    DEVICE=/proc/bus/usb/007/002
    PRODUCT=46d/c00c/610
    TYPE=0/0/0
    BUSNUM=007
    DEVNUM=002
    SEQNUM=48173
    ID_VENDOR=Logitech
    ID_VENDOR_ENC=Logitech
    ID_VENDOR_ID=046d
    ID_MODEL=USB_Mouse
    ID_MODEL_ENC=USB\x20Mouse
    ID_MODEL_ID=c00c
    ID_REVISION=0610
    ID_SERIAL=Logitech_USB_Mouse
    ID_BUS=usb
    ID_USB_INTERFACES=:030102:
    MAJOR=189
    MINOR=769
    DEVLINKS=/dev/char/189:769
    KERNEL[1268568012.396622] add /devices/pci0000:00/0000:00:1d.1/usb7/7-2 (usb)
    UDEV_LOG=0
    ACTION=add
    DEVPATH=/devices/pci0000:00/0000:00:1d.1/usb7/7-2
    SUBSYSTEM=usb
    DEVNAME=bus/usb/007/003
    DEVTYPE=usb_device
    DEVICE=/proc/bus/usb/007/003
    PRODUCT=46d/c00c/610
    TYPE=0/0/0
    BUSNUM=007
    DEVNUM=003
    SEQNUM=48174
    MAJOR=189
    MINOR=770
    KERNEL[1268568012.399460] add /devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0 (usb)
    UDEV_LOG=0
    ACTION=add
    DEVPATH=/devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0
    SUBSYSTEM=usb
    DEVTYPE=usb_interface
    DEVICE=/proc/bus/usb/007/003
    PRODUCT=46d/c00c/610
    TYPE=0/0/0
    INTERFACE=3/1/2
    MODALIAS=usb:v046DpC00Cd0610dc00dsc00dp00ic03isc01ip02
    SEQNUM=48175
    KERNEL[1268568012.399649] add /devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/0003:046D:C00C.0002 (hid)
    UDEV_LOG=0
    ACTION=add
    DEVPATH=/devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/0003:046D:C00C.0002
    SUBSYSTEM=hid
    HID_ID=0003:0000046D:0000C00C
    HID_NAME=Logitech USB Mouse
    HID_PHYS=usb-0000:00:1d.1-2/input0
    DRIVER=generic-usb
    MODALIAS=hid:b0003v0000046Dp0000C00C
    SEQNUM=48176
    KERNEL[1268568012.415310] add /devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/input/input16 (input)
    UDEV_LOG=0
    ACTION=add
    DEVPATH=/devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/input/input16
    SUBSYSTEM=input
    PRODUCT=3/46d/c00c/110
    NAME="Logitech USB Mouse"
    PHYS="usb-0000:00:1d.1-2/input0"
    UNIQ=""
    EV==17
    KEY==70000 0 0 0 0
    REL==103
    MSC==10
    MODALIAS=input:b0003v046DpC00Ce0110-e0,1,2,4,k110,111,112,r0,1,8,am4,lsfw
    SEQNUM=48177
    KERNEL[1268568012.415530] add /devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/input/input16/mouse2 (input)
    UDEV_LOG=0
    ACTION=add
    DEVPATH=/devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/input/input16/mouse2
    SUBSYSTEM=input
    DEVNAME=input/mouse2
    SEQNUM=48178
    MAJOR=13
    MINOR=34
    KERNEL[1268568012.415645] add /devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/input/input16/event14 (input)
    UDEV_LOG=0
    ACTION=add
    DEVPATH=/devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/input/input16/event14
    SUBSYSTEM=input
    DEVNAME=input/event14
    SEQNUM=48179
    MAJOR=13
    MINOR=78
    KERNEL[1268568012.415763] add /devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/0003:046D:C00C.0002/hidraw/hidraw0 (hidraw)
    UDEV_LOG=0
    ACTION=add
    DEVPATH=/devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/0003:046D:C00C.0002/hidraw/hidraw0
    SUBSYSTEM=hidraw
    DEVNAME=hidraw0
    SEQNUM=48180
    MAJOR=251
    MINOR=0
    UDEV [1268568012.419223] add /devices/pci0000:00/0000:00:1d.1/usb7/7-2 (usb)
    UDEV_LOG=0
    ACTION=add
    DEVPATH=/devices/pci0000:00/0000:00:1d.1/usb7/7-2
    SUBSYSTEM=usb
    DEVNAME=/dev/bus/usb/007/003
    DEVTYPE=usb_device
    DEVICE=/proc/bus/usb/007/003
    PRODUCT=46d/c00c/610
    TYPE=0/0/0
    BUSNUM=007
    DEVNUM=003
    SEQNUM=48174
    ID_VENDOR=Logitech
    ID_VENDOR_ENC=Logitech
    ID_VENDOR_ID=046d
    ID_MODEL=USB_Mouse
    ID_MODEL_ENC=USB\x20Mouse
    ID_MODEL_ID=c00c
    ID_REVISION=0610
    ID_SERIAL=Logitech_USB_Mouse
    ID_BUS=usb
    ID_USB_INTERFACES=:030102:
    MAJOR=189
    MINOR=770
    DEVLINKS=/dev/char/189:770
    UDEV [1268568012.420120] add /devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0 (usb)
    UDEV_LOG=0
    ACTION=add
    DEVPATH=/devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0
    SUBSYSTEM=usb
    DEVTYPE=usb_interface
    DEVICE=/proc/bus/usb/007/003
    PRODUCT=46d/c00c/610
    TYPE=0/0/0
    INTERFACE=3/1/2
    MODALIAS=usb:v046DpC00Cd0610dc00dsc00dp00ic03isc01ip02
    SEQNUM=48175
    UDEV [1268568012.420621] add /devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/0003:046D:C00C.0002 (hid)
    UDEV_LOG=0
    ACTION=add
    DEVPATH=/devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/0003:046D:C00C.0002
    SUBSYSTEM=hid
    HID_ID=0003:0000046D:0000C00C
    HID_NAME=Logitech USB Mouse
    HID_PHYS=usb-0000:00:1d.1-2/input0
    DRIVER=generic-usb
    MODALIAS=hid:b0003v0000046Dp0000C00C
    SEQNUM=48176
    UDEV [1268568012.421369] add /devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/0003:046D:C00C.0002/hidraw/hidraw0 (hidraw)
    UDEV_LOG=0
    ACTION=add
    DEVPATH=/devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/0003:046D:C00C.0002/hidraw/hidraw0
    SUBSYSTEM=hidraw
    DEVNAME=/dev/hidraw0
    SEQNUM=48180
    MAJOR=251
    MINOR=0
    DEVLINKS=/dev/char/251:0
    UDEV [1268568012.453075] add /devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/input/input16 (input)
    UDEV_LOG=0
    ACTION=add
    DEVPATH=/devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/input/input16
    SUBSYSTEM=input
    PRODUCT=3/46d/c00c/110
    NAME="Logitech USB Mouse"
    PHYS="usb-0000:00:1d.1-2/input0"
    UNIQ=""
    EV==17
    KEY==70000 0 0 0 0
    REL==103
    MSC==10
    MODALIAS=input:b0003v046DpC00Ce0110-e0,1,2,4,k110,111,112,r0,1,8,am4,lsfw
    SEQNUM=48177
    UDEV [1268568012.457340] add /devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/input/input16/mouse2 (input)
    UDEV_LOG=0
    ACTION=add
    DEVPATH=/devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/input/input16/mouse2
    SUBSYSTEM=input
    DEVNAME=/dev/input/mouse2
    SEQNUM=48178
    ID_INPUT=1
    ID_INPUT_MOUSE=1
    ID_VENDOR=Logitech
    ID_VENDOR_ENC=Logitech
    ID_VENDOR_ID=046d
    ID_MODEL=USB_Mouse
    ID_MODEL_ENC=USB\x20Mouse
    ID_MODEL_ID=c00c
    ID_REVISION=0610
    ID_SERIAL=Logitech_USB_Mouse
    ID_TYPE=hid
    ID_BUS=usb
    ID_USB_INTERFACES=:030102:
    ID_USB_INTERFACE_NUM=00
    ID_USB_DRIVER=usbhid
    ID_PATH=pci-0000:00:1d.1-usb-0:2:1.0
    MAJOR=13
    MINOR=34
    DEVLINKS=/dev/char/13:34 /dev/input/by-id/usb-Logitech_USB_Mouse-mouse /dev/input/by-path/pci-0000:00:1d.1-usb-0:2:1.0-mouse
    UDEV [1268568012.457383] add /devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/input/input16/event14 (input)
    UDEV_LOG=0
    ACTION=add
    DEVPATH=/devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/input/input16/event14
    SUBSYSTEM=input
    DEVNAME=/dev/input/event14
    SEQNUM=48179
    ID_INPUT=1
    ID_INPUT_MOUSE=1
    ID_VENDOR=Logitech
    ID_VENDOR_ENC=Logitech
    ID_VENDOR_ID=046d
    ID_MODEL=USB_Mouse
    ID_MODEL_ENC=USB\x20Mouse
    ID_MODEL_ID=c00c
    ID_REVISION=0610
    ID_SERIAL=Logitech_USB_Mouse
    ID_TYPE=hid
    ID_BUS=usb
    ID_USB_INTERFACES=:030102:
    ID_USB_INTERFACE_NUM=00
    ID_USB_DRIVER=usbhid
    ID_PATH=pci-0000:00:1d.1-usb-0:2:1.0
    MAJOR=13
    MINOR=78
    DEVLINKS=/dev/char/13:78 /dev/input/by-id/usb-Logitech_USB_Mouse-event-mouse /dev/input/by-path/pci-0000:00:1d.1-usb-0:2:1.0-event-mouse
    Thank you.

  • Disable Airport when Ethernet is connected

    Hi,
    Please, for the love of all things good can someone help!!!!
    I need Airport to be disabled when the ethernet is connected. I have a large network of macs all bound to OD and all my desktop macs have airport disabled through a group policy. The laptops on the other hand are proving to be a problem. I can disable Airport using OD but when the laptop is disconnected from the network the Airport stays disabled even after a reboot, not good when your a laptop user.
    I've looked at scripts that monitor the ethernet status and disabled Airport when the ethernet is assigned an IP however I can only find scripts for 10.5/10.6 and not 10.7 or 8.
    I'm sure this must be a common situation and something that you should be able to do via OD but I just can't get it to work. I really need to get this sorted asap as after three weeks of trying to get this to work my boss is on my back!!!!! Basically we can't have any wifi connections open or available when connected to our wired network.

    Alas we need to stop users from having the ability to disable their ethernet and use wifi. I did think about removing the pref pane for networking but they need it when out and about.
    I found this which seems to work but does not make Airport active when ethernet is disconnected so I'm halfway there at least.
    http://www.computernetworkbasics.com/2012/12/automatically-turn-off-wireless-in- osx-including-mountain-lion/

  • Volume can't be adjusted when external screen is attached

    After the OS update of Yosemite my volume on my macbook pro can't be adjusted when the external video by HDMI is attached.
    It seems that the control of sound is transferred to the external screen, unfortunately my screen volume can only be set by changing the settings on the screen menu and this is not an friendly task. Also fast muting is than not possible
    No ide to solve this!
    Kind regards,
    Luuk

    Yosemite upgrade changes sound output from default to installed HDMI display speakers. But Mac does not control these speakers. So this issue might happened.
    If you have any external device which is attached with speakers, Mac wants to make that output device.
    Go to System Preferences  -> Sound and change the output device to Internal speakers.

Maybe you are looking for