{"id":1895,"date":"2021-02-25T00:00:00","date_gmt":"2021-02-25T00:00:00","guid":{"rendered":"https:\/\/audiosupport.omsystem.com\/2021\/02\/25\/license-key-checker\/"},"modified":"2025-08-14T11:35:51","modified_gmt":"2025-08-14T11:35:51","slug":"license-key-checker","status":"publish","type":"post","link":"https:\/\/audiosupport.omsystem.com\/fr\/miscellaneous\/license-key-checker\/","title":{"rendered":"V\u00e9rificateur de cl\u00e9 de licence"},"content":{"rendered":"\n<p><\/p>\n\n\n\n<p><strong>Note:<\/strong> This tool simply allows to check the first 8 characters of the license number, and informs if the software is still available for download. If your license code is not working correctly, please contact our <a href=\"https:\/\/audiopro-support.explore.omsystem.com\/hc\/en-us\/requests\/new\">Support Team<\/a><\/p>\n\n\n\n<p><em>Please insert the code in capital letters only<\/em><\/p>\n\n\n\n<div class=\"container p-3\"><!-- input --><input id=\"inputStd\" class=\"input-element input_Style\" type=\"text\" placeholder=\"Enter License Key...\" onkeyup=\"update();\"> <input id=\"inputOld\" class=\"input-elementOld input_Style hidden\" type=\"text\" placeholder=\"Enter License Key...\" onkeydown=\"alternate();\" onkeyup=\"alternate();\"> <input id=\"clearButton\" class=\"clearBtn\" type=\"submit\" value=\"Clear\" onclick=\"clearFnc();\"> <!-- Output --><p><\/p>\n<h5 class=\"pt-3 pl-2\">License Key Details:<\/h5>\n<div>\n<p id=\"outVersion\" class=\"pl-2\">&nbsp;<\/p>\n<p id=\"outModule\" class=\"pl-2\">&nbsp;<\/p>\n<p id=\"outRegion\" class=\"pl-2\">&nbsp;<\/p>\n<p id=\"outVolume\" class=\"pl-2\">&nbsp;<\/p>\n<p id=\"outSupport\" class=\"pl-2\">&nbsp;<\/p>\n<\/div>\n<\/div>\n<style type=\"text\/css\">\n        .hidden {\n                display: none !important;\n        }\n        input.input_Style,\n        select {\n                width: 30%;\n                padding: 8px 15px;\n                margin: 8px 5px;\n                border: 2px solid #ccc;\n                border-radius: 4px;\n                transition: all 1s ease;\n                outline: none;\n        }\n        @media screen and (min-width: 600px) {\n                input[type=text]:focus.inputStyle {\n                        width: 30%;\n                }\n        }\n        input[type=submit].clearBtn {\n                -moz-border-radius: 6px;\n                -webkit-border-radius: 6px;\n                border-radius: 6px;\n                background-color: #1085de;\n                border: 2px solid #1085de;\n                display: inline-block;\n                cursor: pointer;\n                color: #ffffff;\n                font-family: \"Lato\", sans-serif;\n                font-size: 13px;\n                padding: 10px;\n                width: 190px;\n                text-align: center;\n                text-decoration: none;\n                text-shadow: 0px 1px 2px #000000;\n                transition: 0.5s;\n                font-weight: 600;\n                outline: none;\n                letter-spacing: 1px;\n                text-transform: uppercase;\n        }\n       input[type=submit]:hover.clearBtn {\n                background-color: #61bbff;\n                color: white;\n                border-radius: 6px;\n                border: 2px solid #61bbff;\n                transition: border-radius 150ms ease;\n                transition: 0.5s;\n                outline: none;\n        }\n        input[type=submit]:active.clearBtn {\n                position: relative;\n                top: 1px;\n                outline: none;\n        }\n<\/style>\n<script type=\"text\/javascript\">\n        var i = 0;\n        var key = [];\n        var fullKey;\n        \/\/ output variables\n        var ODMS = 'Version: Olympus Dictation Management System ';\n        var OM = 'Version: OM Dictation Management System ';\n        var R8 = 'Release 8 (ODMS R8) - Download <a href=\"\/Downloads\/software\/odms-r8\">here<\/a> ';\n        var R7 = 'Release 7 (ODMS R7) - Download <a href=\"\/Downloads\/software\/odms-r7\">here<\/a> ';\n        var R6 = 'Release 6 (ODMS R6) - Download <a href=\"\/downloads\/software\/odms\/client\">here<\/a> ';\n        var DSS = 'Version: DSS Player ';\n        var R4 = 'Pro Release 4 ';\n        var R5 = 'Pro Release 5 ';\n        var SR1 = 'Standard Release 1 - Download <a href=\"\/downloads\/software\/dss-player-standard\/client\">here<\/a> ';\n        var SR2 = 'Standard Release 2 - Download <a href=\"\/downloads\/software\/dss-player-standard\/client\">here<\/a> ';\n        var DSS6and7 = 'version 6 & 7 ';\n        var DPFM = 'Version: DSS Player For Mac - Download <a href=\"\/downloads\/software\/dss-player-for-mac\/client\">here<\/a> ';\n        var R6SCP = 'Version: ODMS R6 System Configuration Program (SCP) - Download <a href=\"\/downloads\/software\/odms\/server\">here<\/a> ';\n        var R6LM = 'Version: ODMS R6 License Manager - Download <a href=\"\/downloads\/software\/odms\/server\">here<\/a> ';\n        var Express = 'Version: ODMS Express';\n        var sonority = 'Version: Sonority ';\n        var DSS2002 = 'Version: DSS Player 2002';\n        var version = '';\n        var module = '';\n        var region = '';\n        var usernum = '';\n        var key2002 = false;\n        var supported;\n        yesSup = '<span style=\"color: green;\">This product is currently supported by OM Digital Solutions <\/span>';\n        noSup = '<span style=\"color: red;\">This product is no longer supported by OM Digital Solutions <\/span>';\n        var errorMSG = '<span style=\"color: red;\">One or more characters are invalid, please check your key & try again.<\/span>';\n        \/\/ Clear all function for 'Clear' button\n        function clearFnc() {\n                document.getElementById('inputStd').value = ''; \n                document.getElementById('inputOld').value = '';\n                document.getElementById('outVersion').innerHTML = '';\n                document.getElementById('outModule').innerHTML = '';\n                document.getElementById('outRegion').innerHTML = '';\n                document.getElementById('outVolume').innerHTML = '';\n                document.getElementById('outSupport').innerHTML = '';\n                region = '';\n                usernum = '';\n                key2002 = false;\n                inputHandle();\n        };\n        \/\/ Error message for invalid inputs\n        function keyError() {\n                version = errorMSG;\n                module = '';\n                region = '';\n                usernum = '';\n                supported = '';\n        }\n        \/\/ Main function\n        function update() {\n                console.log('update');\n                fullKey = document.getElementById('inputStd').value;\n                key = document.getElementById('inputStd').value.split('-');\n                switch (key[0].charAt(0)) {\n                        \/\/ First character is 'R'\n                        case 'R':\n                                supported = '';\n                                version = '<span style=\"color: #ff9933\">Please enter additional characters<\/span>';\n                                rKeyCheck();\n                                keyModule();\n                                break;\n                                \/\/ First character is 'S'\n                        case 'S':\n                                supported = '';\n                                version = DSS;\n                                keyModule();\n                                dssVersion();\n                                break;\n                                \/\/ First character is '8'\n                        case '8':\n                                switch (key[0].charAt(1)) {\n                                        \/\/ DPFM\n                                        case '2':\n                                                supported = noSup;\n                                                version = DPFM;\n                                                break;\n                                                \/\/ DSS Player v6 \/ v7\n                                        case '3':\n                                                v6v7module();\n                                                supported = noSup;\n                                                version = DSS + DSS6and7;\n                                                break;\n                                                \/\/ Sonority\n                                        case '5':\n                                                supported = noSup;\n                                                version = sonority;\n                                                break;\n                                                \/\/ Clear output if no value is entered\n                                        case '':\n                                                supported = '';\n                                                version = '';\n                                                break;\n                                }\n                                break;\n                                \/\/ Blank input removes output & resets\n                        case '':\n                                version = '';\n                                module = '';\n                                region = '';\n                                usernum = '';\n                                supported = '';\n                                key2002 = false;\n                                inputHandle();\n                                break;\n                                \/\/ If an unrecognised character is entered will error.\n                        default:\n                                keyError();\n                                break;\n                }\n                document.getElementById('outVersion').innerHTML = version;\n                document.getElementById('outModule').innerHTML = module;\n                document.getElementById('outRegion').innerHTML = region;\n                document.getElementById('outVolume').innerHTML = usernum;\n                document.getElementById('outSupport').innerHTML = supported;\n        }\n        \/\/ Function for 2002 keys\n        function alternate() {\n                fullKey = document.getElementById('inputOld').value;\n                key = document.getElementById('inputOld').value.split('-');\n                console.log('alt');\n                switch (key[0].charAt(0)) {\n                        \/\/ First character is 'R'\n                        case 'R':\n                                version = '<span style=\"color: #ff9933\">Please enter additional characters<\/span>';\n                                module = '';\n                                supported = '';\n                                switch (key[0].charAt(1)) {\n                                        \/\/ Second character is 'D'\n                                        case 'D':\n                                                module = 'Module: Dictation Module'\n                                                supported = '';\n                                                switch (key[0].charAt(2)) {\n                                                        case '3':\n                                                                version = DSS2002;\n                                                                supported = noSup;\n                                                                break;\n                                                        default:\n                                                                key2002 = false;\n                                                                inputHandle();\n                                                                break;\n                                                }\n                                                break;\n                                                \/\/ Second character is 'F'\n                                        case 'F':\n                                                version = DSS2002;\n                                                supported = '';\n                                                switch (key[0].charAt(2)) {\n                                                        case 'P':\n                                                                module = 'Module: Transcription Module';\n                                                                supported = noSup;\n                                                                break;\n                                                        default:\n                                                                break;\n                                                }\n                                                break;\n                                        default:\n                                                key2002 = false;\n                                                detect2002();\n                                                inputHandle();\n                                                break;\n                                }\n                                break;\n                }\n                document.getElementById('outVersion').innerHTML = version;\n                document.getElementById('outModule').innerHTML = module;\n                document.getElementById('outSupport').innerHTML = supported;\n        }\n        \/\/ Check module of key (Standard keys)\n        function keyModule() {\n                switch (key[0].charAt(1)) {\n                        \/\/ DM\n                        case 'D':\n                                module = 'Module: Dictation Module';\n                                detect2002();\n                                break;\n                                \/\/TM\n                        case 'T':\n                                module = 'Module: Transcription Module';\n                                break;\n                        case '':\n                                module = '';\n                                supported = '';\n                                break;\n                        case 'S':\n                                \/\/R6 SCP\n                                version = R6SCP;\n                                supported = noSup;\n                                break;\n                        case 'L':\n                                \/\/ R6 License Manager\n                                version = R6LM;\n                                supported = noSup;\n                                break;\n                        case 'R':\n                                \/\/ ODMS Express\n                                version = Express;\n                                keyVolume();\n                                supported = noSup;\n                                break;\n                        default:\n                                module = errorMSG;\n                                break;\n                }\n                switch (key[0].charAt(1)) {\n                        case 'F':\n                                key2002 = true;\n                                version = DSS2002;\n                                inputHandle();\n                                break;\n                }\n        }\n        \/\/ Check region of key\n        function keyRegion() {\n                switch (key[0].charAt(3)) {\n                        case '4':\n                                \/\/ USA\n                                region = 'Region: United States of America';\n                                break;\n                        case '6':\n                                \/\/ Europe\n                                region = 'Region: Europe';\n                                break;\n                        case '8':\n                                \/\/ Oceania\n                                region = 'Region: Oceania';\n                                break;\n                        case '':\n                                region = '';\n                                break;\n                        default:\n                                region = errorMSG;\n                                break;\n                }\n        }\n        \/\/ Check version for DSS software\n        function dssVersion() {\n                if (key[0].length >= 3) {\n                        switch (key[0].charAt(2)) {\n                                case '1':\n                                        \/\/ SR1\n                                        version = DSS + SR1;\n                                        supported = noSup;\n                                        break;\n                                case '2':\n                                        \/\/ SR2\n                                        version = DSS + SR2;\n                                        keyRegion();\n                                        keyVolume();\n                                        supported = noSup;\n                                        break;\n                                case '':\n                                        supported = '';\n                                        version = '';\n                                        break;\n                                default:\n                                        version = errorMSG;\n                                        break;\n                        }\n                }\n        }\n        \/\/ Checks for keys beginning with 'R'\n        function rKeyCheck() {\n                if (key[0].length >= 3) {\n                        switch (key[0].charAt(2)) {\n                                \/\/ ODMS R8\n                                case '8':\n                                        version = OM + R8;\n                                        keyVolume();\n                                        supported = yesSup;\n                                        break;\n                                \/\/ ODMS R7\n                                case '7':\n                                        version = ODMS + R7;\n                                        keyVolume();\n                                        supported = noSup;\n                                        break;\n                                        \/\/ ODMS R6\n                                case '6':\n                                        version = ODMS + R6;\n                                        keyRegion();\n                                        keyVolume();\n                                        supported = noSup;\n                                        break;\n                                        \/\/ R5\n                                case '5':\n                                        version = DSS + R5;\n                                        keyVolume();\n                                        supported = noSup;\n                                        break;\n                                        \/\/ R4\n                                case 'M':\n                                        version = DSS + R4;\n                                        supported = noSup;\n                                        break;\n                                default:\n                                        keyError();\n                                        break;\n                        }\n                }\n        }\n        \/\/ Checks & outputs volume license amounts\n        function keyVolume() {\n                try {\n                        switch (key[1]) {\n                                \/\/ Leaves blank until significant value is entered\n                                case null:\n                                case '':\n                                case '0':\n                                case '00':\n                                case '000':\n                                case '0000':\n                                        usernum = '';\n                                        break;\n                                        \/\/ Single-user license key\n                                case '0001':\n                                        usernum = 'You have 1 concurrent key on your license!';\n                                        break;\n                                        \/\/ Calculates the Volume of the key\n                                default:\n                                        hexnum = key[1].toString(16);\n                                        keyAmount = parseInt((hexnum), 16);\n                                        usernum = 'Your key has ' + keyAmount + ' concurrent licenses!';\n                                        break;\n                        }\n                        \/\/ Catch error - error resolves once key[1] has a valid input, hence the catch\n                } catch (err) {\n                        console.log(err.message);\n                }\n        }\n        \/\/ Check module of v6\/v7 keys\n        function v6v7module() {\n                if (key[1].length >= 4) {\n                        switch (key[1]) {\n                                case '0101':\n                                        module = 'Module: Dictation Module';\n                                        break;\n                                case '0121':\n                                        module = 'Module: Transcription Module';\n                                        break;\n                                default:\n                                        module = errorMSG;\n                                        break;\n                        }\n                } else {\n                        module = '';\n                }\n                document.getElementById('outModule').innerHTML = module;\n        }\n        \/\/ 2002 key detection\n        function detect2002() {\n                switch (key[0].charAt(2)) {\n                        case '3':\n                                key2002 = true;\n                                inputHandle();\n                                alternate();\n                                break;\n                        default:\n                                key2002 = false;\n                                break;\n                }\n        }\n        \/\/ Handles input field change\n        function inputHandle() {\n                switch (key2002) {\n                        \/\/ The key is for DSS Player 2002\n                        case true:\n                                document.getElementById('inputStd').classList.add('hidden');\n                                document.getElementById('inputOld').classList.remove('hidden');\n                                document.getElementById('inputOld').focus();\n                                document.getElementById('inputOld').value = document.getElementById('inputStd').value;\n                                document.getElementById('inputStd').value = '';\n                                break;\n                                \/\/ The key is not for DSS Player 2002\n                        case false:\n                                document.getElementById('inputStd').classList.remove('hidden');\n                                document.getElementById('inputOld').classList.add('hidden');\n                                document.getElementById('inputStd').focus();\n                                document.getElementById('inputStd').value = document.getElementById('inputOld').value;\n                                document.getElementById('inputOld').value = '';\n                                break;\n                }\n        }\n<\/script>\n","protected":false},"excerpt":{"rendered":"<p>Remarque\u00a0: Cet outil permet simplement de v\u00e9rifier les 8 premiers caract\u00e8res du num\u00e9ro de licence et indique si le logiciel est toujours disponible au t\u00e9l\u00e9chargement. Si votre code de licence ne fonctionne pas correctement, veuillez contacter notre \u00e9quipe d&#039;assistance. Veuillez saisir le code en majuscules uniquement. D\u00e9tails de la cl\u00e9 de licence\u00a0: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<\/p>","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"ghostkit_customizer_options":"","ghostkit_custom_css":"","ghostkit_custom_js_head":"","ghostkit_custom_js_foot":"","ghostkit_typography":"","footnotes":""},"categories":[77],"tags":[],"class_list":["post-1895","post","type-post","status-publish","format-standard","hentry","category-miscellaneous"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>License Key Checker - Professional Audio Support<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/audiosupport.omsystem.com\/fr\/miscellaneous\/license-key-checker\/\" \/>\n<meta property=\"og:locale\" content=\"fr_FR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"License Key Checker - Professional Audio Support\" \/>\n<meta property=\"og:description\" content=\"Note: This tool simply allows to check the first 8 characters of the license number, and informs if the software is still available for download. If your license code is not working correctly, please contact our Support Team Please insert the code in capital letters only License Key Details: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/audiosupport.omsystem.com\/fr\/miscellaneous\/license-key-checker\/\" \/>\n<meta property=\"og:site_name\" content=\"Professional Audio Support\" \/>\n<meta property=\"article:published_time\" content=\"2021-02-25T00:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-14T11:35:51+00:00\" \/>\n<meta name=\"author\" content=\"Webmaster\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@gliffen\" \/>\n<meta name=\"twitter:label1\" content=\"\u00c9crit par\" \/>\n\t<meta name=\"twitter:data1\" content=\"Webmaster\" \/>\n\t<meta name=\"twitter:label2\" content=\"Dur\u00e9e de lecture estim\u00e9e\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/audiosupport.omsystem.com\\\/miscellaneous\\\/license-key-checker\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/audiosupport.omsystem.com\\\/miscellaneous\\\/license-key-checker\\\/\"},\"author\":{\"name\":\"Webmaster\",\"@id\":\"https:\\\/\\\/audiosupport.omsystem.com\\\/en\\\/#\\\/schema\\\/person\\\/436dfd3216eb25b356a1613aa339d8f6\"},\"headline\":\"License Key Checker\",\"datePublished\":\"2021-02-25T00:00:00+00:00\",\"dateModified\":\"2025-08-14T11:35:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/audiosupport.omsystem.com\\\/miscellaneous\\\/license-key-checker\\\/\"},\"wordCount\":56,\"articleSection\":[\"Miscellaneous\"],\"inLanguage\":\"fr-FR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/audiosupport.omsystem.com\\\/miscellaneous\\\/license-key-checker\\\/\",\"url\":\"https:\\\/\\\/audiosupport.omsystem.com\\\/miscellaneous\\\/license-key-checker\\\/\",\"name\":\"License Key Checker - Professional Audio Support\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/audiosupport.omsystem.com\\\/en\\\/#website\"},\"datePublished\":\"2021-02-25T00:00:00+00:00\",\"dateModified\":\"2025-08-14T11:35:51+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/audiosupport.omsystem.com\\\/en\\\/#\\\/schema\\\/person\\\/436dfd3216eb25b356a1613aa339d8f6\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/audiosupport.omsystem.com\\\/miscellaneous\\\/license-key-checker\\\/#breadcrumb\"},\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/audiosupport.omsystem.com\\\/miscellaneous\\\/license-key-checker\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/audiosupport.omsystem.com\\\/miscellaneous\\\/license-key-checker\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/audiosupport.omsystem.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"License Key Checker\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/audiosupport.omsystem.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/audiosupport.omsystem.com\\\/en\\\/\",\"name\":\"Professional Audio Support\",\"description\":\"OM Digital Solutions\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/audiosupport.omsystem.com\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-FR\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/audiosupport.omsystem.com\\\/en\\\/#\\\/schema\\\/person\\\/436dfd3216eb25b356a1613aa339d8f6\",\"name\":\"Webmaster\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e488d5421d254a9a6a8aa55683f571ed403d3c3687642355aa48e00b19c8d5ca?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e488d5421d254a9a6a8aa55683f571ed403d3c3687642355aa48e00b19c8d5ca?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e488d5421d254a9a6a8aa55683f571ed403d3c3687642355aa48e00b19c8d5ca?s=96&d=mm&r=g\",\"caption\":\"Webmaster\"},\"sameAs\":[\"http:\\\/\\\/audiosupport.omsystem.com\",\"https:\\\/\\\/x.com\\\/gliffen\"],\"url\":\"https:\\\/\\\/audiosupport.omsystem.com\\\/fr\\\/author\\\/gliffen\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"V\u00e9rificateur de cl\u00e9 de licence - Assistance audio professionnelle","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:\/\/audiosupport.omsystem.com\/fr\/miscellaneous\/license-key-checker\/","og_locale":"fr_FR","og_type":"article","og_title":"License Key Checker - Professional Audio Support","og_description":"Note: This tool simply allows to check the first 8 characters of the license number, and informs if the software is still available for download. If your license code is not working correctly, please contact our Support Team Please insert the code in capital letters only License Key Details: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;","og_url":"https:\/\/audiosupport.omsystem.com\/fr\/miscellaneous\/license-key-checker\/","og_site_name":"Professional Audio Support","article_published_time":"2021-02-25T00:00:00+00:00","article_modified_time":"2025-08-14T11:35:51+00:00","author":"Webmaster","twitter_card":"summary_large_image","twitter_creator":"@gliffen","twitter_misc":{"\u00c9crit par":"Webmaster","Dur\u00e9e de lecture estim\u00e9e":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/audiosupport.omsystem.com\/miscellaneous\/license-key-checker\/#article","isPartOf":{"@id":"https:\/\/audiosupport.omsystem.com\/miscellaneous\/license-key-checker\/"},"author":{"name":"Webmaster","@id":"https:\/\/audiosupport.omsystem.com\/en\/#\/schema\/person\/436dfd3216eb25b356a1613aa339d8f6"},"headline":"License Key Checker","datePublished":"2021-02-25T00:00:00+00:00","dateModified":"2025-08-14T11:35:51+00:00","mainEntityOfPage":{"@id":"https:\/\/audiosupport.omsystem.com\/miscellaneous\/license-key-checker\/"},"wordCount":56,"articleSection":["Miscellaneous"],"inLanguage":"fr-FR"},{"@type":"WebPage","@id":"https:\/\/audiosupport.omsystem.com\/miscellaneous\/license-key-checker\/","url":"https:\/\/audiosupport.omsystem.com\/miscellaneous\/license-key-checker\/","name":"V\u00e9rificateur de cl\u00e9 de licence - Assistance audio professionnelle","isPartOf":{"@id":"https:\/\/audiosupport.omsystem.com\/en\/#website"},"datePublished":"2021-02-25T00:00:00+00:00","dateModified":"2025-08-14T11:35:51+00:00","author":{"@id":"https:\/\/audiosupport.omsystem.com\/en\/#\/schema\/person\/436dfd3216eb25b356a1613aa339d8f6"},"breadcrumb":{"@id":"https:\/\/audiosupport.omsystem.com\/miscellaneous\/license-key-checker\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/audiosupport.omsystem.com\/miscellaneous\/license-key-checker\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/audiosupport.omsystem.com\/miscellaneous\/license-key-checker\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/audiosupport.omsystem.com\/"},{"@type":"ListItem","position":2,"name":"License Key Checker"}]},{"@type":"WebSite","@id":"https:\/\/audiosupport.omsystem.com\/en\/#website","url":"https:\/\/audiosupport.omsystem.com\/en\/","name":"Assistance audio professionnelle","description":"Solutions num\u00e9riques OM","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/audiosupport.omsystem.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Person","@id":"https:\/\/audiosupport.omsystem.com\/en\/#\/schema\/person\/436dfd3216eb25b356a1613aa339d8f6","name":"Webmestre","image":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/secure.gravatar.com\/avatar\/e488d5421d254a9a6a8aa55683f571ed403d3c3687642355aa48e00b19c8d5ca?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/e488d5421d254a9a6a8aa55683f571ed403d3c3687642355aa48e00b19c8d5ca?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e488d5421d254a9a6a8aa55683f571ed403d3c3687642355aa48e00b19c8d5ca?s=96&d=mm&r=g","caption":"Webmaster"},"sameAs":["http:\/\/audiosupport.omsystem.com","https:\/\/x.com\/gliffen"],"url":"https:\/\/audiosupport.omsystem.com\/fr\/author\/gliffen\/"}]}},"_links":{"self":[{"href":"https:\/\/audiosupport.omsystem.com\/fr\/wp-json\/wp\/v2\/posts\/1895","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/audiosupport.omsystem.com\/fr\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/audiosupport.omsystem.com\/fr\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/audiosupport.omsystem.com\/fr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/audiosupport.omsystem.com\/fr\/wp-json\/wp\/v2\/comments?post=1895"}],"version-history":[{"count":7,"href":"https:\/\/audiosupport.omsystem.com\/fr\/wp-json\/wp\/v2\/posts\/1895\/revisions"}],"predecessor-version":[{"id":6339,"href":"https:\/\/audiosupport.omsystem.com\/fr\/wp-json\/wp\/v2\/posts\/1895\/revisions\/6339"}],"wp:attachment":[{"href":"https:\/\/audiosupport.omsystem.com\/fr\/wp-json\/wp\/v2\/media?parent=1895"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/audiosupport.omsystem.com\/fr\/wp-json\/wp\/v2\/categories?post=1895"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/audiosupport.omsystem.com\/fr\/wp-json\/wp\/v2\/tags?post=1895"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}