Connect Port Devices Driver



If the device is not yet connected, first install the device-specific driver, such as by using the appropriate installer. After the device-specific driver is installed, Windows 10 will select that driver instead of the standard USB audio 2.0 driver when you first connect the device. First, connect your Android device to the Windows PC’s USB port. Then right-click on ‘Computer‘ and select ‘Manage‘. Select Devices in the left pane. Double-click on ‘Other device‘ in the right pane to expand it. Right-click on the device name (e.g. Google Pixel) and select the ‘Update Driver‘ option.

Connect your Android device to your computer's USB port. Windows tries to install the driver software. If it fails with a 'No Driver Found' error, proceed to the next step. Right-click Computer on the desktop or Windows Explorer, and select Manage. Select Device Manager in the left pane of the Computer Management window. If you took time to download a movie, save time afterwards. Just connect, select, and play. Connect an HDMI cable (with an adapter, if necessary) into your computer, and connect the other end into the desired HDMI IN port on the TV. Make sure the cable is properly attached. Then, use the remote to navigate to Home, and then select Source.

If your computer doesn't recognize your connected device, you might see an unknown error or a '0xE' error. If you do, follow these steps and try to connect your device again after each step:

  1. Make sure that your iOS or iPadOS device is unlocked and on the Home screen.
  2. Check that you have the latest software on your Mac or Windows PC. If you're using iTunes, make sure you have the latest version.
  3. Make sure that your device is turned on.
  4. If you see a Trust this Computer alert, unlock your device and tap Trust.
  5. Unplug all USB accessories from your computer except for your device. Try each USB port to see if one works. Then try a different Apple USB cable.*
  6. Restart your computer.
  7. Restart your device:
  8. Try connecting your device to another computer. If you have the same issue on another computer, contact Apple Support.

For more help, follow the steps below for your Mac or Windows PC.


* Learn how to connect iPad Pro (11-inch) or iPad Pro 12.9-inch (3rd generation) to your computer.

If you use a Mac

  1. Connect your iOS or iPadOS device and make sure that it's unlocked and on the Home screen.
  2. On your Mac, hold down the Option key, click the Apple menu, and choose System Information or System Report.
  3. From the list on the left, select USB.
  4. If you see your iPhone, iPad, or iPod under USB Device Tree, get the latest macOS or install the latest updates. If you don't see your device or still need help, contact Apple Support.

If you use a Windows PC

The steps differ depending on if you downloaded iTunes from the Microsoft Store or from Apple.

If you downloaded iTunes from the Microsoft Store

Follow these steps to reinstall the Apple Mobile Device USB driver:

  1. Disconnect your device from your computer.
  2. Unlock your iOS or iPadOS device and go to the Home screen. Then reconnect your device. If iTunes opens, close it.
  3. Click and hold (or right-click) the Start button, then choose Device Manager.
  4. Locate and expand the Portable Devices section.
  5. Look for your connected device (such as Apple iPhone), then right-click on the device name and choose Update driver.
  6. Select 'Search automatically for updated driver software.'
  7. After the software installs, go to Settings > Update & Security > Windows Update and verify that no other updates are available.
  8. Open iTunes.

If you downloaded iTunes from Apple

Follow these steps to reinstall the Apple Mobile Device USB driver:

  1. Disconnect your device from your computer.
  2. Unlock your iOS or iPadOS device and go to the Home screen. Then reconnect your device. If iTunes opens, close it.
  3. Press the Windows and R key on your keyboard to open the Run command.
  4. In the Run window, enter:
    %ProgramFiles%Common FilesAppleMobile Device SupportDrivers
  5. Click OK.
  6. Right-click on the usbaapl64.inf or usbaapl.inf file and choose Install.
    You might see other files that start with usbaapl64 or usbaapl. Make sure to install the file that ends in .inf. If you’re not sure which file to install, right-click a blank area in the File Explorer Window, click View, then click Details to find the correct file type. You want to install the Setup Information file.
  7. Disconnect your device from your computer, then restart your computer.
  8. Reconnect your device and open iTunes.

If your device still isn't recognized

Check Device Manager to see if the Apple Mobile Device USB driver is installed. Follow these steps to open Device Manager:

  1. Press the Windows and R key on your keyboard to open the Run command.
  2. In the Run window, enter devmgmt.msc, then click OK. Device Manager should open.
  3. Locate and expand the Universal Serial Bus controllers section.
  4. Look for the Apple Mobile Device USB driver.

If you don't see the Apple Mobile Device USB Driver or you see Unknown Device:

  • Connect your device to your computer with a different USB cable.
  • Connect your device to a different computer. If you have the same issue on another computer, contact Apple Support.

