Remover hardware da lista “remover hardware com segurança” no Windows 7

4

Eu tenho uma placa USB (D-Link DWA-125) em um computador com Windows 7 x64. O problema é que a placa aparece na lista "remover hardware com segurança", mas eu nunca quero desconectá-la, então gostaria de removê-la da lista.

Até o momento, encontrei apenas soluções que mexem com o registro (e não funcionam corretamente) ou que substituem o hardware com segurança por um software de terceiros. Ou pior, esconda o ícone completamente. Sim, eu preciso do ícone de drives USB e telefones.

Então, há uma maneira "limpa" de removê-lo da lista?

Obrigado.

    
por Ricardo Smania 02.08.2010 / 16:20

2 respostas

3

A resposta curta é não. Essas configurações são normalmente codificadas no driver. O hack do registro provavelmente funcionará até que você reinicie.

    
por 02.08.2010 / 16:22
1

Possível solução aqui

link

This can be achieved by modifying a registry value. So far I had no time writing a little tool for this...

Devices are shown there if they are marked as removable and if they do no have the 'surprise removal ok' flag. These are bit coded flags:

From cfgmgr32.h:

The device capabilities are found in the registry in a value named 'Capabilities' under (sample for one of my USB flash drives): HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\USB\Vid_058f&Pid_63318F091111B

If you take away 4 from the value or add 80h and then refresh the save removal dialog by toggeling the checkbox, then the drive is gone. But the value is reset when you attach the drive for the next time. This is hard coded into the driver and read each time the drive is loaded. If you export the modified value an reg file then you can silently load it on startup by regedit /s hidecardreader.reg

The device id string of your card reader (this Vid_058f&Pid_63318F091111B thing) is found in the properties of the USB device in the device manager. My ListUsbDrives tool shows it too (the 'Ctrl DevID'): http://www.uwe-sieber.de/files/listusbdrives.zip

    
por 02.02.2011 / 23:56

Tags