thanks
--
Carey Frisch
Microsoft MVP
Windows Shell/User
----------------------------------------------------------------------
thanks
Trac
"Ictinike" <Icti...@discussions.microsoft.com> wrote in message
news:DB4488DF-A6A4-46D0...@microsoft.com...
> Funny. Was going to post
> the exact same thing you did as I did the same thing
> this morning and have/had the same issue.
>
> I was looking for a new driver because the old one
> tended to lock out on huge files sometimes. Would give
> me a really long delay and a timeout error in my logs.
> Not sure if you had the same trouble.
>
> The new driver seems to work a lot better, but that
> "safely remove hardware" thing is a pain. I fixed it
> by right clicking in the icon notification area and
> choosing "Customize Notification Icons". Then selected
> the remove hardware thing and set it to always hide
> it. Not a perfect fix, but it'll do 'till they fix the
> driver. <shrug>
From my archive:
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:
#define CM_DEVCAP_REMOVABLE (0x00000004)
#define CM_DEVCAP_SURPRISEREMOVALOK (0x00000080)
The device capabilities are found in the registry in a value
named 'Capabilities' under (sample for one of my IDE drives):
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\PCIIDE\IDECHANNEL\4&2527311&0&0
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 or on next boot. This is hard coded into the driver
and read each time the drive is loaded. If you export the modified
value a reg file then you can silently load it on startup by
regedit /s hidecardreader.reg
The device id string of your drive (this
PCIIDE\IDECHANNEL\4&2527311&0&0 thing) is found in the properties
of the drive in the device manager. My ListUsbDrives tool
shows it too (the 'Ctrl DevID'):
http://www.uwe-sieber.de/files/listusbdrives.zip
Greetings from Germany
Uwe
"Marjay" wrote:
The way to remove the annoying little icon in the notification area is to
remove the updated driver....this can be done by going to device manager,
opening your IDE ATA/ATAPI Controllers and then right clicking on your Nvidia
Serial Nforce ATA Controller, choosing properties, then driver, then clicking
on rollback driver then restarting when told to...I did this and the safely
remove icon is now gone and the microsoft update is showing up again as
recommended, which I immediately hid.... hope this works for everyone else