If you see the Apple Mobile Device USB driver with an error symbol:

If you see , , or next to the Apple Mobile Device USB driver, follow these steps:

  1. Restart the Apple Mobile Device Service.
  2. Check for and resolve issues with third-party security software, then restart your computer.
  3. Try to install the usbaapl64.inf or usbaapl.inf file again.
Sponsored By

I hope that this blog post is found and helps someone. I wasn't sure what to title it. Hope Google Juice got you here!

Read this whole post, there's a lot initially but there's really just two or three small pieces. It'll be worth it because you'll be able to have a nice one click menu and drop directly into a serial port terminal on Windows in the Windows Terminal

Connect Port Devices Driver

Often when you're doing embedded systems development you'll want to monitor or talk to the COM/Serial Port just like you SSH into remote system. Folks ask questions like 'How to connect to a serial port as simple as using SSH?'

On Linux you'll use things like 'screen /dev/ttyS0' for COM0. With Windows, however, the historical guidance has always been to use Putty. It'll work but it's somewhat old, quirky, and it doesn't integrate well with the Windows Terminal and a more modern workflow.

Say I have a small embedded microcontroller device that talks over a COM Port (usually via a USB->COM bridge) like an Arduino.

Let's assume this device talks to the COM port as if it were a terminal and it's outputting stuff I want to see. I'll use this great little CLI example app for Arduino from Mads Aasvik to simulate such a device.

Here's what it looks like under Arduino's Serial Monitor, for example. This is a Windows app doing serial communication with its own interface wrapping around it. I want to do this at a command line, and bonus points if it's in Windows Terminal.

Setup WSL1

If you have Windows 10 you can the Windows Subsystem for Linux quickly with this command at a Admin prompt:

Then go to the Windows Store and get any small Linux. Ubuntu or Kali will do for our purposes. Run it and set your user and password. (I tried Alpine but it still has issues with screen and /dev/null/utmp)

NOTE: If you are using WSL2 and have set it as default, run wsl --list -v and ensure that your new distro is using WSL1 as only WSL1 will let us talk to the COM Ports. You can change it to WSL1 with 'wsl --set-version DISTRONAME 1' from any command prompt.

To test this out now, run your new distro from any command line prompt like this. Add the 'screen' app with sudo apt update' and 'sudo app install screen'.

You can see here that my Arduino serial device is on COM4. On Linux that device is /dev/ttyS4

That means that I should be able to talk it from any WSL1 Linux Distro on Windows like 'screen /dev/ttyS4 9600' where 9600 is the speed/baud rate.

Get Minicom on your WSL1 distro

Port

Screen is somewhat persnickety for Serial Port work so try Minicom. Minicom is a nice little text com program. Install with apt install minicom and run for the first time with 'sudo minicom -s' to set your default. Note I've change the default port from /dev/modem to /dev/ttyS4 and the speed, in my case, to 9600.

Then I hit enter and save settings as the dft (default) in minicom. You can also turn on Local Echo with 'Ctrl-A E' and toggle it if needed. Now I can talk to my Arudino with minicom.

Ensure dialout permissions to talk to the COM port

NOTE: If you get 'cannon open /dev/ttyS4: Permission denied, you may need to add your user to the dialout group. This way we don't need to sudo and get no prompt when running minicom!

I can now run minicom on my configured COM port 4 (/dev/ttyS4) with wsl -d DISTRONAME minicom without sudo.

Here I'm talking to that Arduino program. This embedded app doesn't need to me hit enter after I type, so remember your own embedded devices will vary.

Make a nice menu

Connect Port Devices Driver

Bonus points, now I'll add a menu item for Minicom by changing my Windows Terminal settings AND I'll get more points for adding a nice serial port icon!

I hit settings and add a new profile like this at the top under profiles in the 'list.' Again, your distro name will be different.

To review:

  • Use a WSL1 distro
  • Install minicom, run with minicom -s once to make settings
    • Make sure you are using the right /dev/ttyS0 device for your situation
    • Ensure your flow control, baud, etc are all correct in minicom
    • Add your user to the dialout group so you don't have to sudo minicom
  • Make a menu item in Windows Terminal
    • or run minicom manually in your WSL1 instance whenever you like

Connect Port Devices Driver Device

Hope this helps!

Sponsor: Suffering from a lack of clarity around software bugs? Give your customers the experience they deserve and expect with error monitoring from Raygun.com. Installs in minutes, try it today!

About Scott

Connect Port Devices Driver Updater

Scott Hanselman is a former professor, former Chief Architect in finance, now speaker, consultant, father, diabetic, and Microsoft employee. He is a failed stand-up comic, a cornrower, and a book author.

Connect Port Devices Driver


AboutNewsletter