Remove CPU or casefan coolers from USB eject


Recommended Posts

One of the dumbest things about my 2023 PC upgrade that I came across is how very badly companies implement their expensive RGB offerings across devices.

If it isn't for the fact that almost every different company requires its own software, because apparently there's no standard when it comes to RGB, even though motherboard manufacturers have been including the headers on boards for years. Companies that make RGB coolers don't even bother to add an option like saving RGB lighting and fan preferences in an onboard memory inside the RGB controller that is required!

Aside from the crap software most of them have, the other extremely frustrating problem is that some of the RGB coolers are detected by Windows as ejectable devices too 🤷‍♂️ and this is down to the companies lazy and crap firmware.

Which sane person would ever want to eject their cooler?!

image.png

Yes, really LianLi and NZXT thought it would be helpful if we can eject the coolers, which can result in issues like the fans going on max RPM, the software not being able to access the controllers for configuration, until the next reboot when they are once again detected as ejectable devices.

You could say to yourself, "I'll just be careful then!" but no amount of being careful will avoid an accidental eject, when you meant to eject a USB drive. It is just some of the dumbest thing I've seen accompanying an expensive piece of equipment. For example the NZXT Kraken costs over €200 in Europe, and the case fans were almost €100 for 4.

So what can we do about it?

In a very roundabout way, and thanks to multiple articles that I researched over this past weekend, I was able to implement a fix that works for me and removes the devices from the "Safely Eject" systray.

 

  1. First go into Device Manager and look for Universal Serial Bus devices -> Your cooler(s).
    SNAG-0006.png
  2. Right click, open Properties, go to Details tab, select Property 'Hardware IDs', find the VID and the PID; For my NZXT Kraken Base it's USB\VID_1E71&PID_300E&MI_00 (shortest of 2 if more than 1 exists).
    image.png
  3. Open Registry Editor, navigate to Computer\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\USB, find the directory called the same as your VID&PID found above, open it, then open the subdirectory inside; (My full path is Computer\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\USB\VID_1E71&PID_300E\FBC5739BECAE7F54BC35F2A255DFDB9C).
    SNAG-0004.png
  4. Look for an entry called Capabilities. Mine has a value of 0x00000094 (decimal 148).
  5. Using another source I found out that we need to subtract 4 from 94 to signify a non-ejectable device, and I saved Capabilities as 90 (hex).
    SNAG-0005.png
  6. It will immediately disappear from Safely Remove Hardware and Eject Media.

The next time that you reboot however, they will be back as ejectable devices because the preference is not saved between boots, so we can automate it with Task Scheduler

Right click on the desktop and create a text document

In it paste the following:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\USB\YOUR-COOLER-HARDWARE-ID1\SUB-KEY]
"Capabilities"=dword:00000090

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\USB\YOUR-COOLER-HARDWARE-ID2\SUB-KEY]
"Capabilities"=dword:00000090

Ensure you change YOUR-COOLER-HARDWARE-ID1\SUB-KEY for your Hardware ID and sub key.. mine is VID_1E71&PID_300E\FBC5739BECAE7F54BC35F2A255DFDB9C and VID_0CF2&PID_A100\6243168001

As you can see you can add multiple entries for multiple coolers that are shown as ejectable, when they shouldn't be,

Save the file, and change the .txt extension to .reg.

Now we want this registry change to take place every time we boot Windows so that the coolers no longer show up as ejectable devices.

You can apply that solution as such:

  1. Open Task Scheduler, hit Create Task, and give it a name
  2. Click on Change User or Group and type System, save that - thanks V3n0mx
  3. Make sure to select 'Run with highest privileges'
  4. Go to the Triggers tab, create a new trigger, hit 'At Startup' and hit OK
  5. Go to the Actions tab, create a new action, select C:\Windows\System32\reg.exe as the program, and under 'Add arguments', add: import "C:\Your Path To\remove-coolers-from-usb-eject.reg"
  6. Hit OK (right click on Task and select Run to test)

