There is no easy or cheap way to change the words "USB Serial Device" in Windows. The name comes from an INF file within Windows which is signed by Microsoft. If you change even 1 byte within that (well hidden) file, the signature will no longer be valid and Windows won't use it.
A difficult and expensive way does exist, which is almost certainly what Moxa is doing. You would create your own INF file, which is the file type Windows uses to know which driver to load when it sees a device. If you supply your own binary kernel-mode driver code, then you must provide your own INF to cause Windows to load it when your device is detected. An INF file doesn't have to reference a custom driver. It can instruct Windows to load any of the Microsoft-provided drivers. For USB Serial implement with CDC ACM protocol (which is how Teensy and nearly all other microcontrollers do it, because it's a USB standard) that driver is USBSER.SYS.
Since somewhere in the Windows 7 era, Microsoft requires INF files to be signed. The signature is stored in a CAT file with the same name, since the INF is just a text file. Windows 2000, XP, Vista will let you install an INF without a CAT signature file after you click ok to a nasty warning message. But starting with Windows 7, unsigned INF just won't work. You must sign, which means you must have a code signing certificate. Those certs come in 2 flavors, less expensive OV and more expensive EV. If your "driver" is only an INF you can use OV. If your driver includes your own SYS file or other kernel-mode binary, then you must have the EV type.
Until a couple years ago the OV could be purchased pretty cheap (under $100/year). But policies changed. OV used to be delivered as simply a file (or by installing to a browser keychain where you could export it to a file), whereas EV was delivered only on a hardware token (usually Yubikey FIPS). They no longer issue OV as a simple file (cryptography experts would cringe at details I'm glossing over here to keep this short...) Most of the certificate authories now offer a cloud service. Like anything "cloud" you avoid initial up front costs, but then pay per use which might be beneficial if you have only light duty usage, quickly becomes even more expensive as you use it more.
Before Windows 10, Microsoft supplied USBSER.SYS (though it was buggy) in all versions of Windows back to at least Windows 2000, though before XP-SP3 and Vista-SP1 (and all service packs to Windows 2000) USBSER.SYS didn't support USB composite descriptors which are now commonly used. Because Windows XP and Windows 7 (and other versons before 10) didn't supply any INF to actually load USBSER.SYS, supplying an INF which just loads USBSER.SYS was pretty common practice. If you search, I'm sure you can find many old INF examples just to load USBSER.SYS. Since INF is just a text file, simply open it with a text editor and change the name and ID numbers to whatever you like. Then run signtool (part of the free Windows SDK) to create a corresponding CAT file.
A critically important part of your INF is the
Hardware ID string. This will have the Vendor ID and Device ID numbers. Ideally you would alter the Vendor ID number used on Teensy to one you've been assigned from the USBIF (yet another very expsensive thing...) and of course put the same number into your INF. The INF inside Windows uses "Compatible ID" matching rather than "Hardware ID" matching, so it can load for all devices which say they use the CDC-ACM protocol. Windows considers Hardware ID matching a higher priority, so when it has multiple INFs for a device the one with Hardware ID (if properly signed) overrives any using Compatible ID.
Microsoft has a policy that only they can publish INF files using Compatible ID matching. Earlier versions of Windows only enforced this policly in the signtool program. Long ago, PJRC created a INF with Compatible ID. If you run the Teensyduino installer on any pre-10 version of Windows, and the INF isn't already installed, you'll get a step to install that INF "driver" (of course the actual driver is just USBSER.SYS within Windows).
If you decide to go down this custom INF path, you can indeed change the name. It is possible, but difficult and expensive (costs associated with the code signing cert). Since Windows 10 added its own INF with Compatible ID, all this painful INF stuff has been a distant painful memory for me. I'm really glad to no longer have to mess with it. I will admit, it's been many years and my memory of the finer details has faded somewhat. If you do go down this path and find something I've said here isn't quite right, please feel free to post a correction. Maybe even share your experience, as it might help others who want to do this, since most of the info online was written when Windows XP and 7 where the commonly used versions.