Remember to maintain security and privacy. Do not share sensitive information. Procedimento.com.br may make mistakes. Verify important information. Termo de Responsabilidade

How to Manage External Devices in Windows

External devices, also known as peripheral devices, are essential for enhancing the functionality of your Windows system. These devices can include anything from USB drives, external hard drives, printers, scanners, to various input devices like keyboards and mice. Managing these devices efficiently is crucial for maintaining system performance and ensuring data security. This article will guide you on how to manage and troubleshoot external devices using Windows tools and commands.


Examples:


1. Connecting and Accessing USB Drives:


When you connect a USB drive to your Windows computer, it should automatically be recognized and assigned a drive letter. You can access it via File Explorer. However, if it doesn't appear, you might need to assign a drive letter manually.



  • Open "Disk Management" by right-clicking on "This PC" and selecting "Manage" > "Disk Management".

  • Locate your USB drive, right-click on it, and select "Change Drive Letter and Paths".

  • Click "Add" and assign a new drive letter.


2. Using CMD to List Connected External Drives:


You can use the Command Prompt to list all connected drives, including external ones.


   wmic logicaldisk get name, description

This command will display all logical drives with their descriptions, helping you identify external drives.


3. Safely Removing External Devices:


To avoid data corruption, always safely remove your external devices. You can do this via the system tray or using CMD:



  • Via system tray: Click the "Safely Remove Hardware" icon and choose your device.


  • Via CMD: Use the following command to eject a drive (replace X with the drive letter).


    rundll32\.exe shell32\.dll,Control_RunDLL hotplug.dll

    This command opens the "Safely Remove Hardware" dialog.




4. Troubleshooting External Device Issues:


If a device isn't recognized, try the following steps:



  • Update Drivers: Open "Device Manager", locate your device, right-click, and select "Update driver".

  • Check Connections: Ensure all cables are securely connected.

  • Power Cycle: Disconnect the device, restart your computer, and reconnect the device.


5. Using PowerShell to Get Detailed Device Information:


PowerShell can provide more detailed information about connected devices.


   Get-PnpDevice -PresentOnly | Where-Object { $_.InstanceId -match '^USB' }

This command lists all currently connected USB devices.


To share Download PDF

Gostou do artigo? Deixe sua avaliação!
Sua opinião é muito importante para nós. Clique em um dos botões abaixo para nos dizer o que achou deste conteúdo.