Note: quotes allow you to specify a path with spaces in it for the argument field, but if you save the .reg file in a place without spaces you can also add the argument as like so: import E:\Software\remove-coolers-from-usb-eject.reg

Task Scheduler should now re-set the Capabilities value to one that marks the device as un-ejectable and the Safely Remove Hardware and Eject Media icon should not be present anymore in the systray.

Basically the things to remember for your configuration is the correct hardware ID in the registry, and changing the hex value by minus 4 to indicate it is not ejectable (from 94 to 90).

Hope this helps someone!

  • Like 4

the one other fun fact is, u dont actually have to safley eject a usb stick so some people may not even realise this is a thing anymore "https://learn.microsoft.com/en-US/windows/client-management/client-tools/change-default-removal-policy-external-storage-media"

 

Also cool article hopefully thanks to yourself the companies actually fix their ######. or when windows enables the rgb ###### of their own

  • Like 3
  • 1 month later...

Tried this.

If I go to registry, change the value to 90, it then disappears from the taskbar. Great.

BUT

When I go into task scheduler, do as instructed above, do a reboot, the it then appears again.

If I click on the .reg file that I created ( manually ) it says  " The specified file is not a registry script. You can only import binary registry files from within the registry editor "

 

any ideas ?

  • 3 weeks later...

