{"id":1384779,"date":"2025-11-08T00:07:42","date_gmt":"2025-11-08T00:07:42","guid":{"rendered":"http:\/\/JBixuBRt6xU7yqdMVcPbGj"},"modified":"2025-11-08T00:07:42","modified_gmt":"2025-11-08T00:07:42","slug":"my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse","status":"publish","type":"post","link":"https:\/\/arcader.org\/news\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse\/","title":{"rendered":"My new favorite deep Windows lore: Microsoft once broke its Bluetooth driver code by sticking a \u00ae symbol in the name of its own mouse"},"content":{"rendered":"<article>\n<p>There&#8217;s something I find deeply funny about the use of copyright and trademark symbols in games. I get why these symbols are important in legal contexts, but, like, was it actually vital to display \u00ae or \u2122 next to every character&#8217;s name in the <a data-analytics-id=\"inline-link\" href=\"https:\/\/www.youtube.com\/watch?v=bzNMTf7UTj8&#038;t=172s\">Dragon Ball Z Budokai 3 fighting game<\/a> on the PlayStation\u00ae 2? Everybody knows you own Goku, dawg. They can&#8217;t steal him just because you didn&#8217;t slap down that icon somewhere.<\/p>\n<p>But I suppose corporate legal departments often get their way, even when the end result looks silly or causes actual headaches. I recently learned about a perfect example of the latter by reading about Windows Bluetooth drivers, and I swear to god it&#8217;s both more interesting and funnier than you&#8217;re expecting any story about Windows Bluetooth drivers could possibly be.<\/p>\n<p>Back in 2006, Microsoft released a seemingly innocuous device called the Microsoft Wireless Notebook Presenter Mouse 8000. This was only about four years after the company&#8217;s first-ever Bluetooth mouse; the technology was still pretty new at the time and wouldn&#8217;t become the go-to for wireless office mice for another decade. The Presenter Mouse wasn&#8217;t focused on accuracy or polling rate like a gaming mouse; its gimmick was that it had a bunch of buttons on the bottom for going forward and backwards in a PowerPoint presentation, changing volume, etc. It was for presentations. Like I said, innocuous.<\/p>\n<p><em>Seemingly<\/em>.<\/p>\n<p>Turns out the Microsoft Wireless Notebook Presenter Mouse 8000 is also infamous, at least among programmers who regularly go digging through the bowels of Windows driver code. Because deep inside Windows&#8217; Bluetooth drivers you can actually find the name of the mouse, written out in plain English. This is highly unusual.<\/p>\n<p>&#8220;Does the Microsoft Wireless Notebook Presenter Mouse 8000 receive favorable treatment from the Microsoft Bluetooth drivers? Is this some sort of collusion? No, it\u2019s not that,&#8221; veteran Microsoft developer Raymond Chen <a data-analytics-id=\"inline-link\" href=\"https:\/\/devblogs.microsoft.com\/oldnewthing\/20250915-00\/?p=111599\">recently wrote<\/a> on his insider blog The Old New Thing.<\/p>\n<div class=\"youtube-video\" data-nosnippet >\n<div class=\"video-aspect-box\"><iframe data-lazy-priority=\"low\" data-lazy-src=\"https:\/\/www.youtube.com\/embed\/FjP6B9ze5T8\" allowfullscreen><\/iframe><\/div>\n<\/div>\n<p>As Chen explained, there are loads of sketchy devices out there that don&#8217;t behave how they&#8217;re supposed to when you plug them in. Maybe they don&#8217;t properly follow the rules of the USB protocol. Maybe someone made a tiny typo that slipped through the cracks. Maybe they <em>thought<\/em> they were following the rules because the version of Windows they tested on wasn&#8217;t actually validating some security requirement, but a later update tightened up its standards.<\/p>\n<p>Occasionally these sorts of mistakes <a data-analytics-id=\"inline-link\" href=\"https:\/\/www.pcgamer.com\/software\/windows\/microsoft-was-apparently-so-embarrassed-by-windows-98s-infamous-on-stage-blue-screen-of-death-it-built-a-new-testing-room-on-campus-to-ensure-it-would-never-happen-again\/\">can cause a computer to crash outright<\/a>. But usually funky hardware just requires the Windows driver code to include some kind of small workaround to parse what they were supposed to do. Far, far more unusual is a device failing at the very first step: literally getting its own name right.<\/p>\n<p>&#8220;Most of the time, the code to compensate for these types of errors doesn\u2019t betray its presence in the form of hard-coded strings. Instead, you have &#8216;else&#8217; branches that secretly repair or ignore corrupted values,&#8221; Chen wrote. &#8220;Unfortunately, the type of mistake that the Microsoft Wireless Notebook Presenter Mouse 8000 made is one that is easily exposed via strings, because they messed up their string!&#8221;<\/p>\n<p>Okay, what does all that mean exactly? Hard-coding (embedding some specific data right in the source code) is <a data-analytics-id=\"inline-link\" href=\"https:\/\/jeffreypalermo.com\/2009\/01\/hardcoding-considered-harmful-or-is-it\/\">generally a programming no-no<\/a>, so if the Windows team had to hard code something in the Bluetooth driver, it must&#8217;ve been really screwed up.<\/p>\n<p>Every hardware device has a &#8220;local name&#8221; in its code that identifies it. This name is meant to be encoded with the <a data-analytics-id=\"inline-link\" href=\"https:\/\/en.wikipedia.org\/wiki\/UTF-8\">UTF-8 standard<\/a>, by far the most common encoding standard for digital text. This article and pretty much the whole internet follow it today. But you know what didn&#8217;t follow it? The Microsoft Wireless Notebook Presenter Mouse 8000.<\/p>\n<p>Here&#8217;s how Chen explained the problem:<\/p>\n<p>&#8220;The Microsoft Wireless Notebook Presenter Mouse 8000 reports its name as Microsoft\u27eaAE\u27eb Wireless Notebook Presenter Mouse 8000, encoding the registered trademark symbol \u00ae not as UTF-8 as required by the specification but in <a data-analytics-id=\"inline-link\" href=\"https:\/\/en.wikipedia.org\/wiki\/Windows-1252\">code page 1252<\/a>. What\u2019s even worse is that a bare \u27eaAE\u27eb is not a legal UTF-8 sequence, so the string wouldn\u2019t even show up as corrupted; it would get rejected as invalid.&#8221;<\/p>\n<figure class=\"van-image-figure inline-layout\" data-bordeaux-image-check >\n<div class='image-full-width-wrapper'>\n<div class='image-widthsetter' style=\"max-width:640px;\">\n<p class=\"vanilla-image-block\" style=\"padding-top:75.00%;\"><img loading=\"lazy\" decoding=\"async\" id=\"dCw8AkMzSnbuzoAe4BCRtJ\" name=\"windows 3.1 desktop.png\" alt=\"Windows 3.1\" src=\"https:\/\/arcader.org\/wp-content\/uploads\/2025\/11\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse.png\" mos=\"\" align=\"middle\" fullscreen=\"\" width=\"640\" height=\"480\" attribution=\"\" endorsement=\"\" class=\"\"><\/p>\n<\/div>\n<\/div><figcaption itemprop=\"caption description\" class=\" inline-layout\"><span class=\"credit\" itemprop=\"copyrightHolder\">(Image credit: Microsoft)<\/span><\/figcaption><\/figure>\n<p>Code page 1252, aka Windows-1252, was the dominant encoding standard for Windows devices from the &#8217;80s to the late &#8217;90s. If you remember ever opening a document created in Windows on a Mac and seeing a bunch of question marks, that&#8217;s because Windows-1252 included characters that couldn&#8217;t be rendered by other operating systems. Thankfully with the ubiquity of UTF-8 those sorts of annoyances are rare these days.<\/p>\n<p>But back when the Wireless Notebook Presenter Mouse 8000 was designed, someone at Microsoft was apparently still stubbornly (or accidentally) using the old encoding format. Or maybe the mouse was actually the victim of a lazy copy\/paste gone horribly wrong.<\/p>\n<p>&#8220;Thanks, Legal Department, for sticking a \u00ae in the descriptor and messing up the whole thing,&#8221; Chen wrote. &#8220;There is a special table inside the Bluetooth drivers of &#8216;Devices that report their names wrong (and the correct name to use).&#8217; If the Bluetooth stack sees one of these devices, and it presents the wrong name, then the correct name is substituted.<\/p>\n<p>&#8220;That table currently has only one entry.&#8221;<\/p>\n<\/article>\n<p><a href=\"https:\/\/www.pcgamer.com\/hardware\/microsoft-windows-wireless-notebook-presenter-mouse-8000-bluetooth-driver\/\">Source<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>There&#8217;s something I find deeply funny about the use of copyright and trademark symbols in games. I get why these symbols are important in legal contexts, but, like, was it actually vital to display \u00ae or \u2122 next to every character&#8217;s name in the Dragon Ball Z Budokai 3 fighting game on the PlayStation\u00ae 2? Everybody knows you own Goku, dawg. They can&#8217;t steal him just because you didn&#8217;t slap down that icon somewhere. But I suppose corporate legal departments often get their way, even when the end result looks silly or causes actual headaches. I recently learned about a perfect example of the latter by reading about Windows Bluetooth drivers, and I swear to god it&#8217;s both more interesting and funnier than you&#8217;re expecting&hellip;<\/p>\n<p class=\"excerpt-more\"><a class=\"blog-excerpt button\" href=\"https:\/\/arcader.org\/news\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse\/\">Read More&#8230;<\/a><\/p>\n","protected":false},"author":1,"featured_media":1384780,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[336],"tags":[66],"class_list":["post-1384779","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-pc-gamer","tag-hardware"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>My new favorite deep Windows lore: Microsoft once broke its Bluetooth driver code by sticking a \u00ae symbol in the name of its own mouse | Arcader News<\/title>\n<meta name=\"description\" content=\"There&#039;s something I find deeply funny about the use of copyright and trademark symbols in games. I get why these symbols are important in legal contexts,\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/arcader.org\/news\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"My new favorite deep Windows lore: Microsoft once broke its Bluetooth driver code by sticking a \u00ae symbol in the name of its own mouse | Arcader News\" \/>\n<meta property=\"og:description\" content=\"There&#039;s something I find deeply funny about the use of copyright and trademark symbols in games. I get why these symbols are important in legal contexts,\" \/>\n<meta property=\"og:url\" content=\"https:\/\/arcader.org\/news\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse\/\" \/>\n<meta property=\"og:site_name\" content=\"Arcade News\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-08T00:07:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/arcader.org\/wp-content\/uploads\/2025\/11\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse.png\" \/>\n<meta name=\"author\" content=\"Arcade News\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Arcade News\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/arcader.org\\\/news\\\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/arcader.org\\\/news\\\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse\\\/\"},\"author\":{\"name\":\"Arcade News\",\"@id\":\"https:\\\/\\\/arcader.org\\\/news\\\/#\\\/schema\\\/person\\\/8460f5e5076b52fb2369f2f7ce6f2839\"},\"headline\":\"My new favorite deep Windows lore: Microsoft once broke its Bluetooth driver code by sticking a \u00ae symbol in the name of its own mouse\",\"datePublished\":\"2025-11-08T00:07:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/arcader.org\\\/news\\\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse\\\/\"},\"wordCount\":902,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/arcader.org\\\/news\\\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/arcader.org\\\/wp-content\\\/uploads\\\/2025\\\/11\\\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse.png\",\"keywords\":[\"hardware\"],\"articleSection\":[\"PC Gamer\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/arcader.org\\\/news\\\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/arcader.org\\\/news\\\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse\\\/\",\"url\":\"https:\\\/\\\/arcader.org\\\/news\\\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse\\\/\",\"name\":\"My new favorite deep Windows lore: Microsoft once broke its Bluetooth driver code by sticking a \u00ae symbol in the name of its own mouse | Arcader News\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/arcader.org\\\/news\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/arcader.org\\\/news\\\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/arcader.org\\\/news\\\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/arcader.org\\\/wp-content\\\/uploads\\\/2025\\\/11\\\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse.png\",\"datePublished\":\"2025-11-08T00:07:42+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/arcader.org\\\/news\\\/#\\\/schema\\\/person\\\/8460f5e5076b52fb2369f2f7ce6f2839\"},\"description\":\"There's something I find deeply funny about the use of copyright and trademark symbols in games. I get why these symbols are important in legal contexts,\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/arcader.org\\\/news\\\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/arcader.org\\\/news\\\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/arcader.org\\\/news\\\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse\\\/#primaryimage\",\"url\":\"https:\\\/\\\/arcader.org\\\/wp-content\\\/uploads\\\/2025\\\/11\\\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse.png\",\"contentUrl\":\"https:\\\/\\\/arcader.org\\\/wp-content\\\/uploads\\\/2025\\\/11\\\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse.png\",\"caption\":\"My new favorite deep Windows lore: Microsoft once broke its Bluetooth driver code by sticking a \u00ae symbol in the name of its own mouse\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/arcader.org\\\/news\\\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/arcader.org\\\/news\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"My new favorite deep Windows lore: Microsoft once broke its Bluetooth driver code by sticking a \u00ae symbol in the name of its own mouse\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/arcader.org\\\/news\\\/#website\",\"url\":\"https:\\\/\\\/arcader.org\\\/news\\\/\",\"name\":\"Arcade News\",\"description\":\"Free Arcade News from the Best Online Sources\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/arcader.org\\\/news\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/arcader.org\\\/news\\\/#\\\/schema\\\/person\\\/8460f5e5076b52fb2369f2f7ce6f2839\",\"name\":\"Arcade News\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3fea48a614d86edd987bc7bb25f4707c69546d4b1f78ad4aa20b26316bad1f9d?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3fea48a614d86edd987bc7bb25f4707c69546d4b1f78ad4aa20b26316bad1f9d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3fea48a614d86edd987bc7bb25f4707c69546d4b1f78ad4aa20b26316bad1f9d?s=96&d=mm&r=g\",\"caption\":\"Arcade News\"},\"sameAs\":[\"https:\\\/\\\/cricketgames.tv\"],\"url\":\"https:\\\/\\\/arcader.org\\\/news\\\/author\\\/arcade-news\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"My new favorite deep Windows lore: Microsoft once broke its Bluetooth driver code by sticking a \u00ae symbol in the name of its own mouse | Arcader News","description":"There's something I find deeply funny about the use of copyright and trademark symbols in games. I get why these symbols are important in legal contexts,","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/arcader.org\/news\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse\/","og_locale":"en_US","og_type":"article","og_title":"My new favorite deep Windows lore: Microsoft once broke its Bluetooth driver code by sticking a \u00ae symbol in the name of its own mouse | Arcader News","og_description":"There's something I find deeply funny about the use of copyright and trademark symbols in games. I get why these symbols are important in legal contexts,","og_url":"https:\/\/arcader.org\/news\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse\/","og_site_name":"Arcade News","article_published_time":"2025-11-08T00:07:42+00:00","og_image":[{"url":"https:\/\/arcader.org\/wp-content\/uploads\/2025\/11\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse.png","type":"","width":"","height":""}],"author":"Arcade News","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Arcade News","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/arcader.org\/news\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse\/#article","isPartOf":{"@id":"https:\/\/arcader.org\/news\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse\/"},"author":{"name":"Arcade News","@id":"https:\/\/arcader.org\/news\/#\/schema\/person\/8460f5e5076b52fb2369f2f7ce6f2839"},"headline":"My new favorite deep Windows lore: Microsoft once broke its Bluetooth driver code by sticking a \u00ae symbol in the name of its own mouse","datePublished":"2025-11-08T00:07:42+00:00","mainEntityOfPage":{"@id":"https:\/\/arcader.org\/news\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse\/"},"wordCount":902,"commentCount":0,"image":{"@id":"https:\/\/arcader.org\/news\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse\/#primaryimage"},"thumbnailUrl":"https:\/\/arcader.org\/wp-content\/uploads\/2025\/11\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse.png","keywords":["hardware"],"articleSection":["PC Gamer"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/arcader.org\/news\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/arcader.org\/news\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse\/","url":"https:\/\/arcader.org\/news\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse\/","name":"My new favorite deep Windows lore: Microsoft once broke its Bluetooth driver code by sticking a \u00ae symbol in the name of its own mouse | Arcader News","isPartOf":{"@id":"https:\/\/arcader.org\/news\/#website"},"primaryImageOfPage":{"@id":"https:\/\/arcader.org\/news\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse\/#primaryimage"},"image":{"@id":"https:\/\/arcader.org\/news\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse\/#primaryimage"},"thumbnailUrl":"https:\/\/arcader.org\/wp-content\/uploads\/2025\/11\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse.png","datePublished":"2025-11-08T00:07:42+00:00","author":{"@id":"https:\/\/arcader.org\/news\/#\/schema\/person\/8460f5e5076b52fb2369f2f7ce6f2839"},"description":"There's something I find deeply funny about the use of copyright and trademark symbols in games. I get why these symbols are important in legal contexts,","breadcrumb":{"@id":"https:\/\/arcader.org\/news\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/arcader.org\/news\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/arcader.org\/news\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse\/#primaryimage","url":"https:\/\/arcader.org\/wp-content\/uploads\/2025\/11\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse.png","contentUrl":"https:\/\/arcader.org\/wp-content\/uploads\/2025\/11\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse.png","caption":"My new favorite deep Windows lore: Microsoft once broke its Bluetooth driver code by sticking a \u00ae symbol in the name of its own mouse"},{"@type":"BreadcrumbList","@id":"https:\/\/arcader.org\/news\/my-new-favorite-deep-windows-lore-microsoft-once-broke-its-bluetooth-driver-code-by-sticking-a-symbol-in-the-name-of-its-own-mouse\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/arcader.org\/news\/"},{"@type":"ListItem","position":2,"name":"My new favorite deep Windows lore: Microsoft once broke its Bluetooth driver code by sticking a \u00ae symbol in the name of its own mouse"}]},{"@type":"WebSite","@id":"https:\/\/arcader.org\/news\/#website","url":"https:\/\/arcader.org\/news\/","name":"Arcade News","description":"Free Arcade News from the Best Online Sources","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/arcader.org\/news\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/arcader.org\/news\/#\/schema\/person\/8460f5e5076b52fb2369f2f7ce6f2839","name":"Arcade News","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/3fea48a614d86edd987bc7bb25f4707c69546d4b1f78ad4aa20b26316bad1f9d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/3fea48a614d86edd987bc7bb25f4707c69546d4b1f78ad4aa20b26316bad1f9d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3fea48a614d86edd987bc7bb25f4707c69546d4b1f78ad4aa20b26316bad1f9d?s=96&d=mm&r=g","caption":"Arcade News"},"sameAs":["https:\/\/cricketgames.tv"],"url":"https:\/\/arcader.org\/news\/author\/arcade-news\/"}]}},"_links":{"self":[{"href":"https:\/\/arcader.org\/news\/wp-json\/wp\/v2\/posts\/1384779","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/arcader.org\/news\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/arcader.org\/news\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/arcader.org\/news\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/arcader.org\/news\/wp-json\/wp\/v2\/comments?post=1384779"}],"version-history":[{"count":0,"href":"https:\/\/arcader.org\/news\/wp-json\/wp\/v2\/posts\/1384779\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/arcader.org\/news\/wp-json\/wp\/v2\/media\/1384780"}],"wp:attachment":[{"href":"https:\/\/arcader.org\/news\/wp-json\/wp\/v2\/media?parent=1384779"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/arcader.org\/news\/wp-json\/wp\/v2\/categories?post=1384779"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/arcader.org\/news\/wp-json\/wp\/v2\/tags?post=1384779"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}