Use "USB Safely Remove" ( https://safelyremove.com/features.htm ) which can hide unwanted crap from this list and hide the stock USB icon. Occasionally they do giveaways/offer it free without updates. The 4.7 version was free.

  • Like 2
On 09/09/2023 at 08:28, MS Bob 11 said:

Use "USB Safely Remove" ( https://safelyremove.com/features.htm ) which can hide unwanted crap from this list and hide the stock USB icon. Occasionally they do giveaways/offer it free without updates. The 4.7 version was free.


I've been using this for years.  Great little utility!

  • Like 1
On 09/09/2023 at 09:46, V3n0mx said:

For some reason it keeps showing back up again and I have to keep going into task scheduler and hitting "run"

I had the same problem until I changed the task to run from SYSTEM and it has been great since.

Only difference I can see is that my task is reading a .reg file, and yours is running the argument.

Yeah I have tried doing it the .reg way and still it won't work. I have to do it the argument way. Every now and again it shows back up and I have to click run and do it manually. Seems as though task scheduler isn't running it by itself,

Reg way never works at all. Argument way  works half the time but usually I have to manually hit " run "

 

In regards to the  software linked above, after the 30 days is up, will the icon reappear ?

 

There has been an NZXT cam software update recently. This may have something to do with it.. either that or I did install a much faster CPU and I think task scheduler is trying to  execute the command before NZXT is even loaded

Edited by V3n0mx

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • I can answer about the Linux bit. I only used AMD GPUs. I currently have a 9060XT (8GB) that fits my needs, I'm not a gamer, so I don't need that much GDDR. But lately, NVIDIA has grown a lot in the recent years. Oh, the horrors of NVIDIA drivers not working. But they have been getting better. I know a lot of members onm here that are running cachyOS and other distros, and are fine with a 4090/5090 variants. Really, though, I would stick with AMD variants.
    • Everything they say you can already do yourself on the registry by changing some things.
    • Artist's renderings are so much nicer to view than the real thing, don't you think?
    • WildBit Viewer 6.20 released; no further updates planned by Razvan Serea WildBit Viewer is a popular, fast, and extensive image viewer offering a comprehensive suite of tools for photographers, designers, and image enthusiasts. It includes a powerful Viewer, Slide Show, Editor, Search, Profile Switcher, and Multi-Screen Viewer. The Viewer provides blazing-fast folder, file list, and thumbnail navigation with customizable headers, full-screen view, and a shell toolbar to organize favorite folders. It supports all major graphic formats (over 70), including JPEG, TIFF, PNG, BMP, GIF, PCX, TGA, and RAW formats. Detailed Image Info shows EXIF, IPTC, and XMP metadata, with rotation based on EXIF orientation, wallpaper setting, image comparison, geo-tag viewing, color labels, and CMS-aware color management. The Slide Show module offers 176 transition effects, multi-monitor support, custom shows with per-image settings, image marking, zoom, rotate, and desktop hiding for a professional viewing experience. The Editor supports advanced image manipulation, including crop, resize, color adjustments, curves, edge detection, effects, batch processing, retouching, layer support, and printing. Users can apply mass renaming, update or clear metadata, and work with multi-page TIFFs and animated GIFs. Search allows filtering by name, location, date, size, attributes, and metadata, while the Profile Switcher saves and loads custom layouts for all modules. The Multi-Screen Viewer opens multiple windows on available monitors, allowing simultaneous image viewing with independent zoom, pan, and rotation. WildBit Viewer also supports portable operation, 32- and 64-bit versions, Unicode, high-DPI displays, and multiple Windows styling options. With its combination of speed, versatility, and rich feature set, WildBit Viewer is an indispensable tool for managing, editing, and showcasing images efficiently. WildBit Viewer key features: Blazing-fast folder, file list, and thumbnail browsing Supports 70+ image formats including JPEG, TIFF, PNG, BMP, GIF, and RAW Full-screen view with multi-monitor support Explorer-style file handling with customizable headers Thumbnail Browser with sorting, view change, and fast size adjustment EXIF, IPTC, and XMP metadata viewing and editing Automatic rotation based on EXIF orientation Shell toolbar for organizing favorite folders Image Compare to calculate similarity between images Mass renaming and batch metadata updates File List Generator (HTML, CSV, RTF, TXT, Unicode) Rating and color labels, CMS-aware color management Video playback (AVI, MPG, MPEG, WMV) Animated GIF, multipage TIFF, Camera RAW support Slide Show with 176 transition effects and custom settings Editor: crop, resize, rotate, flip, canvas resize, and retouching tools Batch processing and image format conversion Multi-Screen Viewer: multiple windows with independent zoom, pan, and rotate Profile Switcher: save, load, reset, delete module profiles Portable operation, 32-/64-bit support, Unicode, and high-DPI ready WildBit Viewer 6.20 changelog: Viewer, Slide Show, Editor, Search, Profile Switcher & Multi Screen Viewer. Updated ImageEn to 15.0.0 version. Viewer, Slide Show, Editor, Search, Profile Switcher & Multi Screen Viewer. Updated Jedi JCL&JVCL. Viewer - Image Geo Info, OpenStreetMap removed. Slide Show Remote Mode removed. Note! This means that WildBit Slide Show Remote is now officially EOL. Editor - Shortcut keys for Capture removed. Optimized code. Note! This version includes help what supersedes all previous releases. plus Lots of bug fixes and changes, check Readme files for details. WildBit Viewer End‑of‑Life WildBit Viewer has reached its final release with version 6.20. As development comes to a close, no further feature updates are planned. WildBit Slide Show Remote reached End-of-Life on 06 June 2026, while WildBit Viewer will reach End-of-Life on 30 June 2026. Downloads will remain available until the end of July 2026 (possibly extending into early August). After End-of-Life, the software will no longer receive updates, security fixes, or technical support. Download: WildBit Viewer 64-bit | Portable 64-bit | ~70.0 MB (Freeware) Download: WildBit Viewer 32-bit | Portable 32-bit Links: WildBit Viewer Homepage | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Thanks for liking it! 😊 That's Arch Linux with Gnome.
  • Recent Achievements

    • Dedicated
      Conjor earned a badge
      Dedicated
    • Week One Done
      Windows Guy earned a badge
      Week One Done
    • Dedicated
      Mark Spruce earned a badge
      Dedicated
    • Collaborator
      conkir earned a badge
      Collaborator
    • Rising Star
      olavinto went up a rank
      Rising Star
  • Popular Contributors

    1. 1
      +primortal
      479
    2. 2
      PsYcHoKiLLa
      252
    3. 3
      Steven P.
      71
    4. 4
      +Edouard
      69
    5. 5
      FloatingFatMan
      68
  • Tell a friend

    Love Neowin? Tell a friend!