{"id":4692,"date":"2025-06-17T13:06:56","date_gmt":"2025-06-17T13:06:56","guid":{"rendered":"https:\/\/www.licensingschool.co.uk\/licenseverse\/?post_type=lessons&#038;p=4692"},"modified":"2026-04-07T19:45:56","modified_gmt":"2026-04-07T19:45:56","slug":"glossary","status":"publish","type":"lessons","link":"https:\/\/www.licensingschool.co.uk\/licenseverse\/glossary\/","title":{"rendered":"Glossary"},"content":{"rendered":"\n<p><\/p>\n\n\n\n\n<style>\n\/* 1. Typography & 3. Technical Implementation: Word Fade CSS *\/\n@keyframes wordFadeIn {\n    0%   { opacity: 0; transform: translateY(15px); }\n    100% { opacity: 1; transform: translateY(0); }\n}\n\n#ls-glossary-intro {\n    font-family: \"Segoe UI\", system-ui, -apple-system, sans-serif; \/* Clean sans-serif stack *\/\n    font-size: 10pt; \/* Reduced by 1pt *\/\n    line-height: 1.6;\n    color: #4b5563;\n    text-align: left; \/* Left-aligned *\/\n    margin: 0 0 18px 0;\n    padding: 0;\n}\n\n#ls-glossary-intro .word-fade {\n    display: inline-block;\n    opacity: 0;\n    animation: wordFadeIn 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;\n}\n<\/style>\n\n<p id=\"ls-glossary-intro\"><\/p>\n\n<script>\n\/\/ 3. Technical Implementation: JavaScript Word Split & Staggered Delay\n\/\/ Runs immediately to start intro animation without blocking glossary load\n(function() {\n    var introText = \"Welcome to the LicenseVerse Glossary! Here you'll find hundreds of licensing terms explained in a simple way, with more information available for LicenseVerse subscribers.\";\n    var introEl = document.getElementById('ls-glossary-intro');\n    if (!introEl) return;\n    \n    \/\/ Split text into individual words\n    var words = introText.split(' ');\n    \n    \/\/ Wrap each word in a span with the .word-fade class\n    introEl.innerHTML = words.map(function(w) {\n        return '<span class=\"word-fade\">' + w + '<\/span>';\n    }).join(' ');\n    \n    \/\/ Apply a staggered 60ms animation delay to each word (more obvious word-by-word effect)\n    Array.prototype.forEach.call(introEl.querySelectorAll('.word-fade'), function(span, i) {\n        span.style.animationDelay = (i * 30) + 'ms';\n    });\n})();\n<\/script>\n\n<div id=\"ls-glossary-container\">\n<!-- Load Mark.js Dependency Asynchronously so it doesn't block the page load -->\n<script async src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/mark.js\/8.11.1\/mark.min.js\"><\/script>\n<!--\n    FLASH PREVENTION: This inline script runs synchronously, before the browser\n    paints, and marks the nearest column ancestor with a class that hides all\n    sibling p\/li elements via CSS. \n-->\n<script>\n(function() {\n    var widgetEl = document.getElementById('ls-glossary-container') || document.currentScript.parentElement;\n    if (!widgetEl) return;\n    var selectors = ['.vc_column-inner','.wpb_wrapper','.vc_column_container','.wp-block-column','.entry-content','.post-content'];\n    var ancestor = null;\n    for (var s = 0; s < selectors.length; s++) {\n        var c = widgetEl.closest(selectors[s]);\n        if (c) { ancestor = c; break; }\n    }\n    if (!ancestor) ancestor = widgetEl.parentElement;\n    if (ancestor) ancestor.classList.add('ls-glossary-pending');\n})();\n<\/script>\n<style>\n\/* Hide sibling content instantly before JS processes it, preventing a flash of raw data. \n   Excluded #ls-glossary-intro so the intro animation shows immediately. *\/\n.ls-glossary-pending > p:not(#ls-glossary-intro),\n.ls-glossary-pending > li,\n.ls-glossary-pending > ul > li,\n.ls-glossary-pending > ol > li,\n.ls-glossary-pending * > p:not(#ls-glossary-intro),\n.ls-glossary-pending * > li {\n    visibility: hidden !important;\n}\n\n\/* 4. Pleasant Fade-in for the main Glossary Content *\/\n@keyframes pleasantFadeIn {\n    0%   { opacity: 0; transform: translateY(15px); }\n    100% { opacity: 1; transform: translateY(0); }\n}\n\n#glossary-content, #search-results-container, #dotd-container {\n    animation: pleasantFadeIn 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;\n}\n\n\/* Scoped Styles for 650px Column Compatibility *\/\n#ls-glossary-container {\n    --theme-color: #97C93F;\n    --text-color: #505050;\n    --term-color: #333333;\n    --bg-color: transparent;\n    --border-color: #e0e0e0;\n    font-family: \"Segoe UI\", system-ui, -apple-system, sans-serif;\n    background-color: var(--bg-color);\n    color: var(--text-color);\n    line-height: 1.6;\n    transition: background-color 0.8s ease, box-shadow 0.8s ease;\n    border-radius: 16px;\n    width: 100%;\n    max-width: 100%;\n    margin: 0 auto;\n    padding: 0;\n    box-sizing: border-box;\n    position: relative;\n    overflow: visible !important;\n    \/* NUCLEAR: Remove all containment that clips content *\/\n    contain: none !important;\n    content-visibility: visible !important;\n    contain-intrinsic-size: none !important;\n    clip: auto !important;\n    clip-path: none !important;\n}\n#ls-glossary-container * {\n    box-sizing: border-box;\n    scroll-behavior: auto !important;\n}\n\/* --- Memory Lane Atmospheric Effects --- *\/\n#ls-glossary-container.memory-lane-mode {\n    background-color: transparent;\n    box-shadow: none;\n}\n#ls-glossary-container.memory-lane-mode::before {\n    content: \"\";\n    position: absolute;\n    top: -20px;\n    left: -30px;\n    right: -30px;\n    bottom: -30px;\n    background: linear-gradient(135deg, rgba(255, 140, 0, 0.09) 0%, rgba(255, 20, 147, 0.07) 50%, rgba(255, 255, 0, 0.03) 100%);\n    border-radius: 24px;\n    pointer-events: none;\n    z-index: 0;\n    filter: blur(35px);\n}\n\/* Header - Hidden initially, fades in when .visible is applied *\/\n#ls-glossary-container .sticky-header {\n    position: relative;\n    top: 0;\n    background: transparent;\n    padding: 10px 0 20px 0;\n    z-index: 100;\n    transition: opacity 1.2s cubic-bezier(0.22, 0.61, 0.36, 1), transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);\n    opacity: 0;\n    transform: translateY(10px);\n    pointer-events: none;\n    overflow: visible !important;\n}\n#ls-glossary-container .sticky-header.visible {\n    opacity: 1;\n    transform: translateY(0);\n    pointer-events: auto;\n}\n#ls-glossary-container.memory-lane-mode .sticky-header {\n    background-color: transparent;\n}\n#ls-glossary-container .header-controls {\n    display: flex;\n    gap: 10px;\n    align-items: stretch;\n    width: 100%;\n    position: relative;\n    z-index: 20;\n    overflow: visible !important;\n}\n\/* Search Bar Animation *\/\n@keyframes pulsate-green-outline {\n    0% { border-color: var(--border-color); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }\n    50% { border-color: var(--theme-color); box-shadow: 0 8px 25px rgba(151, 201, 63, 0.3); }\n    100% { border-color: var(--border-color); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }\n}\n#ls-glossary-container .search-container {\n    position: relative;\n    display: flex;\n    align-items: center;\n    background: #fff;\n    border: 2px solid var(--border-color);\n    border-radius: 50px;\n    transition: all 0.3s;\n    overflow: visible !important;\n    flex-grow: 1;\n    animation: pulsate-green-outline 2.5s infinite ease-in-out;\n}\n#ls-glossary-container .search-container:focus-within {\n    animation: none;\n    border-color: var(--theme-color);\n    box-shadow: 0 8px 25px rgba(151, 201, 63, 0.3);\n    transform: translateY(-2px);\n}\n#ls-glossary-container #search-input {\n    flex-grow: 1;\n    width: 100%;\n    padding: 14px 20px;\n    font-size: 1.1rem;\n    border: none;\n    outline: none;\n    color: #333;\n    background: transparent;\n}\n#ls-glossary-container #search-input::placeholder {\n    color: #d1d1d1;\n    font-style: italic;\n    opacity: 1;\n}\n#ls-glossary-container #clear-search {\n    width: 50px;\n    display: flex;\n    align-items: center;\n    justify-content: center;\n    border-left: 1px solid var(--border-color);\n    cursor: pointer;\n    font-size: 1.2rem;\n    color: #999;\n    align-self: stretch;\n    background: #f8f9fa;\n    border-radius: 0 48px 48px 0;\n}\n#ls-glossary-container #clear-search:hover { background-color: #ffebee; color: #d32f2f; }\n#ls-glossary-container #easter-egg-trigger {\n    position: absolute;\n    right: 0;\n    top: -12px;\n    color: #e6e6e6;\n    cursor: default;\n    user-select: none;\n    display: flex;\n    align-items: center;\n    padding: 0 4px;\n    font-weight: bold;\n    transition: color 0.3s ease;\n    z-index: 100;\n}\n#ls-glossary-container #easter-egg-trigger:hover {\n    color: #cccccc;\n    cursor: pointer;\n}\n\/* --- Memory Lane Button --- *\/\n#ls-glossary-container #legacy-filter-btn {\n    position: relative;\n    display: flex;\n    align-items: center;\n    justify-content: center;\n    gap: 8px;\n    background: #f8f9fa;\n    border: 2px solid #e0e0e0;\n    border-radius: 50px;\n    padding: 0 20px;\n    min-height: 50px;\n    font-family: inherit;\n    font-size: 1rem;\n    font-weight: 600;\n    color: #505050;\n    transition: all 0.3s ease;\n    cursor: pointer;\n    white-space: nowrap;\n    overflow: visible !important;\n}\n#ls-glossary-container #legacy-filter-btn svg {\n    transition: transform 0.3s ease;\n}\n#ls-glossary-container #legacy-filter-btn:hover {\n    border-color: #2e7d32;\n    background: #e8f5e9;\n}\n#ls-glossary-container #legacy-filter-btn.active {\n    border-color: #2e7d32;\n    background: #e8f5e9;\n    color: #2e7d32;\n    transform: translateY(-2px);\n}\n\/* --- Memory Lane Animated Tooltip --- *\/\n#ls-glossary-container .legacy-tooltip {\n    position: absolute;\n    top: calc(100% + 12px);\n    left: 50%;\n    transform: translateX(-50%) translateY(-10px);\n    background-color: #333333;\n    color: #ffffff;\n    padding: 8px 14px;\n    border-radius: 6px;\n    font-size: 0.85rem;\n    font-weight: 500;\n    white-space: nowrap;\n    pointer-events: none;\n    opacity: 0;\n    box-shadow: 0 4px 15px rgba(0,0,0,0.15);\n    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);\n    z-index: 10000;\n    overflow: visible !important;\n}\n#ls-glossary-container .legacy-tooltip::before {\n    content: \"\";\n    position: absolute;\n    bottom: 100%;\n    left: 50%;\n    transform: translateX(-50%);\n    border-width: 6px;\n    border-style: solid;\n    border-color: transparent transparent #333333 transparent;\n}\n#ls-glossary-container #legacy-filter-btn:hover .legacy-tooltip {\n    opacity: 1;\n    transform: translateX(-50%) translateY(0);\n}\n\/* --- Memory Lane Notification Banner --- *\/\n#ls-glossary-container #memory-lane-banner {\n    background: #e8f5e9;\n    color: #2e7d32;\n    border-left: 4px solid #2e7d32;\n    padding: 14px 20px;\n    border-radius: 6px;\n    margin-top: 15px;\n    display: flex;\n    flex-direction: row;\n    align-items: center;\n    justify-content: space-between;\n    gap: 20px;\n    flex-wrap: wrap;\n    box-shadow: 0 4px 12px rgba(0,0,0,0.05);\n    animation: slideDown 0.3s ease-out;\n    position: relative;\n    z-index: 20;\n    overflow: visible !important;\n}\n@keyframes slideDown {\n    from { opacity: 0; transform: translateY(-10px); }\n    to { opacity: 1; transform: translateY(0); }\n}\n#ls-glossary-container .banner-text {\n    font-weight: 600;\n    line-height: 1.5;\n    flex: 1;\n}\n\/* --- Exit Button --- *\/\n#ls-glossary-container #exit-memory-lane-btn {\n    background: #ffffff;\n    color: var(--theme-color);\n    border: 2px solid var(--theme-color);\n    padding: 10px 20px;\n    border-radius: 50px;\n    font-family: inherit;\n    font-size: 0.95rem;\n    font-weight: 700;\n    cursor: pointer;\n    transition: all 0.3s ease;\n    box-shadow: 0 4px 10px rgba(151, 201, 63, 0.1);\n    white-space: nowrap;\n}\n#ls-glossary-container #exit-memory-lane-btn:hover {\n    background: var(--theme-color);\n    color: #ffffff;\n    transform: translateY(-2px);\n    box-shadow: 0 6px 15px rgba(151, 201, 63, 0.3);\n}\n\/* --- Definition of the Day Banner --- *\/\n#ls-glossary-container .dotd-banner {\n    background: linear-gradient(135deg, rgba(151, 201, 63, 0.08) 0%, rgba(151, 201, 63, 0.02) 100%);\n    border: 1px dashed rgba(151, 201, 63, 0.5);\n    border-radius: 8px;\n    padding: 12px 18px;\n    margin-top: 15px;\n    box-shadow: 0 4px 10px rgba(0,0,0,0.02);\n    transition: opacity 0.5s ease, max-height 0.5s ease, margin 0.5s ease, padding 0.5s ease, border-width 0.5s ease;\n    max-height: 400px;\n    overflow: visible !important;\n    opacity: 1;\n    position: relative;\n    z-index: 15;\n}\n#ls-glossary-container .dotd-banner.fade-out {\n    opacity: 0;\n    max-height: 0;\n    margin-top: 0;\n    margin-bottom: 0;\n    padding-top: 0;\n    padding-bottom: 0;\n    border-width: 0;\n}\n#ls-glossary-container .dotd-title {\n    font-size: 0.8rem;\n    font-weight: 800;\n    color: var(--theme-color);\n    text-transform: uppercase;\n    letter-spacing: 1px;\n    margin-bottom: 6px;\n    display: flex;\n    align-items: center;\n    gap: 6px;\n}\n#ls-glossary-container .dotd-title svg {\n    width: 14px;\n    height: 14px;\n    fill: currentColor;\n}\n#ls-glossary-container #dotd-content {\n    font-size: 0.95rem;\n    line-height: 1.5;\n    color: var(--text-color);\n}\n\/* Typography & Layout *\/\n#ls-glossary-container .letter-section { margin-bottom: 2rem; position: relative; z-index: 2; padding: 0 10px; }\n#ls-glossary-container .letter-header {\n    font-size: 1.5rem;\n    font-weight: 700;\n    color: var(--theme-color);\n    border-bottom: 2px solid var(--theme-color);\n    margin-bottom: 1.5rem;\n    text-transform: uppercase;\n    display: flex;\n    justify-content: space-between;\n    align-items: center;\n}\n\/* Search Results Headers *\/\n#ls-glossary-container .search-results-section {\n    margin-bottom: 2rem;\n    position: relative;\n    z-index: 2;\n}\n#ls-glossary-container .search-section-header {\n    font-size: 1.15rem;\n    font-weight: 700;\n    color: var(--theme-color);\n    border-bottom: 2px solid var(--theme-color);\n    margin-bottom: 1.2rem;\n    padding-bottom: 5px;\n    text-transform: uppercase;\n}\n#ls-glossary-container .glossary-item {\n    margin-bottom: 1.2rem;\n    font-size: 1rem;\n    padding: 10px;\n    border-radius: 6px;\n    border: 1px solid transparent;\n    position: relative;\n    word-wrap: break-word;\n}\n#ls-glossary-container .glossary-item.exact-match {\n    border: 2px solid var(--theme-color);\n    background-color: rgba(151, 201, 63, 0.08);\n    box-shadow: 0 4px 15px rgba(0,0,0,0.05);\n    padding: 15px;\n    margin: 0 0 1.2rem 0;\n}\n#ls-glossary-container .glossary-item.exact-match::before {\n    content: \"\u2713 Exact Match\"; \/* Fixed dodgy question mark icon *\/\n    display: block;\n    font-size: 0.75rem;\n    color: var(--theme-color);\n    font-weight: 800;\n    text-transform: uppercase;\n    letter-spacing: 1px;\n    margin-bottom: 8px;\n}\n#ls-glossary-container mark {\n    background-color: rgba(255, 235, 59, 0.6);\n    color: inherit;\n    padding: 0 1px;\n    border-radius: 2px;\n}\n@keyframes pulse-green {\n    0% { background-color: rgba(151, 201, 63, 0); }\n    10% { background-color: rgba(151, 201, 63, 0.5); transform: scale(1.01); border-color: var(--theme-color); }\n    50% { background-color: rgba(151, 201, 63, 0.4); transform: scale(1.01); border-color: var(--theme-color); }\n    100% { background-color: rgba(151, 201, 63, 0); transform: scale(1); border-color: transparent; }\n}\n#ls-glossary-container .active-pulse {\n    animation: pulse-green 4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;\n}\n#ls-glossary-container .inline-scroll-back {\n    display: flex;\n    align-items: center;\n    gap: 8px;\n    width: fit-content;\n    margin-left: auto;\n    margin-top: 5px;\n    margin-bottom: 25px;\n    padding: 6px 16px;\n    border: 2px solid var(--theme-color);\n    border-radius: 50px;\n    font-size: 0.85rem;\n    color: var(--theme-color);\n    font-weight: 700;\n    text-transform: uppercase;\n    cursor: pointer;\n    background: #fff;\n    position: relative;\n    z-index: 5;\n}\n#ls-glossary-container .inline-scroll-back:hover { background: var(--theme-color); color: #fff; }\n#ls-glossary-container .inline-scroll-back svg { width: 14px; height: 14px; fill: currentColor; }\n#ls-glossary-container .term-label { font-weight: 700; color: var(--term-color); }\n#ls-glossary-container a { color: var(--theme-color); text-decoration: none; position: relative; z-index: 5; }\n#ls-glossary-container a:hover { text-decoration: underline; }\n#ls-glossary-container #no-results { text-align: center; font-style: italic; color: #999; display: none; margin-top: 20px; position: relative; z-index: 2;}\n#ls-glossary-container .hidden { display: none !important; }\n\n\/* --- Rain Drop Entry Animation --- *\/\n@keyframes ls-raindrop {\n    0%   { opacity: 0; transform: translateY(-22px); }\n    60%  { opacity: 1; transform: translateY(3px); }\n    80%  { transform: translateY(-2px); }\n    100% { opacity: 1; transform: translateY(0); }\n}\n#ls-glossary-container .glossary-item.rain-pending {\n    opacity: 0;\n}\n#ls-glossary-container .glossary-item.rain-drop {\n    animation: ls-raindrop 0.22s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;\n}\n<\/style>\n<div class=\"sticky-header\">\n<div class=\"header-controls\">\n<div class=\"search-container\">\n<input type=\"text\" id=\"search-input\" placeholder=\"\" autocomplete=\"off\">\n<div id=\"clear-search\" class=\"hidden\" title=\"Clear Search\">\n<span style=\"font-weight:bold;\">&times;<\/span>\n<\/div>\n<\/div>\n<!-- ========================================================================= -->\n<!-- EASTER EGG HTML (TO BE REMOVED IN THE FUTURE)                             -->\n<!-- ========================================================================= -->\n<span id=\"easter-egg-trigger\">_<\/span>\n<!-- ========================================================================= -->\n<button id=\"legacy-filter-btn\" class=\"hidden\">\n<!-- Enlarged SVG Icon -->\n<svg width=\"30\" height=\"30\" viewBox=\"0 0 128 128\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n<polygon points=\"72,36 40,64 72,92\" fill=\"#e8f5e9\" stroke=\"#2e7d32\" stroke-width=\"4\"\/>\n<polygon points=\"100,36 68,64 100,92\" fill=\"#e8f5e9\" stroke=\"#2e7d32\" stroke-width=\"4\"\/>\n<\/svg>\n<span>Memory Lane<\/span>\n<!-- Custom Animated Tooltip -->\n<div class=\"legacy-tooltip\">View only legacy and retired products<\/div>\n<\/button>\n<\/div>\n<!-- Definition of the Day Banner -->\n<div id=\"dotd-container\" class=\"dotd-banner\" style=\"display: none;\">\n<div class=\"dotd-title\">\n<svg viewBox=\"0 0 24 24\"><path d=\"M19 9l1.25-2.75L23 5l-2.75-1.25L19 1l-1.25 2.75L15 5l2.75 1.25L19 9zm-7.5.5L9 4 6.5 9.5 1 12l5.5 2.5L9 20l2.5-5.5L17 12l-5.5-2.5zM19 15l-1.25 2.75L15 19l2.75 1.25L19 23l1.25-2.75L23 19l-2.75-1.25L19 15z\"\/><\/svg>\nDefinition of the Day\n<\/div>\n<div id=\"dotd-content\"><\/div>\n<\/div>\n<div id=\"memory-lane-banner\" class=\"hidden\">\n<div class=\"banner-text\">\nWelcome to Memory Lane, where you can reminisce, recollect, and rediscover legacy and retired Microsoft products and terms.\n<\/div>\n<button id=\"exit-memory-lane-btn\">Back to full Glossary<\/button>\n<!-- Whitelist Container is hidden from UI, solely acting as a code-level configuration -->\n<div class=\"whitelist-container\" style=\"display: none;\">\n<label for=\"whitelist-input\">Whitelist overrides (comma-separated):<\/label>\n<input type=\"text\" id=\"whitelist-input\" value=\"Microsoft 365 Admin Center\" autocomplete=\"off\">\n<\/div>\n<\/div>\n<\/div>\n<!-- Active Search Results Container -->\n<div id=\"search-results-container\" style=\"display: none; position: relative; z-index: 2;\">\n<div id=\"exact-match-container\"><\/div>\n<div id=\"relevant-matches-container\"><\/div>\n<div id=\"other-matches-container\"><\/div>\n<\/div>\n<!-- Alphabetical Standard Glossary List -->\n<div id=\"glossary-content\"><\/div>\n<div id=\"no-results\">No matching terms found.<\/div>\n\n<\/div>\n\n<script>\n(function() {\n\nfunction collectRawDataFromPage() {\n    const widgetEl = document.getElementById('ls-glossary-container');\n    if (!widgetEl) return '';\n\n    const columnSelectors = ['.vc_column-inner','.wpb_wrapper','.vc_column_container','.wp-block-column','.entry-content','.post-content'];\n    let columnAncestor = null;\n\n    for (const sel of columnSelectors) {\n        const candidate = widgetEl.closest(sel);\n        if (candidate) { columnAncestor = candidate; break; }\n    }\n\n    if (!columnAncestor) columnAncestor = widgetEl.parentElement;\n    if (!columnAncestor) return '';\n\n    const candidates = columnAncestor.querySelectorAll('p, li');\n    const collectedLines = [];\n    const elementsToHide = [];\n\n    candidates.forEach(function(el) {\n        if (widgetEl.contains(el) || el.id === 'ls-glossary-intro') return;\n        const plainText = (el.innerText || el.textContent || '').trim();\n        if (!plainText.includes(':')) return;\n\n        const rawHtml = el.innerHTML.replace(\/<br\\s*\\\/?>\/gi, '\\n').replace(\/&nbsp;\/gi, ' ');\n        const lines = rawHtml.split(\/\\r?\\n\/);\n\n        lines.forEach(function(lineHtml) {\n            const linePlain = lineHtml.replace(\/<[^>]*>\/g, '').trim();\n            if (!linePlain || !linePlain.includes(':')) return;\n            collectedLines.push(lineHtml.trim());\n        });\n        elementsToHide.push(el);\n    });\n\n    elementsToHide.forEach(function(el) { el.style.display = 'none'; });\n    if (columnAncestor) columnAncestor.classList.remove('ls-glossary-pending');\n\n    return collectedLines.join('\\n');\n}\n\nconst container = document.getElementById(\"ls-glossary-container\");\nconst searchInput = container.querySelector(\"#search-input\");\nconst clearSearchBtn = container.querySelector(\"#clear-search\");\nconst legacyBtn = container.querySelector(\"#legacy-filter-btn\");\nconst easterEggTrigger = container.querySelector(\"#easter-egg-trigger\");\nconst memoryBanner = container.querySelector(\"#memory-lane-banner\");\nconst exitMemoryLaneBtn = container.querySelector(\"#exit-memory-lane-btn\");\nconst whitelistInput = container.querySelector(\"#whitelist-input\");\nconst glossaryContent = container.querySelector(\"#glossary-content\");\nconst searchResultsContainer = container.querySelector(\"#search-results-container\");\nconst exactMatchContainer = container.querySelector(\"#exact-match-container\");\nconst relevantMatchesContainer = container.querySelector(\"#relevant-matches-container\");\nconst otherMatchesContainer = container.querySelector(\"#other-matches-container\");\nconst noResults = container.querySelector(\"#no-results\");\n\nlet glossaryData = [];\nlet termToId = new Map();\nlet markInstance;\nlet searchTimeout;\nlet globalTermRegex = null; \n\n\/\/ Safely get Mark JS instance, accommodating the async load\nfunction getMarkInstance() {\n    if (!markInstance && typeof Mark !== 'undefined') {\n        markInstance = new Mark(container);\n    }\n    return markInstance;\n}\n\nfunction normalizeForLookup(str) {\nreturn str.toLowerCase().replace(\/licen[cs]e\/g, \"license\").replace(\/z\/g, \"s\").replace(\/[\\s\\-]+\/g, \" \").replace(\/:\/g, '').trim();\n}\n\nfunction typePlaceholder() {\nconst fullText = \"Type to find a definition, or enter a letter to browse...\";\nlet i = 0;\nsetTimeout(() => {\nconst typing = setInterval(() => {\nif (i < fullText.length) {\nsearchInput.placeholder = fullText.substring(0, i + 1);\ni++;\n} else { clearInterval(typing); }\n}, 30);\n}, 200);\n}\n\nfunction generateLookupKey(text) {\nreturn text.toLowerCase().replace(\/['\"()]\/g, '').replace(\/[^a-z0-9]+\/g, '-').replace(\/^-+|-+$\/g, '');\n}\n\nfunction escapeRegExp(string) {\nreturn string.replace(\/[.*+?^${}()|[\\]\\\\]\/g, '\\\\$&#038;');\n}\n\nfunction linkifyUrls(text) {\nconst placeholders = [];\nlet tempText = text.replace(\/<a\\b[^>]*>.*?<\\\/a>\/gi, match => {\nplaceholders.push(match); return `__URL_PLACEHOLDER_${placeholders.length - 1}__`;\n});\nconst urlRegex = \/\\b(?:(?:https?|ftp|file):\\\/\\\/|www\\.)\\S+(?![^<]*>)\/gi;\ntempText = tempText.replace(urlRegex, url => {\nconst cleanUrl = url.replace(\/[.,;!?]+$\/, '');\nconst href = cleanUrl.toLowerCase().startsWith('www.') ? 'https:\/\/' + cleanUrl : cleanUrl;\nreturn `<a href=\"${href}\" target=\"_top\">${cleanUrl}<\/a>`;\n});\nreturn tempText.replace(\/__URL_PLACEHOLDER_(\\d+)__\/g, (_, index) => placeholders[parseInt(index, 10)]);\n}\n\nfunction autoLinkTerms(html, currentItemId, regex, termIdMap) {\nif (!html || !regex) return html;\nconst placeholders = [];\nlet tempHtml = html.replace(\/<a\\b[^>]*>.*?<\\\/a>\/gi, match => {\nplaceholders.push(match); return `__ALINK_${placeholders.length - 1}__`;\n});\ntempHtml = tempHtml.replace(\/[^.!?]+(?:[.!?]+|$)\/g, (sentence) => {\nif (sentence.indexOf(\"Learn about\") !== -1) return sentence;\nreturn sentence.replace(regex, (fullMatch) => {\nlet lookupTerm = fullMatch.toLowerCase().replace(\/[\\s\\-]+\/g, ' ').trim();\nif (lookupTerm === 'has') return fullMatch;\nlet targetId = termIdMap.get(lookupTerm);\nif (!targetId) {\nif (lookupTerm.endsWith(\"'s\")) lookupTerm = lookupTerm.slice(0, -2).trim();\nelse if (lookupTerm.endsWith(\"s\")) lookupTerm = lookupTerm.slice(0, -1).trim();\ntargetId = termToId.get(lookupTerm);\n}\nif (targetId && targetId !== currentItemId) {\nreturn `<a href=\"#${targetId}\">${fullMatch}<\/a>`;\n}\nreturn fullMatch;\n});\n});\nreturn tempHtml.replace(\/__ALINK_(\\d+)__\/g, (_, index) => placeholders[parseInt(index, 10)]);\n}\n\n\/\/ Lazy Link helper to instantly solve white screen issue\nfunction ensureLinked(item) {\n    if (item.needsLinking && !item.isAlias) {\n        item.def = autoLinkTerms(item.def, item.id, globalTermRegex, termToId);\n        item.def = linkifyUrls(item.def);\n        item.needsLinking = false;\n    }\n}\n\nfunction processGlossaryText(text) {\n    const lines = text.split('\\n').filter(line => line.trim());\n    const rawItems = [];\n    termToId.clear();\n    const termToFullTerm = new Map();\n    const termsForRegex = [];\n    \n    lines.forEach(line => {\n        const mainContent = line.trim().replace(\/^\"|\"$\/g, '').trim();\n        if (!mainContent) return;\n\n        const plainContent = mainContent.replace(\/<[^>]*>\/g, '').replace(\/&nbsp;\/g, ' ').trim();\n        if (!plainContent.includes(':')) return;\n\n        const colonPlainIndex = plainContent.indexOf(':');\n        let visibleCount = 0;\n        let splitIndexInHtml = -1;\n        let insideTag = false;\n        for (let ci = 0; ci < mainContent.length; ci++) {\n            const ch = mainContent[ci];\n            if (ch === '<') { insideTag = true; continue; }\n            if (ch === '>') { insideTag = false; continue; }\n            if (insideTag) continue;\n            if (visibleCount === colonPlainIndex) { splitIndexInHtml = ci; break; }\n            visibleCount++;\n        }\n\n        if (splitIndexInHtml === -1) return;\n\n        const rawTerm = mainContent.substring(0, splitIndexInHtml).replace(\/<[^>]*>\/g, '').trim();\n        let rawDef = mainContent.substring(splitIndexInHtml + 1).trim();\n        if (rawDef) {\n            rawDef = rawDef.replace(\/^(\\s*(?:<[^>]*>\\s*)*)([a-z])\/, (m, tags, ch) => tags + ch.toUpperCase());\n            const rawDefPlain = rawDef.replace(\/<[^>]*>\/g, '').trim();\n            if (rawDefPlain && !\/[.!?]$\/.test(rawDefPlain)) rawDef += '.';\n        }\n        const id = generateLookupKey(rawTerm);\n        let mainTermClean = rawTerm.replace(\/\\s*\\([^)]+\\)\/, '').trim();\n        const item = { term: rawTerm, def: rawDef, id, isAlias: false, mainTermClean: mainTermClean };\n        rawItems.push(item);\n        const normalizedKey = mainTermClean.toLowerCase().replace(\/[\\s\\-]+\/g, ' ').trim();\n        termToId.set(normalizedKey, id);\n        termToFullTerm.set(normalizedKey, rawTerm);\n        termsForRegex.push(mainTermClean);\n    });\n\n    rawItems.forEach(item => {\n        const acronymMatch = item.term.match(\/\\(([^)]+)\\)\/);\n        if (acronymMatch?.[1]) {\n            const acronym = acronymMatch[1].trim();\n            \n            \/\/ Fix: Prevent single-word descriptive labels (like \"Standard\" or \"Premium\") from becoming global auto-links.\n            \/\/ True acronyms are usually uppercase (e.g., \"M365\") or contain multiple words (e.g., \"Azure AD\").\n            const isDescriptiveLabel = !\/\\s\/.test(acronym) && acronym !== acronym.toUpperCase();\n            \n            if (!isDescriptiveLabel) {\n                const normalizedAcronym = acronym.toLowerCase().replace(\/[\\s\\-]+\/g, ' ').trim();\n                if (!termToId.has(normalizedAcronym) && normalizedAcronym !== item.mainTermClean.toLowerCase().replace(\/[\\s\\-]+\/g, ' ').trim()) {\n                    termToId.set(normalizedAcronym, item.id);\n                    termToFullTerm.set(normalizedAcronym, item.term);\n                    termsForRegex.push(acronym);\n                }\n            }\n        }\n    });\n\n    rawItems.forEach(item => {\n        if (!item.def || item.def.includes('{')) return;\n        const defAsTermRaw = item.def.replace(\/<[^>]*>\/g, '').replace(\/[.]+$\/, '').trim();\n        const defAsTermNormalized = defAsTermRaw.toLowerCase().replace(\/[\\s\\-]+\/g, ' ').trim();\n        if (termToId.has(defAsTermNormalized) && termToId.get(defAsTermNormalized) !== item.id) {\n            item.isAlias = true;\n            const targetId = termToId.get(defAsTermNormalized);\n            let displayTerm = termToFullTerm.get(defAsTermNormalized) || defAsTermRaw;\n            displayTerm = displayTerm.replace(new RegExp(`\\\\s*\\\\(${escapeRegExp(item.term)}\\\\)`, 'i'), '');\n            item.def = `<a href=\"#${targetId}\">${displayTerm}<\/a>.`;\n            const aliasSuffix = ` (${item.term})`;\n            const targetItem = rawItems.find(i => i.id === targetId);\n            if (targetItem && !targetItem.term.includes(aliasSuffix)) targetItem.term += aliasSuffix;\n        }\n    });\n\n    \/\/ Yield control so UI doesn't freeze, then process regex\/links\n    setTimeout(() => {\n        const uniqueTerms = Array.from(new Set(termsForRegex));\n        const sortedTerms = uniqueTerms.filter(t => t.length > 2 || \/^[A-Z0-9]+$\/.test(t)).sort((a, b) => b.length - a.length);\n        const patternStrings = sortedTerms.map(t => escapeRegExp(t).replace(\/[\\s\\-]+\/g, '[\\\\s\\\\xa0\\\\-]+'));\n        \n        globalTermRegex = patternStrings.length > 0 ? new RegExp(`\\\\b(?:${patternStrings.join('|')})(?:'s|s)?(?!\\\\w)`, 'gi') : null;\n\n        let manualUrlRegex = patternStrings.length > 0 \n            ? new RegExp(`((?:\\\\b(?:${patternStrings.join('|')})(?:'s|s)?(?!\\\\w)|here|this link|[^\\\\s{]+))\\\\{([^}]+)\\\\}`, 'gi') \n            : \/([^\\s{]+)\\{([^}]+)\\}\/g;\n\n        glossaryData = rawItems.map(item => {\n            if (item.isAlias) return item;\n            let def = item.def.replace(manualUrlRegex, (_, rawWord, url) => {\n                const displayText = rawWord.replace(\/_\/g, ' ');\n                let finalUrl = url.trim();\n                if (!finalUrl.startsWith('#') && !finalUrl.startsWith('http')) finalUrl = 'https:\/\/' + finalUrl;\n                const target = finalUrl.startsWith('#') ? '' : ' target=\"_top\"';\n                return `<a href=\"${finalUrl}\"${target}>${displayText}<\/a>`;\n            });\n            return { ...item, def, needsLinking: true }; \/\/ Defer auto-linking!\n        });\n\n        glossaryData.sort((a, b) => {\n            const getGroup = (str) => { const c = str.charAt(0).toUpperCase(); return \/[A-Z]\/.test(c) ? c : '#'; };\n            const groupA = getGroup(a.term), groupB = getGroup(b.term);\n            if (groupA !== groupB) return groupA === '#' ? -1 : (groupB === '#' ? 1 : groupA.localeCompare(groupB));\n            return a.term.localeCompare(b.term, undefined, { numeric: true, sensitivity: 'base' });\n        });\n\n        renderStandardGlossary(glossaryData);\n        showDefinitionOfTheDay();\n    }, 10);\n}\n\nfunction renderStandardGlossary(items, animate) {\n    glossaryContent.innerHTML = \"\";\n    const mk = getMarkInstance();\n    if(mk) mk.unmark();\n\n    if (!items || items.length === 0) return;\n\n    let currentLetter = \"\";\n    let currentSection = null;\n\n    \/\/ If this is NOT the initial animated load, render everything at once.\n    if (animate === false) {\n        items.forEach(item => {\n            ensureLinked(item);\n            const rawFirstChar = item.term.charAt(0).toUpperCase();\n            let groupChar = \/[A-Z]\/.test(rawFirstChar) ? rawFirstChar : \"#\";\n\n            if (groupChar !== currentLetter) {\n                currentLetter = groupChar;\n                currentSection = document.createElement(\"div\");\n                currentSection.className = \"letter-section\";\n                currentSection.id = `letter-${currentLetter}`;\n                currentSection.innerHTML = `<div class=\"letter-header\"><span>${currentLetter}<\/span><\/div>`;\n                glossaryContent.appendChild(currentSection);\n            }\n\n            const entry = document.createElement(\"div\");\n            entry.id = item.id;\n            entry.className = \"glossary-item\";\n            entry.innerHTML = `<span class=\"term-label\">${item.term}:<\/span> ${item.def}`;\n            currentSection.appendChild(entry);\n        });\n        return; \/\/ Done\n    }\n\n    \/\/ --- Start of initial, animated load logic ---\n\n    \/\/ Phase 1: Render the first 10 items immediately with batched DOM inserts\n    const initialItems = items.slice(0, 10);\n    \n    \/\/ Use DocumentFragment for batched DOM insertion (performance optimization)\n    const fragment = document.createDocumentFragment();\n    const chunkEntries = [];\n\n    initialItems.forEach((item, i) => {\n        ensureLinked(item); \n        const rawFirstChar = item.term.charAt(0).toUpperCase();\n        let groupChar = \/[A-Z]\/.test(rawFirstChar) ? rawFirstChar : \"#\";\n\n        if (groupChar !== currentLetter) {\n            currentLetter = groupChar;\n            currentSection = document.createElement(\"div\");\n            currentSection.className = \"letter-section\";\n            currentSection.id = `letter-${currentLetter}`;\n            currentSection.innerHTML = `<div class=\"letter-header\"><span>${currentLetter}<\/span><\/div>`;\n            fragment.appendChild(currentSection);\n        }\n\n        const entry = document.createElement(\"div\");\n        entry.id = item.id;\n        entry.innerHTML = `<span class=\"term-label\">${item.term}:<\/span> ${item.def}`;\n        entry.className = \"glossary-item rain-pending\";\n        chunkEntries.push({ el: entry, globalIdx: i });\n        currentSection.appendChild(entry);\n    });\n\n    glossaryContent.appendChild(fragment);\n\n    if (chunkEntries.length > 0) {\n        requestAnimationFrame(() => {\n            chunkEntries.forEach(({ el, globalIdx }) => {\n                setTimeout(() => {\n                    el.classList.remove('rain-pending');\n                    el.classList.add('rain-drop');\n                    setTimeout(() => el.classList.remove('rain-drop'), 250);\n                }, globalIdx * 10); \/\/ Optimized from 30ms to 10ms for faster initial load\n            });\n        });\n    }\n\n    const stickyHeader = container.querySelector('.sticky-header');\n    if (stickyHeader) stickyHeader.classList.add('visible');\n\n    \/\/ Phase 2: Render the rest after 1.5 seconds (restored per user request)\n    if (items.length > 10) {\n        setTimeout(() => {\n            const remainingItems = items.slice(10);\n            const remainingFragment = document.createDocumentFragment();\n            \n            remainingItems.forEach(item => {\n                ensureLinked(item); \n                const rawFirstChar = item.term.charAt(0).toUpperCase();\n                let groupChar = \/[A-Z]\/.test(rawFirstChar) ? rawFirstChar : \"#\";\n\n                if (groupChar !== currentLetter) {\n                    currentLetter = groupChar;\n                    currentSection = document.createElement(\"div\");\n                    currentSection.className = \"letter-section\";\n                    currentSection.id = `letter-${currentLetter}`;\n                    currentSection.innerHTML = `<div class=\"letter-header\"><span>${currentLetter}<\/span><\/div>`;\n                    remainingFragment.appendChild(currentSection);\n                }\n\n                const entry = document.createElement(\"div\");\n                entry.id = item.id;\n                entry.className = \"glossary-item\";\n                entry.innerHTML = `<span class=\"term-label\">${item.term}:<\/span> ${item.def}`;\n                currentSection.appendChild(entry);\n            });\n            \n            glossaryContent.appendChild(remainingFragment);\n        }, 1500); \/\/ 1.5 second delay for remaining items\n    }\n}\n\nfunction showDefinitionOfTheDay() {\nconst dotdEl = container.querySelector(\"#dotd-container\");\nconst dotdContent = container.querySelector(\"#dotd-content\");\nif (!dotdEl || !dotdContent) return;\nconst validItems = glossaryData.filter(item => {\nif (item.isAlias || !item.def) return false;\nconst textDef = item.def.replace(\/<[^>]*>?\/gm, '').trim();\nif (\/^See\\s+\\w+(\\s+\\w+){0,4}\\s*[.!?]?$\/i.test(textDef)) return false;\nreturn true;\n});\nif (validItems.length === 0) {\ndotdEl.style.display = 'none';\nreturn;\n}\nconst CACHE_KEY = 'ls_dotd_cache';\nconst CACHE_EXPIRY_MS = 12 * 60 * 60 * 1000;\nlet dailyItem = null;\ntry {\nconst cachedData = JSON.parse(localStorage.getItem(CACHE_KEY));\nif (cachedData && cachedData.timestamp && cachedData.itemId) {\nconst now = new Date().getTime();\nif (now - cachedData.timestamp < CACHE_EXPIRY_MS) {\ndailyItem = validItems.find(item => item.id === cachedData.itemId);\n}\n}\n} catch (e) {}\nif (!dailyItem) {\nconst randomIndex = Math.floor(Math.random() * validItems.length);\ndailyItem = validItems[randomIndex];\ntry {\nlocalStorage.setItem(CACHE_KEY, JSON.stringify({ itemId: dailyItem.id, timestamp: new Date().getTime() }));\n} catch (e) {}\n}\n\nensureLinked(dailyItem);\ndotdContent.innerHTML = `<span class=\"term-label\">${dailyItem.term}:<\/span> ${dailyItem.def}`;\ndotdEl.style.display = 'block';\n\nlet dotdDismissed = false;\nfunction dismissDotd(e) {\n    if (dotdDismissed) return;\n    \n    \/\/ Check if clicking on a link inside DOTD content - allow navigation without interference\n    const clickedLink = e.target.closest('a');\n    if (clickedLink && dotdContent.contains(clickedLink)) {\n        \/\/ Let the link navigate normally; don't dismiss banner or interfere with click\n        return;\n    }\n    \n    \/\/ If clicking inside DOTD (but not on a link), don't dismiss\n    if ((e.type === 'mousedown' || e.type === 'touchstart') && dotdEl.contains(e.target)) return;\n    \n    \/\/ Click outside DOTD or key press, dismiss immediately\n    dotdDismissed = true;\n    dotdEl.classList.add(\"fade-out\");\n    setTimeout(() => { dotdEl.style.display = 'none'; }, 500);\n    document.removeEventListener(\"keydown\", dismissDotd);\n    document.removeEventListener(\"mousedown\", dismissDotd);\n    document.removeEventListener(\"touchstart\", dismissDotd);\n}\nsetTimeout(() => {\ndocument.addEventListener(\"keydown\", dismissDotd);\ndocument.addEventListener(\"mousedown\", dismissDotd);\ndocument.addEventListener(\"touchstart\", dismissDotd);\n}, 100);\n}\n\nfunction isMemoryLaneItem(item) {\nconst rawWhitelist = whitelistInput.value;\nconst whitelist = rawWhitelist.split(',').map(s => s.trim().toLowerCase()).filter(s => s.length > 0);\nconst triggers = [\"retire\", \"end of\", \"previous name\", \"renam\", \"former name\", \"precursor\"];\nconst cleanTermAndDef = (item.term + \" \" + item.def).replace(\/<[^>]*>?\/gm, '').toLowerCase();\nfor (let w of whitelist) { if (cleanTermAndDef.includes(w)) return false; }\nfor (let t of triggers) { if (cleanTermAndDef.includes(t)) return true; }\nreturn false;\n}\n\nfunction filterGlossary(query) {\nconst trimmedQuery = query.trim();\nconst searchStr = normalizeForLookup(trimmedQuery);\nconst mk = getMarkInstance();\nif(mk) mk.unmark();\n\nexactMatchContainer.innerHTML = \"\";\nrelevantMatchesContainer.innerHTML = \"\";\notherMatchesContainer.innerHTML = \"\";\nconst isMemoryLaneActive = legacyBtn.classList.contains('active');\n\nif (trimmedQuery.length === 0) {\nglossaryContent.style.display = \"block\";\nsearchResultsContainer.style.display = \"none\";\nnoResults.style.display = \"none\";\nreturn;\n}\n\nconst tokens = searchStr.split(\/\\s+\/).filter(t => t.length > 0);\n\nfunction tokenMatches(str, token, index, totalTokens) {\n    const isLastTokenOfMultiSearch = (index === totalTokens - 1) && (totalTokens > 1);\n    if (isLastTokenOfMultiSearch) return str.includes(token);\n    if (token.length <= 3) return new RegExp('\\\\b' + escapeRegExp(token) + '\\\\b').test(str);\n    return str.includes(token);\n}\n\nlet exactMatchItems = [], relevantItems = [], otherItems = [];\n\nglossaryData.forEach(item => {\nif (isMemoryLaneActive && !isMemoryLaneItem(item)) return;\nconst termStr = normalizeForLookup(item.term + \" \" + item.mainTermClean);\nconst cleanDefText = item.def.replace(\/<[^>]*>?\/gm, '');\nconst defStr = normalizeForLookup(cleanDefText);\nconst fullStr = termStr + \" \" + defStr;\nconst isExact = (normalizeForLookup(item.term) === searchStr);\nconst matchesTerm = tokens.every((t, i) => tokenMatches(termStr, t, i, tokens.length));\nconst matchesDef = tokens.every((t, i) => tokenMatches(defStr, t, i, tokens.length));\nconst matchesAnywhere = tokens.every((t, i) => tokenMatches(fullStr, t, i, tokens.length));\nif (isExact) exactMatchItems.push(item);\nelse if (matchesTerm) relevantItems.push(item);\nelse if (matchesAnywhere) otherItems.push(item);\n});\n\nconst totalVisible = exactMatchItems.length + relevantItems.length + otherItems.length;\nglossaryContent.style.display = \"none\";\nsearchResultsContainer.style.display = \"block\";\nnoResults.style.display = (totalVisible === 0) ? \"block\" : \"none\";\n\nexactMatchItems.forEach(item => {\nensureLinked(item);\nconst el = document.createElement(\"div\");\nel.className = \"glossary-item exact-match\";\nel.id = item.id + \"-clone\";\nel.innerHTML = `<span class=\"term-label\">${item.term}:<\/span> ${item.def}`;\nexactMatchContainer.appendChild(el);\n});\n\nif (relevantItems.length > 0) {\nconst relSec = document.createElement(\"div\");\nrelSec.className = \"search-results-section\";\nif (otherItems.length > 0) {\nconst header = document.createElement(\"div\");\nheader.className = \"search-section-header\";\nheader.textContent = \"Most relevant matches\";\nrelSec.appendChild(header);\n}\nrelevantItems.forEach(item => {\nensureLinked(item);\nconst el = document.createElement(\"div\");\nel.className = \"glossary-item\";\nel.id = item.id + \"-search-clone\";\nel.innerHTML = `<span class=\"term-label\">${item.term}:<\/span> ${item.def}`;\nrelSec.appendChild(el);\n});\nrelevantMatchesContainer.appendChild(relSec);\n}\n\nif (otherItems.length > 0) {\nconst othSec = document.createElement(\"div\");\nothSec.className = \"search-results-section\";\nif (relevantItems.length > 0) {\nconst header = document.createElement(\"div\");\nheader.className = \"search-section-header\";\nheader.textContent = \"Other results\";\nothSec.appendChild(header);\n}\notherItems.forEach(item => {\nensureLinked(item);\nconst el = document.createElement(\"div\");\nel.className = \"glossary-item\";\nel.id = item.id + \"-search-clone\";\nel.innerHTML = `<span class=\"term-label\">${item.term}:<\/span> ${item.def}`;\nothSec.appendChild(el);\n});\notherMatchesContainer.appendChild(othSec);\n}\n\nif (tokens.length > 0 && totalVisible > 0 && mk) {\nlet patternStrings = tokens.map(t => escapeRegExp(t).replace(\/[sz]\/gi, '[sz]').replace(\/licen\\[sz\\]e\/gi, 'licen[csz]e').replace(\/(?:\\\\-|\\s)+\/g, '[\\\\s\\\\-]+'));\nmk.markRegExp(new RegExp(`(${patternStrings.join('|')})`, 'gi'), { separateWordSearch: false });\n}\n}\n\nsearchInput.addEventListener(\"input\", (e) => {\nconst val = e.target.value;\nclearSearchBtn.classList.toggle(\"hidden\", val.length === 0);\nclearTimeout(searchTimeout);\nsearchTimeout = setTimeout(() => {\nif (val.trim().length === 1) {\nfilterGlossary(\"\"); \nconst targetId = \/[A-Z]\/.test(val.trim().charAt(0).toUpperCase()) ? `letter-${val.trim().charAt(0).toUpperCase()}` : `letter-#`;\nconst el = container.querySelector(`#${targetId}`);\nif (el) el.scrollIntoView({ behavior: 'smooth', block: 'start' });\n} else { filterGlossary(val); }\n}, 300);\n});\n\nclearSearchBtn.addEventListener(\"click\", () => {\nsearchInput.value = \"\";\nfilterGlossary(\"\");\nclearSearchBtn.classList.add(\"hidden\");\nsearchInput.focus({preventScroll: true});\n});\n\neasterEggTrigger.addEventListener(\"click\", () => {\nlegacyBtn.classList.toggle(\"hidden\");\nsearchInput.focus({preventScroll: true});\n});\n\nlegacyBtn.addEventListener(\"click\", () => {\nlegacyBtn.classList.add(\"active\"); legacyBtn.classList.add(\"hidden\"); \ncontainer.classList.add(\"memory-lane-mode\"); memoryBanner.classList.remove(\"hidden\");\nrenderStandardGlossary(glossaryData.filter(isMemoryLaneItem), false);\nfilterGlossary(searchInput.value);\nsearchInput.focus({preventScroll: true});\n});\n\nexitMemoryLaneBtn.addEventListener(\"click\", () => {\nlegacyBtn.classList.remove(\"active\"); legacyBtn.classList.remove(\"hidden\"); \ncontainer.classList.remove(\"memory-lane-mode\"); memoryBanner.classList.add(\"hidden\");\nrenderStandardGlossary(glossaryData, false);\nfilterGlossary(searchInput.value);\nsearchInput.focus({preventScroll: true});\n});\n\nwhitelistInput.addEventListener(\"input\", () => {\nif (legacyBtn.classList.contains(\"active\")) {\nrenderStandardGlossary(glossaryData.filter(isMemoryLaneItem), false);\nfilterGlossary(searchInput.value);\n}\n});\n\ncontainer.addEventListener(\"click\", (e) => {\nif (e.target.closest('.inline-scroll-back')) {\n    \/\/ Target the highest relevant element\n    const topElement = document.getElementById('ls-glossary-intro') || container;\n    \n    \/\/ Calculate precise position to ensure we scroll slightly above the widget,\n    \/\/ accounting for typical fixed\/sticky site headers safely.\n    const scrollOffset = 100; \/\/ 100px buffer to clear sticky navigation menus\n    const targetY = topElement.getBoundingClientRect().top + window.scrollY - scrollOffset;\n    \n    window.scrollTo({\n        top: targetY,\n        behavior: 'smooth'\n    });\n    \n    searchInput.focus({preventScroll: true});\n    e.target.closest('.inline-scroll-back').remove();\n    return;\n}\n\nconst link = e.target.closest('a');\nif (!link) return;\nconst href = link.getAttribute('href');\nif (href && href.startsWith('#')) {\ne.preventDefault();\nconst targetId = href.substring(1);\nif (searchInput.value.trim() !== \"\") { searchInput.value = \"\"; clearSearchBtn.classList.add(\"hidden\"); filterGlossary(\"\"); }\nconst targetEl = container.querySelector(`#${targetId}`);\nif (targetEl) {\ntargetEl.scrollIntoView({ behavior: 'smooth', block: 'center' });\ntargetEl.classList.remove('active-pulse'); void targetEl.offsetWidth; targetEl.classList.add('active-pulse');\ncontainer.querySelectorAll('.inline-scroll-back').forEach(el => el.remove());\nconst btn = document.createElement('div');\nbtn.className = 'inline-scroll-back';\nbtn.innerHTML = `<span>Back to search<\/span> <svg viewBox=\"0 0 24 24\"><path d=\"M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z\"\/><\/svg>`;\ntargetEl.after(btn);\nsearchInput.focus({preventScroll: true});\n}\n}\n});\n\n\/\/ Optimized initialization: simplified timing for fastest initial load\n\/\/ Intro animation runs independently (started in inline script above)\n\/\/ Glossary processing starts immediately on DOMContentLoaded without waiting for intro\ndocument.addEventListener('DOMContentLoaded', () => {\n    \/\/ Process immediately without nested requestAnimationFrame delays for fastest perceived load\n    const rawData = collectRawDataFromPage();\n    processGlossaryText(rawData);\n    searchInput.focus({preventScroll: true});\n    typePlaceholder();\n});\n})();\n<\/script>\n\n\n\n<!-- LicenseVerse Brute Force Scroll-to-Top Widget -->\n<style>\n\/* Scoped to #lsv-scroll-top-widget *\/\n#lsv-scroll-top-widget {\n    --lsv-theme-color: #97C93F;\n    --lsv-theme-hover: #87b535;\n    --lsv-theme-active: #76a02f;\n}\n\n#lsv-scroll-top-widget .lsv-scroll-top-btn {\n    position: fixed !important;\n    bottom: 30px !important;\n    right: 30px !important;\n    background-color: var(--lsv-theme-color);\n    color: #ffffff;\n    border: none;\n    border-radius: 28px;\n    padding: 12px 22px 12px 16px;\n    font-family: \"Segoe UI\", system-ui, -apple-system, sans-serif;\n    font-size: 14px;\n    font-weight: 700;\n    letter-spacing: 0.5px;\n    cursor: pointer;\n    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);\n    display: flex;\n    align-items: center;\n    gap: 6px;\n    z-index: 99999 !important;\n    \n    opacity: 0;\n    visibility: hidden;\n    transform: translateY(15px);\n    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);\n    \n    touch-action: manipulation;\n    -webkit-tap-highlight-color: transparent;\n}\n\n#lsv-scroll-top-widget .lsv-scroll-top-btn.show {\n    opacity: 1;\n    visibility: visible;\n    transform: translateY(0);\n}\n\n#lsv-scroll-top-widget .lsv-scroll-top-btn:hover {\n    background-color: var(--lsv-theme-hover);\n    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);\n    transform: translateY(-2px);\n}\n\n\/* Active state for immediate feedback *\/\n#lsv-scroll-top-widget .lsv-scroll-top-btn:active {\n    background-color: var(--lsv-theme-active);\n    transform: scale(0.95);\n    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);\n    transition: transform 0.05s ease;\n}\n\n#lsv-scroll-top-widget .lsv-scroll-top-btn svg {\n    width: 22px;\n    height: 22px;\n    flex-shrink: 0;\n}\n\n\/* Mobile responsiveness *\/\n@media (max-width: 768px) {\n    #lsv-scroll-top-widget .lsv-scroll-top-btn {\n        bottom: 20px !important;\n        right: 20px !important;\n        padding: 10px 18px 10px 14px;\n        font-size: 13px;\n    }\n    #lsv-scroll-top-widget .lsv-scroll-top-btn svg {\n        width: 20px;\n        height: 20px;\n    }\n}\n\n\/* Print: hide the button *\/\n@media print {\n    #lsv-scroll-top-widget { display: none !important; }\n}\n\n\/* Smooth scroll fallback for CSS-based scrolling *\/\nhtml, body {\n    scroll-behavior: smooth;\n}\n\n\/* Respect user preference for reduced motion *\/\n@media (prefers-reduced-motion: reduce) {\n    html, body {\n        scroll-behavior: auto;\n    }\n}\n<\/style>\n\n<div id=\"lsv-scroll-top-widget\">\n    <button class=\"lsv-scroll-top-btn\" id=\"lsv-scroll-top-btn\" aria-label=\"Scroll to top\" aria-hidden=\"true\">\n        <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke-width=\"3\" stroke=\"currentColor\" aria-hidden=\"true\">\n            <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M4.5 15.75l7.5-7.5 7.5 7.5\" \/>\n        <\/svg>\n        <span>TOP<\/span>\n    <\/button>\n<\/div>\n\n<script>\n(function() {\n    'use strict';\n    \n    const CONFIG = {\n        showAfterScroll: 300,\n        throttleDelay: 50,\n        \/\/ Emulate 3 presses with these intervals (ms) to guarantee scroll reaches the top\n        pressIntervals: [0, 500, 1000] \n    };\n\n    const widget = document.getElementById('lsv-scroll-top-widget');\n    const btn = document.getElementById('lsv-scroll-top-btn');\n    \n    if (!widget || !btn) return;\n\n    let lastScrollTime = 0;\n    let scrollTimers = [];\n    \n    \/\/ The Scroll Command\n    function executeScrollCommand() {\n        const currentScroll = window.scrollY || window.pageYOffset || document.documentElement.scrollTop || 0;\n        if (currentScroll === 0) return;\n\n        \/\/ Check if user has system accessibility settings requesting reduced motion\n        const prefersReducedMotion = window.matchMedia && window.matchMedia('(prefers-reduced-motion: reduce)').matches;\n\n        \/\/ Perform smooth native scroll\n        try {\n            window.scrollTo({ \n                top: 0, \n                behavior: prefersReducedMotion ? 'auto' : 'smooth' \n            });\n        } catch (e) {\n            \/\/ Fallback for ancient browsers that don't support the smooth behavior object\n            window.scrollTo(0, 0);\n        }\n    }\n\n    \/\/ Emulate 3 rapid presses to overcome sticky\/scroll-jacking elements\n    function bruteForceScroll() {\n        \/\/ Clear any pending timers from previous clicks to prevent buildup\n        scrollTimers.forEach(timer => clearTimeout(timer));\n        scrollTimers = [];\n\n        \/\/ Trigger the scroll command 3 times in succession\n        CONFIG.pressIntervals.forEach((delay, index) => {\n            const timer = setTimeout(() => {\n                \/\/ Add a tiny 16ms delay on the first call to let layout\/touch events settle\n                if (index === 0) {\n                    setTimeout(executeScrollCommand, 16);\n                } else {\n                    executeScrollCommand();\n                }\n            }, delay);\n            scrollTimers.push(timer);\n        });\n    }\n\n    \/\/ Throttled scroll handler for button visibility\n    function onScroll() {\n        const now = Date.now();\n        if (now - lastScrollTime < CONFIG.throttleDelay) return;\n        lastScrollTime = now;\n\n        const scrollY = window.scrollY || window.pageYOffset || document.documentElement.scrollTop || 0;\n        \n        if (scrollY > CONFIG.showAfterScroll) {\n            btn.classList.add('show');\n            btn.setAttribute('aria-hidden', 'false');\n        } else {\n            btn.classList.remove('show');\n            btn.setAttribute('aria-hidden', 'true');\n        }\n    }\n\n    \/\/ Click handler - triggers the 3x emulation\n    btn.addEventListener('click', function(e) {\n        e.preventDefault();\n        e.stopPropagation();\n        bruteForceScroll();\n    });\n\n    \/\/ Keyboard accessibility - triggers the 3x emulation\n    btn.addEventListener('keydown', function(e) {\n        if (e.key === 'Enter' || e.key === ' ') {\n            e.preventDefault();\n            e.stopPropagation();\n            bruteForceScroll();\n        }\n    });\n\n    \/\/ Touch support - triggers the 3x emulation\n    btn.addEventListener('touchstart', function(e) {\n        \/\/ Only prevent default on touchstart to allow touchend to handle the logic cleanly\n        e.preventDefault();\n    }, { passive: false });\n\n    btn.addEventListener('touchend', function(e) {\n        e.preventDefault();\n        bruteForceScroll();\n    });\n\n    \/\/ Passive scroll listener\n    if (window.addEventListener) {\n        window.addEventListener('scroll', onScroll, { passive: true });\n        onScroll();\n    }\n\n    \/\/ Cleanup\n    if (window.addEventListener) {\n        window.addEventListener('beforeunload', function() {\n            scrollTimers.forEach(timer => clearTimeout(timer));\n            window.removeEventListener('scroll', onScroll);\n        });\n    }\n})();\n<\/script>\n\n\n\n<!-- ============================================================\n  LS NAV \u2014 CONFIGURATION\n  Uncomment ONE line below to apply the active green highlight.\n============================================================ -->\n<script>\n  \/\/ var LS_ACTIVE_ITEM = \"LicenseVerse\";\n  var LS_ACTIVE_ITEM = \"Glossary\";              \n  \/\/ var LS_ACTIVE_ITEM = \"Licensing School Toolbox\";\n  \/\/ var LS_ACTIVE_ITEM = \"SCR Community forum\";\n  \/\/ var LS_ACTIVE_ITEM = \"LicenseVerse updates\";\n  \/\/ var LS_ACTIVE_ITEM = \"Licensing blog\";\n  \/\/ var LS_ACTIVE_ITEM = \"Training overview\";\n  \/\/ var LS_ACTIVE_ITEM = \"FWYN (Find What You Need)\";\n  \/\/ var LS_ACTIVE_ITEM = \"Register for training\";\n  \/\/ var LS_ACTIVE_ITEM = \"Exams overview\";\n  \/\/ var LS_ACTIVE_ITEM = \"Licensing Scholar exams\";\n  \/\/ var LS_ACTIVE_ITEM = \"Body of Knowledge exams\";\n<\/script>\n<!-- ============================================================ -->\n\n<style>\n  \/* =========================================================\n     [ FUTURE EDIT SECTION ] \n     Easily adjust specific settings below.\n  ========================================================= *\/\n  :root {\n    \/* Change the number below to make the typed text bigger or smaller. *\/\n    --search-input-font-size: 14px; \n  }\n\n  #ls-nav { display: none; }\n\n  .ls-nav-injected {\n    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;\n    box-sizing: border-box;\n    width: 100%;\n    padding: 10px 0;\n  }\n\n  .ls-nav-injected * { box-sizing: border-box; }\n\n  \/* \"Dashboard contents\" title at the top *\/\n  .ls-nav-title {\n    font-size: 20px !important;\n    font-weight: 600 !important;\n    color: #1a1a1a !important;\n    margin: -14px 0 24px -4px !important; \/* Moved UP slightly *\/\n    padding: 0 !important;\n    border: none !important;\n    background: none !important;\n    letter-spacing: -0.2px;\n  }\n\n  .ls-nav-section { margin-bottom: 18px; }\n\n  .ls-nav-header {\n    font-size: 11px !important;\n    font-weight: 600 !important;\n    color: #94a3b8 !important;\n    text-transform: uppercase;\n    letter-spacing: 0.5px;\n    margin: 0 0 6px 0 !important;\n    padding: 0 0 6px 0 !important;\n    border-bottom: 1px solid #e2e8f0 !important;\n    background: none !important;\n  }\n\n  .ls-nav-injected ul {\n    list-style: none !important;\n    margin: 0 !important;\n    padding: 0 !important;\n  }\n\n  .ls-nav-injected li {\n    margin: 0 !important;\n    padding: 0 !important;\n    list-style: none !important;\n  }\n\n  \/* --- MAIN LINKS --- *\/\n  .ls-nav-injected a {\n    display: flex !important;\n    align-items: center;\n    padding: 7px 12px 7px 10px !important; \/* Base padding *\/\n    text-decoration: none !important;\n    color: #334155 !important;\n    font-size: 14px !important;\n    font-weight: 400 !important;\n    border-left: 3px solid transparent;\n    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important; \/* Smooth animation *\/\n    background: transparent !important;\n    box-shadow: none !important;\n  }\n\n  .ls-nav-injected a svg {\n    width: 17px;\n    height: 17px;\n    min-width: 17px;\n    margin-right: 12px;\n    stroke: #8dc63f;\n    fill: none;\n    stroke-width: 1.5;\n    stroke-linecap: round;\n    stroke-linejoin: round;\n    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n\n  \/* Link Hover Animations *\/\n  .ls-nav-injected a:hover {\n    background-color: #f8fafc !important;\n    color: #0f172a !important;\n    padding-left: 14px !important; \/* Slides text to the right slightly *\/\n  }\n\n  .ls-nav-injected a:hover svg {\n    transform: scale(1.15); \/* Subtle pop for the icon *\/\n  }\n\n  .ls-nav-injected a.ls-active {\n    background-color: #f4faeb !important;\n    border-left-color: #8dc63f !important;\n    color: #0f172a !important;\n    font-weight: 600 !important;\n  }\n\n  \/* --- EXPANDABLE ROW (LicenseVerse) --- *\/\n  .ls-expand-toggle {\n    display: flex !important;\n    align-items: center;\n    justify-content: space-between;\n    padding: 7px 12px 7px 10px !important;\n    cursor: pointer;\n    color: #334155 !important;\n    font-size: 14px !important;\n    font-weight: 400 !important;\n    border-left: 3px solid transparent;\n    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;\n    background: transparent !important;\n    user-select: none;\n  }\n\n  \/* Toggle Hover Animation *\/\n  .ls-expand-toggle:hover {\n    background-color: #f8fafc !important;\n    color: #0f172a !important;\n    padding-left: 14px !important; \/* Slides text right slightly *\/\n  }\n\n  .ls-expand-toggle.ls-active {\n    background-color: #f4faeb !important;\n    border-left-color: #8dc63f !important;\n    color: #0f172a !important;\n    font-weight: 600 !important;\n  }\n\n  .ls-expand-left {\n    display: flex;\n    align-items: center;\n  }\n\n  .ls-expand-toggle svg.ls-toggle-icon {\n    width: 17px;\n    height: 17px;\n    min-width: 17px;\n    margin-right: 12px;\n    stroke: #8dc63f;\n    fill: none;\n    stroke-width: 1.5;\n    stroke-linecap: round;\n    stroke-linejoin: round;\n    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);\n  }\n\n  .ls-expand-toggle:hover svg.ls-toggle-icon {\n    transform: scale(1.15); \/* Icon pop *\/\n  }\n\n  .ls-chevron {\n    width: 18px; \n    height: 18px;\n    stroke: #475569;\n    fill: none;\n    stroke-width: 3;\n    stroke-linecap: round;\n    stroke-linejoin: round;\n    transition: transform 0.25s ease;\n    flex-shrink: 0;\n  }\n\n  .ls-expand-toggle.ls-open {\n    background-color: #f4faeb !important;\n    border-left-color: #8dc63f !important;\n    color: #0f172a !important;\n    font-weight: 600 !important;\n  }\n\n  .ls-expand-toggle.ls-open .ls-chevron {\n    transform: rotate(180deg);\n    stroke: #8dc63f;\n  }\n\n  \/* SUBMENU - Contains Bottom & Right Border *\/\n  .ls-submenu {\n    overflow: hidden;\n    max-height: 0;\n    margin-left: 24px;\n    border-left: 2px solid #e2e8f0;\n    border-bottom: 1px solid transparent;\n    border-right: 1px solid transparent;\n    border-radius: 0 0 8px 8px; \/* Rounded bottom corners *\/\n    padding-bottom: 0;\n    margin-bottom: 0;\n    transition: max-height 0.35s ease, padding-bottom 0.35s ease, margin-bottom 0.35s ease, border-color 0.35s ease;\n    background: #ffffff;\n  }\n\n  .ls-submenu.ls-open {\n    max-height: 400px;\n    padding-bottom: 8px; \n    margin-bottom: 6px;  \n    border-bottom: 1px solid #e2e8f0; \n    border-right: 1px solid #e2e8f0; \n  }\n  \n  \/* Remove border radius from parent when open to connect seamlessly *\/\n  .ls-expand-toggle.ls-open {\n    border-bottom-left-radius: 0;\n    border-bottom-right-radius: 0;\n  }\n\n  .ls-submenu a {\n    padding: 7px 12px 7px 32px !important;\n    font-size: 13.5px !important;\n    color: #4b5563 !important;\n    border-left: none !important;\n    position: relative;\n    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;\n  }\n\n  \/* Submenu Hover slide *\/\n  .ls-submenu a:hover {\n    background-color: #f8fafc !important;\n    color: #0f172a !important;\n    padding-left: 36px !important; \/* Slide animation *\/\n  }\n\n  \/* GREEN BULLET POINTS *\/\n  .ls-submenu a::before {\n    content: \"\";\n    position: absolute;\n    left: 16px;\n    top: 50%;\n    transform: translateY(-50%);\n    width: 5px;\n    height: 5px;\n    border-radius: 50%;\n    background: #8dc63f; \n    transition: left 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s ease, background-color 0.2s ease;\n  }\n\n  \/* Dot follows text + slight scale up *\/\n  .ls-submenu a:hover::before {\n    left: 20px; \/* Moves in unison with the sliding text *\/\n    transform: translateY(-50%) scale(1.3); \n    background: #7db432; \n  }\n\n  \/* -- NEW: EDGE-TO-EDGE SEARCH STYLES -- *\/\n  .inline-search-input-group {\n    display: flex;\n    align-items: stretch;\n    background: #ffffff;\n    padding: 0; \n    width: 100%;\n    border-bottom: 1px solid #e2e8f0;\n  }\n\n  #ls-inline-search-input {\n    border: none !important; \n    outline: none !important; \n    width: 100%; \n    font-size: var(--search-input-font-size) !important; \n    color: #111827 !important; \n    background: transparent !important;\n    font-family: inherit;\n    padding: 10px 14px !important; \n    align-self: center;\n    min-width: 0; \n    box-shadow: none !important;\n    border-radius: 0 !important;\n  }\n\n  .inline-search-go-btn {\n    background-color: #8dc63f;\n    color: #ffffff;\n    border: none;\n    padding: 0 16px; \n    font-size: 12px;\n    font-weight: 700;\n    text-transform: uppercase;\n    cursor: pointer;\n    transition: background-color 0.2s ease;\n    flex-shrink: 0;\n    outline: none;\n    display: flex;\n    align-items: center;\n    justify-content: center;\n    line-height: 1;\n    border-radius: 0 !important; \/* Flush corner *\/\n  }\n\n  .inline-search-go-btn:hover, \n  .inline-search-go-btn:focus {\n    background-color: #36B44A;\n  }\n  \n  \/* Hides the old search box *\/\n  .ls-search-box { display: none !important; }\n  .ls-submenu-divider { display: none !important; }\n\n  \/* Fade siblings when LicenseVerse is expanded *\/\n  .ls-nav-injected.lv-open li:not(.lv-parent),\n  .ls-nav-injected.lv-open .ls-nav-section:not(.lv-section) {\n    opacity: 0.35;\n    transition: opacity 0.25s ease;\n  }\n\n  .ls-nav-injected.lv-open li.lv-parent,\n  .ls-nav-injected.lv-open .ls-nav-section.lv-section {\n    opacity: 1;\n    transition: opacity 0.25s ease;\n  }\n\n  .ls-nav-injected li,\n  .ls-nav-injected .ls-nav-section {\n    transition: opacity 0.25s ease;\n  }\n\n<\/style>\n\n<!-- Hidden source \u2014 JS clones this into the ToC panel -->\n<div id=\"ls-nav\">\n  <div class=\"ls-nav-injected\">\n\n    <h2 class=\"ls-nav-title\">Dashboard contents<\/h2>\n\n    <div class=\"ls-nav-section lv-section\">\n      <h3 class=\"ls-nav-header\">Find licensing information<\/h3>\n      <ul>\n        <li class=\"lv-parent\">\n          <!-- LicenseVerse expandable row -->\n          <div class=\"ls-expand-toggle\" data-ls-expand=\"lv-submenu\">\n            <span class=\"ls-expand-left\">\n              <svg class=\"ls-toggle-icon\" viewBox=\"0 0 24 24\"><path d=\"M4 4h4v16H4z M10 4h4v16h-4z M16 4h4v16h-4z\"\/><\/svg>\n              <span>LicenseVerse<\/span>\n            <\/span>\n            <svg class=\"ls-chevron\" viewBox=\"0 0 24 24\"><polyline points=\"6 9 12 15 18 9\"\/><\/svg>\n          <\/div>\n          <div class=\"ls-submenu\" id=\"lv-submenu\">\n            <!-- NEW SEARCH BOX GOES HERE -->\n            <div class=\"inline-search-input-group\">\n                <input type=\"text\" id=\"ls-inline-search-input\" placeholder=\"Search\u2026\" autocomplete=\"off\" \/>\n                <button id=\"ls-inline-search-btn\" class=\"inline-search-go-btn\">GO<\/button>\n            <\/div>\n            <!-- NO DIVIDER, NO EXACT MATCH -->\n            <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/on-premises\/\">On-premises products<\/a>\n            <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/ols\/\">Online Services<\/a>\n            <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure\/\">Azure<\/a>\n            <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/common-info\/\">Common<\/a>\n          <\/div>\n        <\/li>\n        <li><a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/glossary\/\">\n          <svg viewBox=\"0 0 24 24\"><path d=\"M4 19.5A2.5 2.5 0 0 1 6.5 17H20\"\/><path d=\"M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z\"\/><\/svg>\n          <span>Glossary<\/span>\n        <\/a><\/li>\n        <li><a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-school-toolbox\/\">\n          <svg viewBox=\"0 0 24 24\"><polygon points=\"12 2 15.09 5.09 19.5 5.5 20 10 23 12 20 14 19.5 18.5 15.09 18.91 12 22 8.91 18.91 4.5 18.5 4 14 1 12 4 10 4.5 5.5 8.91 5.09 12 2\"\/><\/svg>\n          <span>Licensing School Toolbox<\/span>\n        <\/a><\/li>\n      <\/ul>\n    <\/div>\n\n    <div class=\"ls-nav-section\">\n      <h3 class=\"ls-nav-header\">KEEP UP TO DATE<\/h3>\n      <ul>\n        <li><a href=\"https:\/\/scr.licensingschool.co.uk\/\" target=\"_blank\">\n          <svg viewBox=\"0 0 24 24\"><path d=\"M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2\"\/><circle cx=\"9\" cy=\"7\" r=\"4\"\/><path d=\"M23 21v-2a4 4 0 0 0-3-3.87\"\/><path d=\"M16 3.13a4 4 0 0 1 0 7.75\"\/><\/svg>\n          <span>SCR Community forum<\/span>\n        <\/a><\/li>\n        <li><a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licenseverse-updates\/\">\n          <svg viewBox=\"0 0 24 24\"><path d=\"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8\"\/><path d=\"M3 3v5h5\"\/><\/svg>\n          <span>LicenseVerse updates<\/span>\n        <\/a><\/li>\n        <li><a href=\"https:\/\/www.licensingschool.co.uk\/licensing-blog\/\" target=\"_blank\">\n          <svg viewBox=\"0 0 24 24\"><rect x=\"3\" y=\"3\" width=\"18\" height=\"18\" rx=\"2\" ry=\"2\"\/><line x1=\"3\" y1=\"9\" x2=\"21\" y2=\"9\"\/><line x1=\"9\" y1=\"21\" x2=\"9\" y2=\"9\"\/><\/svg>\n          <span>Licensing blog<\/span>\n        <\/a><\/li>\n      <\/ul>\n    <\/div>\n\n    <div class=\"ls-nav-section\">\n      <h3 class=\"ls-nav-header\">LEARN<\/h3>\n      <ul>\n        <li><a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/find-what-you-need-fwyn\/\">\n          <svg viewBox=\"0 0 24 24\"><line x1=\"18\" y1=\"20\" x2=\"18\" y2=\"10\"\/><line x1=\"12\" y1=\"20\" x2=\"12\" y2=\"4\"\/><line x1=\"6\" y1=\"20\" x2=\"6\" y2=\"14\"\/><\/svg>\n          <span>Training overview<\/span>\n        <\/a><\/li>\n        <li><a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/find-what-you-need-fwyn\/find-what-you-need-fwyn\/\">\n          <svg viewBox=\"0 0 24 24\"><circle cx=\"11\" cy=\"11\" r=\"8\"\/><line x1=\"21\" y1=\"21\" x2=\"16.65\" y2=\"16.65\"\/><\/svg>\n          <span>FWYN (Find What You Need)<\/span>\n        <\/a><\/li>\n        <li><a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/find-what-you-need-fwyn\/register-for-training\/\">\n          <svg viewBox=\"0 0 24 24\"><path d=\"M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7\"\/><path d=\"M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z\"\/><\/svg>\n          <span>Register for training<\/span>\n        <\/a><\/li>\n      <\/ul>\n    <\/div>\n\n    <div class=\"ls-nav-section\">\n      <h3 class=\"ls-nav-header\">Demonstrate knowledge<\/h3>\n      <ul>\n        <li><a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-exams\/\">\n          <svg viewBox=\"0 0 24 24\"><path d=\"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2\"\/><path d=\"M15 2H9a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1z\"\/><path d=\"M9 14l2 2 4-4\"\/><\/svg>\n          <span>Exams overview<\/span>\n        <\/a><\/li>\n        <li><a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-exams\/licensing-scholar-exams\/\">\n          <svg viewBox=\"0 0 24 24\"><path d=\"M22 10v6M2 10l10-5 10 5-10 5z\"\/><path d=\"M6 12v5c3 3 9 3 12 0v-5\"\/><\/svg>\n          <span>Licensing Scholar exams<\/span>\n        <\/a><\/li>\n        <li><a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-exams\/licensing-body-of-knowledge-exams\/\">\n          <svg viewBox=\"0 0 24 24\"><path d=\"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z\"\/><polyline points=\"14 2 14 8 20 8\"\/><line x1=\"16\" y1=\"13\" x2=\"8\" y2=\"13\"\/><line x1=\"16\" y1=\"17\" x2=\"8\" y2=\"17\"\/><polyline points=\"10 9 9 9 8 9\"\/><\/svg>\n          <span>Body of Knowledge exams<\/span>\n        <\/a><\/li>\n      <\/ul>\n    <\/div>\n\n  <\/div>\n<\/div>\n\n<script>\n(function () {\n\n  function inject() {\n    var tocHeader = document.querySelector('.toc_header');\n    if (!tocHeader) return false;\n\n    var tocWidget = tocHeader.parentElement;\n    if (!tocWidget) return false;\n\n    var source = document.getElementById('ls-nav');\n    if (!source) return false;\n    var navClone = source.querySelector('.ls-nav-injected').cloneNode(true);\n\n    \/\/ Apply manual active highlight from config\n    var activeLabel = (typeof LS_ACTIVE_ITEM !== 'undefined') ? LS_ACTIVE_ITEM.trim().toLowerCase() : '';\n    if (activeLabel) {\n      navClone.querySelectorAll('a').forEach(function (a) {\n        var span = a.querySelector('span');\n        if (span && span.textContent.trim().toLowerCase() === activeLabel) {\n          a.classList.add('ls-active');\n        }\n      });\n    }\n\n    \/\/ Wire up expand toggles\n    navClone.querySelectorAll('.ls-expand-toggle').forEach(function (toggle) {\n      var targetId = toggle.getAttribute('data-ls-expand');\n      var submenu = navClone.querySelector('#' + targetId);\n      if (!submenu) return;\n      toggle.addEventListener('click', function () {\n        var isOpen = toggle.classList.contains('ls-open');\n        toggle.classList.toggle('ls-open', !isOpen);\n        submenu.classList.toggle('ls-open', !isOpen);\n        navClone.classList.toggle('lv-open', !isOpen);\n        \n        \/\/ Auto-focus the search box upon expansion \n        if (!isOpen) {\n          var searchInput = submenu.querySelector('#ls-inline-search-input');\n          if (searchInput) {\n            setTimeout(function() { searchInput.focus(); }, 150);\n          }\n        }\n      });\n    });\n\n    \/\/ Wire up LicenseVerse edge-to-edge search box\n    var searchInput = navClone.querySelector('#ls-inline-search-input');\n    var searchBtn   = navClone.querySelector('#ls-inline-search-btn');\n    \n    function doSearch() {\n      var term = searchInput ? searchInput.value.trim() : '';\n      if (!term) return;\n      \/\/ Exact match logic removed\n      window.location.href = 'https:\/\/www.licensingschool.co.uk\/licenseverse\/?s=' + encodeURIComponent(term);\n    }\n    if (searchInput) searchInput.addEventListener('keypress', function(e) { if (e.key === 'Enter') doSearch(); });\n    if (searchBtn)   searchBtn.addEventListener('click', doSearch);\n\n    \/\/ Wipe everything inside the widget and inject\n    while (tocWidget.firstChild) tocWidget.removeChild(tocWidget.firstChild);\n    tocWidget.appendChild(navClone);\n\n    \/\/ Stop the plugin re-injecting anything\n    new MutationObserver(function (mutations) {\n      mutations.forEach(function (m) {\n        m.addedNodes.forEach(function (node) {\n          if (node === navClone || navClone.contains(node)) return;\n          if (node.parentNode) node.parentNode.removeChild(node);\n        });\n      });\n    }).observe(tocWidget, { childList: true });\n\n    return true;\n  }\n\n  var tries = 0;\n  function attempt() {\n    if (inject()) return;\n    if (++tries < 30) setTimeout(attempt, 200);\n  }\n\n  if (document.readyState === 'loading') {\n    document.addEventListener('DOMContentLoaded', attempt);\n  } else {\n    attempt();\n  }\n\n})();\n<\/script>\n\n\n\n<p><strong>ARM<\/strong><strong>:<\/strong> Azure Resource Manager.<\/p>\n\n\n\n<p><strong>Artificial Intelligence:<\/strong> A system such as Copilot which can learn from data and perform tasks like problem solving, speech recognition, and decision making using models and algorithms. Learn about licensing&nbsp;Copilot&nbsp;<a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Azure Plan<\/strong><strong>:<\/strong> A New Commerce Experience offering, providing partners access to Azure services at Pay-As-You-Go rates under the Microsoft Customer Agreement. It allows multiple Subscriptions within a single Azure Plan, streamlining the order process. Learn about licensing Azure consumption services <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-azure-services-csp\/azure-consumption-services-2\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Azure Resource Manager (ARM):<\/strong>&nbsp;A management service for deploying, managing, and organizing Azure resources. Learn about&nbsp;licensing Azure&nbsp;Resource Groups <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-consumption-services\/azure-subscriptions\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Azure Savings Plan for Compute<\/strong><strong>:<\/strong> A purchase option that lets you commit to an hourly spend on eligible Azure compute services for a 1- or 3-year term, providing discounted hourly rates with any unused funds forfeited. Learn about licensing Azure Savings Plan for Compute <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-savings-plans\/purchasing-an-azure-savings-plan\/azure-savings-plan-for-compute\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Azure Savings Plan for Databases<\/strong><strong>:<\/strong> A purchase option that lets you commit to an hourly spend on eligible Azure database services for a 1-year term, providing discounted hourly rates with any unused funds forfeited. Learn about licensing Azure Savings Plan for Databases <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-savings-plans\/purchasing-an-azure-savings-plan\/azure-savings-plan-for-databases\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Clipchamp<\/strong><strong>:<\/strong> An intelligent enterprise video experience in Microsoft 365 that enables users to create, record, upload, discover, share, and manage video content.<\/p>\n\n\n\n<p><strong>Copilot Chat<\/strong><strong>:<\/strong> A chat interface for Microsoft 365 that offers text and image generation, data analysis, and optional Agent creation for Entra ID users with eligible licenses. Learn about licensing Copilot Chat <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/commercial-data-protection\">here<\/a>.<\/p>\n\n\n\n<p><strong>Cortana<\/strong><strong>:<\/strong> The precursor to Copilot.<\/p>\n\n\n\n<p><strong>Evergreen agreement:<\/strong>&nbsp;A contract, such as the Microsoft&nbsp;Customer&nbsp;Agreement, that remains active unless one party cancels it. Learn about the&nbsp;Microsoft&nbsp;Customer&nbsp;Agreement <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/lessons\/introduction-to-microsoft-licensing\/microsoft-customer-agreement\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Internet Explorer<\/strong><strong>:<\/strong> The precursor to Microsoft Edge.<\/p>\n\n\n\n<p><strong>M365 Copilot (Basic)<\/strong><strong>:<\/strong> A label shown to users in Copilot Chat who don\u2019t have a Microsoft 365 Copilot license, indicating they receive Standard access with lower speed and availability compared to M365 Copilot (Premium). Learn about licensing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/commercial-data-protection\">Copilot Chat<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/copilot-for-microsoft-365\">Microsoft 365 Copilot<\/a>.<\/p>\n\n\n\n<p><strong>M365 Copilot (Premium)<\/strong><strong>:<\/strong> A label shown to users in Copilot Chat who have a Microsoft 365 Copilot license, indicating they receive Priority access with improved speed and availability compared to M365 Copilot (Basic). Learn about licensing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/commercial-data-protection\">Copilot Chat<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/copilot-for-microsoft-365\">Microsoft 365 Copilot<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft 365 app<\/strong><strong>:<\/strong> The previous name of the Microsoft 365 Copilot app.<\/p>\n\n\n\n<p><strong>Microsoft 365 Copilot app<\/strong><strong>:<\/strong> An AI-focused productivity app integrating Microsoft 365 tools for chat, content creation, file search, and access to applications like Word and Excel. Learn about licensing Microsoft 365 Copilot <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/copilot-for-microsoft-365\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft 365 Local<\/strong><strong>:<\/strong> A private cloud solution enabling on-premises deployment of Exchange Server, SharePoint Server, and Skype for Business Server on customer-owned Azure Local infrastructure, providing data sovereignty, compliance, and Azure management tools.<\/p>\n\n\n\n<p><strong>Microsoft To Do<\/strong><strong>:<\/strong> A task management application that integrates with Outlook to help users organize tasks, plan daily activities, and collaborate.<\/p>\n\n\n\n<p><strong>Microsoft&nbsp;365&nbsp;Apps for Business:<\/strong>&nbsp;The Word, Excel, PowerPoint, OneNote, Outlook, Access, and Publisher&nbsp;apps, targeted at SMB customers with a maximum of 300 users. Learn about licensing&nbsp;the Microsoft&nbsp;365&nbsp;Apps&nbsp;<a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-apps\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft&nbsp;365&nbsp;Apps for Enterprise:<\/strong>&nbsp;The Word, Excel, PowerPoint, OneNote, Outlook, Access, and Publisher&nbsp;apps, targeted at Enterprise customers with no user limit. Learn about licensing&nbsp;the Microsoft&nbsp;365&nbsp;Apps&nbsp;<a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-apps\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>MSN Messenger<\/strong><strong>:<\/strong> The previous name of Windows Live Messenger.<\/p>\n\n\n\n<p><strong>Teams Webinars<\/strong><strong>:<\/strong> Structured online events in Teams where presenters share ideas or provide training to attendees with limited audio and video permissions. Learn about licensing Teams Webinars <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/teams-meetings\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Windows 10<\/strong><strong>:<\/strong> A previous Microsoft client operating system released in 2015. It replaced Windows 8.1 and is the precursor to Windows 11.<\/p>\n\n\n\n<p><strong>Windows 7<\/strong><strong>:<\/strong> A previous Microsoft client operating system released in 2009. It replaced Windows Vista and is the precursor to Windows 8.<\/p>\n\n\n\n<p><strong>Windows 8.1<\/strong><strong>:<\/strong> A previous Microsoft client operating system released in 2013. It replaced Windows 8 and is the precursor to Windows 10.<\/p>\n\n\n\n<p><strong>Windows 8<\/strong><strong>:<\/strong> A previous Microsoft client operating system released in 2012. It replaced Windows 7 and is the precursor to Windows 8.1.<\/p>\n\n\n\n<p><strong>Windows Live Messenger<\/strong><strong>:<\/strong> Previously known as MSN Messenger. A precursor to modern instant messaging apps like Skype and, ultimately, Teams.<\/p>\n\n\n\n<p><strong>Windows Movie Maker<\/strong><strong>:<\/strong> The precursor to Clipchamp.<\/p>\n\n\n\n<p><strong>Windows Vista<\/strong><strong>:<\/strong> A previous Microsoft client operating system released in 2007. It replaced Windows XP and is the precursor to Windows 7.<\/p>\n\n\n\n<p><strong>Windows XP<\/strong><strong>:<\/strong> A previous Microsoft client operating system released in 2001. It replaced Windows Millennium Edition and Windows 2000 and is the precursor to Windows Vista.<\/p>\n\n\n\n<p><strong>WordPad<\/strong><strong>:<\/strong> A word processor application, retired in favor of Notepad and Word.<\/p>\n\n\n\n<p><strong>Wunderlist<\/strong><strong>:<\/strong> The precursor to Microsoft To Do.<\/p>\n\n\n\n<p><strong>Windows 11<\/strong><strong>:<\/strong> Microsoft\u2019s client operating system. It was released in 2021, replacing Windows 10. Learn about licensing Windows 11 by&nbsp;<a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-11-device\/\">device<\/a>&nbsp;and by&nbsp;<a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-11-user\/\">user<\/a>.<\/p>\n\n\n\n<p><strong>Azure&nbsp;Savings&nbsp;Plans:<\/strong>&nbsp;A way of making a duration-based commitment to Azure&nbsp;compute or database services running in any&nbsp;Azure&nbsp;datacenter to get attractive pricing. Learn about Azure&nbsp;Savings&nbsp;Plans&nbsp;<a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-savings-plans\/\">here<\/a>.<\/p>\n\n\n\n<p>Voice over Internet Protocol (VoIP): A technology that enables calls over the internet, transmitting voice as digital data, and replacing traditional landlines. Learn about licensing Teams Calling <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/teams-calling\/\">here<\/a>.<\/p>\n\n\n\n<p>VoIP: Voice over Internet Protocol.<\/p>\n\n\n\n<p>IP telephony: Another term for Voice over Internet Protocol (VoIP).<br><br><strong>Private Branch Exchange (PBX):<\/strong> A private telephone network that allows a company to manage internal and external call switching and routing. While it once required physical hardware, modern systems are cloud-based using services like Teams Phone Standard. Learn about licensing Teams Calling <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/teams-calling\/\">here<\/a>.<br><br><strong>ACU<\/strong>: See Agent Commit Units.<br><br><strong>Agent Commit Units (ACUs)<\/strong>: The currency consumed by the Agent Pre-Purchase Plan. It provides tiers of discounted, prepaid credits used to cover Microsoft Foundry, Copilot Studio, Fabric, and GitHub Copilot services. Learn about licensing the Agent Pre-Purchase Plan <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot-studio\/copilot-studio-standalone\/agent-pre-purchase-plan\">here<\/a>.<\/p>\n\n\n\n<p><strong>ACUs<\/strong>: Agent Commit Units.<\/p>\n\n\n\n<p><strong>Commit Unit (CU)<\/strong>: The unit of purchase for a Pre-Purchase Plan.<\/p>\n\n\n\n<p><strong>Forward Deployed Engineer (FDE)<\/strong>: An engineer who works directly with customers, helping them to use Microsoft\u2019s technology to solve real-world problems.<\/p>\n\n\n\n<p><strong>Microsoft Agent Factory<\/strong>: A program designed for customers that want to rapidly scale AI adoption in their organization. It combines the Agent Pre-Purchase Plan, Forward Deployed Engineers, and tailored role-based AI training.<\/p>\n\n\n\n<p><strong>Spot Placement Score<\/strong>: A feature designed to help customers evaluate the likelihood of successful Azure Spot virtual machine deployments. Learn about the licensing of Azure Spot virtual machines <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-specialist-virtual-machines\/azure-spot-virtual-machines\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Agent Pre-Purchase Plan<\/strong>: A way of buying Agent Commit Units which can be used to pay for Microsoft Foundry, Copilot Studio, Fabric, or GitHub Copilot services. This is a cheaper way of paying for services, but you must pay upfront, and unused Agent Commit Units expire after a year. Learn about the Agent Pre-Purchase Plan <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot-studio\/copilot-studio-standalone\/agent-pre-purchase-plan\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Exchange Admin Center (EAC)<\/strong>: A portal for Exchange administrators to manage mailboxes and carry out tasks such as setting up archiving and deletion policies. Learn how <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/office-365-plans\/shared-mailboxes\/\">shared mailboxes<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/office-365-plans\/archiving\/\">archiving<\/a> are licensed in Exchange Online.<\/p>\n\n\n\n<p><strong>Office Web Apps<\/strong>: A previous name of the Microsoft 365 Web Apps.<\/p>\n\n\n\n<p><strong>Office Online<\/strong>: A previous name of the Microsoft 365 Web Apps.<\/p>\n\n\n\n<p><strong>Office for the Web<\/strong>: A previous name of the Microsoft 365 Web Apps.<\/p>\n\n\n\n<p><strong>Microsoft 365 Web Apps<\/strong>: A browser-based version of the Microsoft 365 Apps that allows you to create, edit, and share documents in Word, Excel, and PowerPoint without installing any software. Microsoft sometimes refer to this as Microsoft 365 for the Web.<\/p>\n\n\n\n<p><strong>Office 365 Core eDiscovery<\/strong>: The previous name of Purview eDiscovery (Standard).<\/p>\n\n\n\n<p><strong>Purview eDiscovery (Standard)<\/strong>: A compliance solution allowing organizations to create specific cases, assign dedicated managers, and place legal holds on mailboxes and sites to preserve evidence. Learn about licensing for security and compliance <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-plans-for-enterprise-users\/licensing-for-security-and-compliance\">here<\/a>.<\/p>\n\n\n\n<p><strong>Office 365 Advanced eDiscovery<\/strong>: The previous name of Purview eDiscovery (Premium).<\/p>\n\n\n\n<p><strong>Purview eDiscovery (Premium)<\/strong>: An advanced compliance solution providing all capabilities found in Microsoft Purview eDiscovery (Standard) plus advanced features like custodian management, legal hold notifications, and predictive coding models. Learn about licensing for security and compliance <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-plans-for-enterprise-users\/licensing-for-security-and-compliance\">here<\/a>.<\/p>\n\n\n\n<p><strong>Azure Purview<\/strong>: Alongside Microsoft 365 Compliance, a precursor to Purview.<\/p>\n\n\n\n<p><strong>Microsoft 365 Compliance<\/strong>: Alongside Azure Purview, a precursor to Purview.<\/p>\n\n\n\n<p><strong>Proxy Server<\/strong>: A gateway that manages and secures internet traffic for a local network. The precursor to ISA Server.<\/p>\n\n\n\n<p><strong>ISA Server<\/strong>: Internet Security and Acceleration Server. A multi-functional gateway that acts as an enterprise firewall, web proxy, and VPN to protect and speed up a local network. The precursor to Forefront Threat Management Gateway (TMG).<\/p>\n\n\n\n<p><strong>Forefront Threat Management Gateway (TMG)<\/strong>: Microsoft\u2019s final enterprise firewall and web proxy designed to protect corporate networks from internet threats. Now retired, with no Microsoft support as of April 14, 2020.<\/p>\n\n\n\n<p><strong>InfoPath<\/strong>: Software to create and fill out electronic forms for gathering data and automating business workflows. Now retired, with no Microsoft support as of July 14, 2026. A precursor to both Power Apps and Forms, depending on required functionality.<\/p>\n\n\n\n<p><strong>Forms<\/strong>: A web-based tool included with many Microsoft 365 licenses, used to create custom surveys, quizzes, and polls to collect data and view real-time results. Learn about licensing Microsoft 365 for SMB customers <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-plans-for-smb-users\/\">here<\/a> and Enterprise customers <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-plans-for-enterprise-users\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>FrontPage<\/strong>: An HTML editor and website administration tool that allows users to create websites visually without needing to write manual code. The precursor to Expression Web.<\/p>\n\n\n\n<p><strong>Expression Web<\/strong>: An HTML editor and web design tool designed to create websites using a visual interface and advanced CSS support. It was retired in 2012, with no Microsoft support as of July 14, 2020.<\/p>\n\n\n\n<p><strong>Auto-Archiving<\/strong>: A feature in Exchange Online that automatically archives the oldest items in your mailbox after it reaches 96% of its quota. Learn about licensing Exchange Online <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/office-365-plans\/exchange-online\">here<\/a>.<\/p>\n\n\n\n<p><strong>FWYN (Find What You Need)<\/strong>: A tool to quickly filter and search our entire back catalogue of Licensing School training sessions by your area of interest. Find What You Need <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamic-fwyn\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Licensing Guides Gallery<\/strong>: A Licensing School tool to quickly search and filter through our entire collection of Licensing Guides, Whitepapers, and Datasheets. Access the tool <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-guides-gallery\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Managed Detection and Response (MDR)<\/strong>: A 24\/7 service such as Microsoft Defender Experts where a third-party team provides threat hunting and incident response using technologies such as EDR, NDR, and SIEM on behalf of an organization. Learn about licensing Microsoft Defender Experts <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-defender\/microsoft-defender-experts\">here<\/a>.<\/p>\n\n\n\n<p><strong>Managed Extended Detection and Response (MXDR)<\/strong>: A managed service such as the Microsoft Defender Experts Suite that combines an XDR platform with a 24\/7 expert team to monitor and respond to threats across endpoints, networks, and cloud services. Learn about licensing the Microsoft Defender Experts Suite <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-defender\/microsoft-defender-experts\">here<\/a>.<\/p>\n\n\n\n<p><strong>MDR<\/strong>: Managed Detection and Response.<\/p>\n\n\n\n<p><strong>Microsoft Defender Experts Suite<\/strong>: A Managed Extended Detection and Response (MXDR) service that connects companies with Microsoft\u2019s own security teams to address their cybersecurity needs. Learn about licensing the Microsoft Defender Experts Suite <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-defender\/microsoft-defender-experts\">here<\/a>.<\/p>\n\n\n\n<p><strong>MXDR<\/strong>: Managed Extended Detection and Response.<\/p>\n\n\n\n<p><strong>NDR<\/strong>: Network Detection and Response.<\/p>\n\n\n\n<p><strong>Network Detection and Response (NDR)<\/strong>: A technology that analyzes network traffic to detect behaviors like lateral movement, providing visibility where EDR agents can\u2019t be deployed \u2013 such as on unmanaged IoT and OT devices. Learn about licensing Microsoft Defender for IoT <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-defender\/microsoft-defender-for-iot\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Office 365\/Microsoft 365 Plan Picker<\/strong>: A Licensing School tool to help configure and select the most suitable Office 365\/Microsoft 365 options. Access the tool <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/office-365-microsoft-365-plan-picker\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Partner Center Announcements Archive<\/strong>: A Licensing School tool to search through an archive of useful Partner Center Announcements dating back to 2022. Access the tool <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/partner-center-announcements\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>SQL Server Calculator<\/strong>: A Licensing School tool with interactive elements to calculate the correct licensing option and quantities required for an on-premises SQL Server deployment. Access the tool <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/sql-server-calculator\/\">here<\/a>. Learn about licensing SQL Server <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/sql-server-2025\/licensing-sql-server-2025\/\">on-premises<\/a> and in Azure virtual <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-sql-server-virtual-machines\/\">machines<\/a>.<\/p>\n\n\n\n<p><strong>SQL Server<\/strong>: Microsoft\u2019s enterprise database solution. Learn about licensing SQL Server <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/sql-server-2025\/licensing-sql-server-2025\/\">on-premises<\/a> and in Azure virtual <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-sql-server-virtual-machines\/\">machines<\/a>.<\/p>\n\n\n\n<p><strong>Teams Admin Center<\/strong>: A central place for an admin to create, edit, archive, monitor, and configure all teams in their organization. Learn about licensing Teams <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/teams-and-audio-services\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>The Frontier Worker Suite<\/strong>: An alternative name for Microsoft 365 E7. Learn about licensing Microsoft 365 E7 <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-plans-for-enterprise-users\/microsoft-365-e7\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft 365 E7<\/strong>: A license that builds on all the features in Microsoft 365 E5 by adding Microsoft 365 Copilot, Microsoft Entra Suite, and Microsoft Agent 365. Also known as The Frontier Worker Suite. Learn about licensing Microsoft 365 E7 <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-plans-for-enterprise-users\/microsoft-365-e7\">here<\/a>.<\/p>\n\n\n\n<p><strong>Copilot Cowork<\/strong>: A feature in Microsoft 365 Copilot that allows you to delegate complex multi-step tasks by having Copilot independently plan and execute workflows in the background. It works across your Microsoft 365 data using Work IQ, while providing you with full control of the process. Learn about licensing Microsoft 365 Copilot <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/copilot-for-microsoft-365\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Entra ID Governance External Identities<\/strong>: The previous name of Microsoft Entra ID Governance for Guests.<\/p>\n\n\n\n<p><strong>Microsoft Entra ID Governance for Guests<\/strong>: A cloud-based identity solution that allows you to securely manage, customize, and control how customers, partners, and guests sign in to your applications. Learn about licensing Entra ID Governance <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-entra\/microsoft-entra-id-governance\/\">here<\/a>.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>Additional Products<\/strong>: A license type in Volume Licensing agreements that can be ordered at any quantity, in contrast to Enterprise Products that have an enterprise-wide commitment. Learn about Additional Products in the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-on-premises-products-ea\/enterprise-enrollment\/additional-products\/\">Enterprise Enrollment<\/a>, the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-on-premises-products-open-programs\/open-value-organization-wide\/additional-products\/\">Open Value Organization-Wide<\/a>, and the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-on-premises-products-open-programs\/open-value-subscription\/additional-products\/\">Open Value Subscription<\/a> agreement.<\/p>\n\n\n\n<p><strong>Glomo<\/strong>: A made-up term resulting from Licensing School\u2019s favorite tongue twister: the Global Promo Readiness Guide.<\/p>\n\n\n\n<p><strong>Global Promo Readiness Guide<\/strong>: A Microsoft-produced PDF guide for partners outlining most current ongoing product promotions. We compile ALL current and expired promotions in our <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/promotions-playground\/\">Promotions Playground<\/a>.<\/p>\n\n\n\n<p><strong>CPU<\/strong>: Central Processing Unit.<\/p>\n\n\n\n<p><strong>Central Processing Unit (CPU)<\/strong>: Also known as a processor, this is the primary component of a computer or server that acts as its \"brain\", processing data to perform all system tasks.<\/p>\n\n\n\n<p><strong>Processor<\/strong>: Also known as a Central Processing Unit, this is the primary component of a computer or server that acts as its \"brain\", processing data to perform all system tasks.<\/p>\n\n\n\n<p><strong>Core<\/strong>: The individual processing units inside a processor, or Central Processing Unit (CPU). Certain Microsoft products can be licensed based on their core count. Learn about Core licenses in <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-server-2025\/windows-server-core-licenses\/\">Windows Server 2025<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/sql-server-2025\/licensing-sql-server-2025\/per-core-licensing-model\/\">SQL Server 2025<\/a>.<\/p>\n\n\n\n<p><strong>Work IQ<\/strong>: The intelligence system that connects Microsoft 365 Copilot to an organization\u2019s internal data, such as emails, chats, and documents. By grounding Copilot in specific work history, it can provide more tailored and relevant assistance rather than only information from the web. Learn about licensing Microsoft 365 Copilot <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/copilot-for-microsoft-365\">here<\/a>.<\/p>\n\n\n\n<p><strong>Lifecycle Policies<\/strong>: Support schedules that outline exactly when Microsoft support for security and feature updates will stop for a product. Learn about Lifecycle Policies <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/lifecycle-policies\">here<\/a>.<\/p>\n\n\n\n<p><strong>Fixed Lifecycle Policy<\/strong>: A traditional support schedule (typically for on-premises software) with a defined End of Support date established at launch, usually spanning 10 years. Learn about Lifecycle Policies <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/lifecycle-policies\">here<\/a>.<\/p>\n\n\n\n<p><strong>Mainstream Support<\/strong>: The first phase of a Fixed Lifecycle Policy where Microsoft provide both security updates and new feature updates for a minimum of five years. Learn about Lifecycle Policies <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/lifecycle-policies\">here<\/a>.<\/p>\n\n\n\n<p><strong>Extended Support<\/strong>: The second phase of a Fixed Lifecycle Policy where Microsoft provide security updates but discontinue all feature updates. Learn about Lifecycle Policies <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/lifecycle-policies\">here<\/a>.<\/p>\n\n\n\n<p><strong>Modern Lifecycle Policy<\/strong>: An ongoing support schedule for cloud services and continuously updated products. Learn about Lifecycle Policies <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/lifecycle-policies\">here<\/a>.<\/p>\n\n\n\n<p><strong>Buy-out<\/strong>: An option at the end of some subscription agreements that allows a customer to purchase perpetual rights to the software they have been using. Learn about the buy-out option in the Open Value Subscription agreement <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-on-premises-products-open-programs\/open-value-subscription\/at-the-end-of-an-open-value-subscription-agreement\">here<\/a>, and the Enterprise Subscription Enrollment <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-on-premises-products-ea\/enterprise-subscription-enrollment\/at-the-end-of-an-enterprise-subscription-enrollment\">here<\/a>.<\/p>\n\n\n\n<p><strong>Distributor<\/strong>: Another term for an Indirect Provider who purchases cloud services directly from Microsoft and resells them to Indirect Resellers, typically providing billing, support, and technical infrastructure.<\/p>\n\n\n\n<p><strong>Enterprise Products<\/strong>: A license type in certain Volume Licensing agreements that has an enterprise-wide commitment, often offered at a discounted rate based on the standardization requirements. Learn about enterprise-wide commitments in the Enterprise <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-on-premises-products-ea\/enterprise-enrollment\/enterprise-wide-commitment\/\">Enrollment<\/a>, and the Open Value <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-on-premises-products-open-programs\/open-value-organization-wide\/organization-wide-commitment\/\">Organization-Wide<\/a> agreement.<\/p>\n\n\n\n<p><strong>Indirect Provider<\/strong>: Another term for a Distributor who purchases cloud services directly from Microsoft and resells them to Indirect Resellers, typically providing billing, support, and technical infrastructure.<\/p>\n\n\n\n<p><strong>Indirect Reseller<\/strong>: A partner who sells cloud services purchased from a Distributor, rather than directly from Microsoft.<\/p>\n\n\n\n<p><strong>Office 365 Business Essentials<\/strong>: The previous name of Microsoft 365 Business Basic.<\/p>\n\n\n\n<p><strong>Office 365 Business Premium<\/strong>: The previous name of Microsoft 365 Business Standard.<\/p>\n\n\n\n<p><strong>Microsoft 365 Business<\/strong>: The previous name of Microsoft 365 Business Premium. Learn about licensing Microsoft 365 for SMB customers <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-plans-for-smb-users\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>MFA<\/strong>: Multi-Factor Authentication.<\/p>\n\n\n\n<p><strong>Multi-Factor Authentication (MFA)<\/strong>: A security method in Microsoft Entra ID that requires a user to provide two or more verification factors to gain access to a resource. Learn about the licensing of Microsoft Entra ID <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-entra\/microsoft-entra-id\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Multi-Tenant<\/strong>: An architecture where a single instance of a software application serves multiple customers (tenants), common in SaaS environments. Learn about licensing SPLA <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/spla\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>vCPU<\/strong>: Virtual Central Processing Unit.<\/p>\n\n\n\n<p><strong>Virtual Central Processing Unit (vCPU)<\/strong>: A share of a physical CPU that is assigned to a virtual machine.<\/p>\n\n\n\n<p><strong>Microsoft Endpoint Manager (MEM)<\/strong>: The previous family name for Microsoft\u2019s endpoint management solutions, used until October 2022. Learn about licensing Microsoft Intune <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-intune\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>End of Support<\/strong>: A date indicating when security updates or feature updates will no longer be available for a product. Learn about the types of End of Support as part of Microsoft\u2019s Lifecycle Policies <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/lifecycle-policies\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>End of Life<\/strong>: A product status indicating discontinuation through any purchasing method, either as a new purchase or a renewal.<\/p>\n\n\n\n<p><strong>End of Sale<\/strong>: A product status indicating availability is restricted to existing customers only, and no longer available to new customers.<\/p>\n\n\n\n<p><strong>End of Service<\/strong>: A product status indicating full retirement, with existing licenses on protected contracts no longer available.<\/p>\n\n\n\n<p><strong>EOL<\/strong>: End of Life.<\/p>\n\n\n\n<p><strong>SSO<\/strong>: Single Sign-On.<\/p>\n\n\n\n<p><strong>Single Sign-On (SSO)<\/strong>: An authentication method that allows users to log in with a single set of credentials to multiple independent software systems.<\/p>\n\n\n\n<p><strong>Sales Force Automation (SFA)<\/strong>: Software that automates repetitive, manual tasks in the sales process. Dynamics 365 Sales is Microsoft\u2019s Sales Force Automation solution. Learn about licensing Dynamics 365 Sales <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-sales\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>SFA<\/strong>: Sales Force Automation.<\/p>\n\n\n\n<p><strong>Exchange Web Services (EWS)<\/strong>: A legacy Microsoft API that allows software applications to access and interact with Exchange mailboxes. Learn about the licensing of Exchange Web Services <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/office-365-plans\/exchange-online\/exchange-web-services\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Dataverse MCP Server<\/strong>: The implementation of MCP inside Dataverse that helps AI tools talk directly to Dataverse data in a safe and structured way, without writing code or building custom connectors.<\/p>\n\n\n\n<p><strong>MCP<\/strong>: Model Context Protocol.<\/p>\n\n\n\n<p><strong>Model Context Protocol (MCP)<\/strong>: The standard that defines how AI tools can understand a system\u2019s data model, rules, and actions.<\/p>\n\n\n\n<p><strong>Promotions Playground<\/strong>: A Licensing School resource that summarises both current and expired Microsoft promotions all in one place. Search for a product or filter by category to quickly view headlines of each offer at a glance. Access the tool <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/promotions-playground\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Insiders Channel<\/strong>: A Visual Studio 2026 Update Channel which gives developers early access to upcoming features. Learn about licensing Visual Studio 2026 <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-the-developer-tools-2\/visual-studio-2026\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Stable Channel<\/strong>: A Visual Studio 2026 Update Channel which gives users validated, production-ready features every month. Learn about licensing Visual Studio 2026 <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-the-developer-tools-2\/visual-studio-2026\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft 365 Business Basic<\/strong>: A license that provides access to basic Online Services for up to 300 users. Learn about licensing Microsoft 365 for SMB customers <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-plans-for-smb-users\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft 365 Business Premium<\/strong>: A license that provides access to the Microsoft 365 Apps, basic Online Services, Windows 11 Pro, and security and management tools for up to 300 users. Learn about licensing Microsoft 365 for SMB customers <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-plans-for-smb-users\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft 365 Business Standard<\/strong>: A license that provides access to the Microsoft 365 Apps, and basic Online Services for up to 300 users. Learn about licensing Microsoft 365 for SMB customers <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-plans-for-smb-users\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft 365 E3<\/strong>: A license that provides access to the Microsoft 365 Apps, basic and advanced Online Services, Windows 11 Enterprise E3, and EMS E3. Learn about licensing Microsoft 365 for Enterprise customers <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-plans-for-enterprise-users\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft 365 E5<\/strong>: A license that provides access to the Microsoft 365 Apps, basic and advanced Online Services, Windows 11 Enterprise E5, and EMS E5. It builds on Microsoft 365 E3 by adding voice capabilities, as well as advanced security, compliance, and analytics features. Learn about licensing Microsoft 365 for Enterprise customers <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-plans-for-enterprise-users\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Office 365 E1<\/strong>: A license that provides access to basic Online Services. Learn about licensing Office 365 <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/office-365-plans\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Office 365 E3<\/strong>: A license that provides access to the Microsoft 365 Apps, and basic and advanced Online Services. Learn about licensing Office 365 <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/office-365-plans\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Office 365 E5<\/strong>: A license that provides access to the Microsoft 365 Apps , and basic and advanced Online Services, building on Office 365 E3 by adding voice, security, and analytics features. Learn about licensing Office 365 <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/office-365-plans\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Copilot Credits Capacity Pack<\/strong>: A license which entitles you to 25,000 Copilot Credits every month. Learn about the Copilot Credits Capacity Pack <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot-studio\/copilot-studio-standalone\/copilot-credits-capacity-pack\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Copilot Credits Pre-Purchase Plan<\/strong>: A way of buying Copilot Credits at advantageous pricing, but you must pay upfront, and unused Copilot Credits expire after a year. Learn about the Copilot Credits Pre-Purchase Plan <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot-studio\/copilot-studio-standalone\/copilot-credits-pre-purchase-plan\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Foundry Control Plane<\/strong>: A unified management interface that provides visibility, governance, and control for AI Agents, models, and tools across an enterprise.<\/p>\n\n\n\n<p><strong>Microsoft Agent 365<\/strong>: A control plane for AI Agents, helping businesses to deploy, organize, and govern AI Agents securely. It\u2019s a standalone license but also included in Microsoft 365 E7. Learn about licensing Microsoft Agent 365 <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/microsoft-agent-365\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Security Store<\/strong>: A site to discover, buy, and deploy security solutions and Agents that work with Microsoft Security products.<\/p>\n\n\n\n<p><strong>Multicloud Universal Credits<\/strong>: An initiative from Oracle offering a flexible, cross-cloud consumption model, enabling you to quickly and easily buy Oracle Database and OCI services across the cloud of your choice \u2013 AWS, GCP, Azure, and OCI.<\/p>\n\n\n\n<p><strong>Pre-Purchase Plan (PPP)<\/strong>: A type of Azure Reservation where you buy Commit Units to get advantageous pricing for a particular Azure service. Unused Commit Units expire after a year.<\/p>\n\n\n\n<p><strong>24x7 Problem Resolution Support<\/strong>: A Software Assurance benefit offering web-based or phone support to solve problems relating to Microsoft products. It was retired by Microsoft in 2023. Learn about Software Assurance <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/software-assurance\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Foundry<\/strong>: Microsoft\u2019s platform for developing AI applications and Agents at scale. Learn about licensing Microsoft Foundry <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-ai-foundry\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>PTU<\/strong>: Provisioned Throughput Unit.<\/p>\n\n\n\n<p><strong>AAD<\/strong>: Azure Active Directory.<\/p>\n\n\n\n<p><strong>AAU<\/strong>: Azure Agent Unit.<\/p>\n\n\n\n<p><strong>ACD<\/strong>: Azure Commitment Discount.<\/p>\n\n\n\n<p><strong>ACS<\/strong>: Azure Communication Services.<\/p>\n\n\n\n<p><strong>Active Directory<\/strong>: Microsoft\u2019s on-premises identity and access management service.<\/p>\n\n\n\n<p><strong>Active Directory Rights Management Services<\/strong>: AD RMS can be used to protect documents using information rights management (IRM) which allows a user to attach access permissions to a particular document which can prevent it from being opened, forwarded or printed by unauthorized people, for example. Learn about licensing Active Directory Rights Management Services <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-server-2025-services\/active-directory-rights-management-services-ad-rms\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>AD<\/strong>: Active Directory.<\/p>\n\n\n\n<p><strong>Additive CAL<\/strong>: A CAL that must be used in conjunction with a Base CAL. Learn about the licensing of Additive CALs for <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-server-2025-services\/remote-desktop-services-rds\/licensing-rds\/\">Windows Server RDS<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-server-2025-services\/active-directory-rights-management-services-ad-rms\/licensing-ad-rms\/\">Windows Server AD RMS<\/a>.<\/p>\n\n\n\n<p><strong>Add-on licenses<\/strong>: A license for which there is a prerequisite, where you need a qualifying license to be eligible to purchase it. Learn about Add-on licenses <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-online-services\/types-of-online-services-user-sls\/#:~:text=Add%2Don%20User%20SLs\">here<\/a>.<\/p>\n\n\n\n<p><strong>Advanced Communications<\/strong>: The precursor to Teams Premium.<\/p>\n\n\n\n<p><strong>Advanced Threat Analytics<\/strong>: Security technology which uses machine learning to learn what\u2019s normal behavior for users and devices so that it can identify suspicious behavior which may indicate a malicious attack. Learn about licensing Advanced Threat Analytics <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/the-cal-suites\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Advanced Threat Protection (ATP)<\/strong>: See Azure Advanced Threat Protection, Microsoft Defender Advanced Threat Protection, or Office 365 Advanced Threat Protection.<\/p>\n\n\n\n<p><strong>AD RMS<\/strong>: Active Directory Rights Management Services.<\/p>\n\n\n\n<p><strong>Advisor<\/strong>: See Azure Advisor.<\/p>\n\n\n\n<p><strong>Affiliate<\/strong>: A legal entity buying under another organization\u2019s Volume Licensing agreement. Learn about affiliates for the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/lessons\/introduction-to-microsoft-licensing\/enterprise-agreement-basics\/\">Enterprise Agreement<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/lessons\/introduction-to-microsoft-licensing\/mpsa-and-select-plus-basics\/\">MPSA<\/a>, and the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/lessons\/introduction-to-microsoft-licensing\/open-programs-basics\/\">Open Programs<\/a>.<\/p>\n\n\n\n<p><strong>Agent Builder<\/strong>: A tool for users licensed with a Microsoft 365 Copilot license to create Agents using a \u201clite\u201d version of Copilot Studio. Previously known as Copilot Studio Lite. Learn about licensing Copilot Studio <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot-studio\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>AHB<\/strong>: Azure Hybrid Benefit.<\/p>\n\n\n\n<p><strong>AHUB<\/strong>: Azure Hybrid Use Benefit \u2013 the original name for the Azure Hybrid Benefit.<\/p>\n\n\n\n<p><strong>AI<\/strong>: Artificial Intelligence.<\/p>\n\n\n\n<p><strong>AI Builder<\/strong>: A tool to help you to create intelligent apps that can learn from data and make decisions. Learn about the licensing of AI Builder <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/ai-builder\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>AKS<\/strong>: Azure Kubernetes Service.<\/p>\n\n\n\n<p><strong>AMR<\/strong>: Azure Managed Redis.<\/p>\n\n\n\n<p><strong>AOBO<\/strong>: Admin On Behalf Of.<\/p>\n\n\n\n<p><strong>APP<\/strong>: App Protection Policies.<\/p>\n\n\n\n<p><strong>ASC<\/strong>: Azure Security Center.<\/p>\n\n\n\n<p><strong>ASEAN<\/strong>: Association of Southeast Asian Nations.<\/p>\n\n\n\n<p><strong>Association of Southeast Asian Nations (ASEAN)<\/strong>: A regional grouping of states in Southeast Asia.<\/p>\n\n\n\n<p><strong>ATA<\/strong>: Advanced Threat Analytics.<\/p>\n\n\n\n<p><strong>ATP<\/strong>: Advanced Threat Protection.<\/p>\n\n\n\n<p><strong>Attach licenses<\/strong>: In a Dynamics 365 solution, a user is licensed for the first app with a Base license, and for subsequent apps with Attach licenses. Learn about Base and Attach licenses for the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-crm-apps\/base-and-attach-licenses\/\">CRM apps<\/a> and for the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-erp-apps\/base-and-attach-licenses\/\">ERP apps<\/a>.<\/p>\n\n\n\n<p><strong>Audio Conferencing<\/strong>: Functionality that enables users to dial into Teams meetings from a mobile or landline phone. Learn about licensing Audio Conferencing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/teams-and-audio-services\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Authorized Mobility partner<\/strong>: A partner who can receive licenses which are eligible for the License Mobility through SA benefit. Learn about licensing with Authorized Mobility partners <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/license-deployment-options\/overview-of-options\/authorized-mobility-partners\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Authorized Outsourcer<\/strong>: Any hosting partner that is not one of the Listed Providers, and is not using a Listed Provider as a Data Center Provider. Learn about licensing with Authorized Outsourcers <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/license-deployment-options\/overview-of-options\/authorized-outsourcers\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>AVD<\/strong>: Azure Virtual Desktop.<\/p>\n\n\n\n<p><strong>AVS<\/strong>: Azure VMware Solution.<\/p>\n\n\n\n<p><strong>AWS<\/strong>: Amazon Web Services. Amazon is classed as a Listed Provider by Microsoft, and you can learn about licensing for Listed Providers <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/license-deployment-options\/overview-of-options\/listed-providers\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>AX 2012 R3 Server<\/strong>: The precursor to Dynamics 365 for Operations Server.<\/p>\n\n\n\n<p><strong>Azure<\/strong>: Microsoft\u2019s cloud services. Learn about the licensing of Azure <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-azure\/\">here<\/a>, and how to buy it through <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-azure-services-csp\/\">CSP<\/a>, the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-azure-services-ea\/\">EA<\/a>, the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-azure-services-open-programs\/\">Open programs<\/a>, and the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-azure-services-mca-e\/\">MCA-E<\/a>.<\/p>\n\n\n\n<p><strong>Azure Active Directory<\/strong>: The previous name of Microsoft Entra ID.<\/p>\n\n\n\n<p><strong>Azure AD<\/strong>: Azure Active Directory.<\/p>\n\n\n\n<p><strong>Azure Advanced Threat Protection<\/strong>: The previous name of Microsoft Defender for Identity.<\/p>\n\n\n\n<p><strong>Azure Advisor<\/strong>: A tool that analyzes Azure resource configuration and usage telemetry and then recommends solutions that can help a customer improve (among other things) the cost effectiveness of the Azure resources. Learn more about the Azure Advisor <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-consumption-services\/the-azure-management-portal\/#:~:text=Azure%20Advisor\">here<\/a>.<\/p>\n\n\n\n<p><strong>Azure Agent Unit (AAU)<\/strong>: A standard way to measure and bill the work done by Azure-hosted autonomous Agents, like the Azure SRE Agent.<\/p>\n\n\n\n<p><strong>Azure AI Foundry<\/strong>: The previous name of Microsoft Foundry.<\/p>\n\n\n\n<p><strong>Azure Arc<\/strong>: Extends the Azure platform to manage resources beyond Azure itself, allowing you to manage and govern resources across data centers, at the edge, and in multicloud environments. Learn about Azure Arc ESUs for <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/esus-windows-server\/esus-azure-arc\/\">Windows Server 2012\/R2<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/esus-sql-server-2012\/esus-azure-arc\/\">SQL Server 2012<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/esus-sql-server-2014\/esus-azure-arc\/\">SQL Server 2014<\/a>.<\/p>\n\n\n\n<p><strong>Azure ATP<\/strong>: Azure Advanced Threat Protection.<\/p>\n\n\n\n<p><strong>Azure Calculator<\/strong>: See Azure Pricing Calculator.<\/p>\n\n\n\n<p><strong>Azure Communication Services (ACS)<\/strong>: An Azure consumption service for organizations that need a solution to handle high-volume email traffic.<\/p>\n\n\n\n<p><strong>Azure consumption services<\/strong>: The majority of the Azure services are sold on a consumption basis where customers pay in arrears for the services they have used. Learn about the licensing of the consumption services <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-consumption-services\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Azure Cost Management<\/strong>: The previous name of Microsoft Cost Management.<\/p>\n\n\n\n<p><strong>Azure Data Box<\/strong>: A Microsoft storage device that customers can use to move large amounts of data to Azure. Learn about the licensing of Azure Data Box <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-data-box\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Azure Data Box Edge<\/strong>: The previous name of Azure Stack Edge.<\/p>\n\n\n\n<p><strong>Azure Dedicated Host<\/strong>: An Azure service that provides physical servers, able to host one or more Azure virtual machines for Windows or Linux, which are dedicated to a single organization and their workloads. Learn about the licensing of Azure Dedicated Host <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-azure-dedicated-host-solutions\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Azure Defender<\/strong>: Along with Azure Security Center, this was rebranded as Microsoft Defender for Cloud.<\/p>\n\n\n\n<p><strong>Azure Defender for IoT<\/strong>: The previous name of Microsoft Defender for IoT.<\/p>\n\n\n\n<p><strong>Azure DevOps<\/strong>: The online Application Lifecycle Management solution part of the developer tools. Learn about licensing Azure DevOps <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-the-developer-tools-2\/azure-devops-service\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Azure DevOps Server<\/strong>: The on-premises Application Lifecycle Management solution part of the developer tools. Learn about licensing Azure DevOps Server <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-devops-server-2022\/licensing-azure-devops-server-2022\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Azure Enterprise Portal<\/strong>: When Azure was first made available in the Enterprise Agreement customers used the <a href=\"https:\/\/www.w3schools.com\/html\/ea.azure.com\">Azure Enterprise Portal<\/a> to track usage and spend of the Azure consumption services. Learn more about the Azure Enterprise Portal <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-consumption-services\/the-azure-enterprise-portal\/?attr=the-azure-enterprise-portal-1799\">here<\/a>.<\/p>\n\n\n\n<p><strong>Azure Hybrid Benefit<\/strong>: benefit that allows customers to take eligible licenses to Azure. Learn about the Azure Hybrid Benefit with Windows Server and SQL Server.<\/p>\n\n\n\n<p><strong>Azure Hybrid Use Benefit<\/strong>: The original name for the Azure Hybrid Benefit.<\/p>\n\n\n\n<p><strong>Azure Local<\/strong>: The evolution of the Azure Stack solutions, enabled by Azure Arc. Azure Stack HCI was renamed to Azure Local \u2013 learn about its licensing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-azure-stack-solutions\/azure-stack-hci\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Azure Management Group<\/strong>: A collection of a specific group of Azure Subscriptions. Learn more about Azure Management Groups <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-consumption-services\/azure-subscriptions\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Azure Management Portal<\/strong>: The portal at <a href=\"https:\/\/portal.azure.com\/\">https:\/\/portal.azure.com\/<\/a> used by technical staff to set up resources such as virtual machines, and by financial users to track usage and spend. Learn more <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-consumption-services\/the-azure-management-portal\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Azure Marketplace<\/strong>: Where Microsoft and partners sell solutions that are built on Azure. Learn more about licensing via Azure Marketplace <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-marketplace\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Azure Prepayment<\/strong>: An upfront payment for Azure services. As the consumption services are used, the relevant amount is decremented from this Azure Prepayment amount each month. Learn about Azure Prepayment in an <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-azure-services-ea\/consumption-services-azure-prepayment\/\">Enterprise Enrollment<\/a> and the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-azure-services-open-programs\/azure-consumption-services-2\/\">Open programs<\/a>.<\/p>\n\n\n\n<p><strong>Azure Pricing Calculator<\/strong>: A tool to help customers to estimate the cost of a solution based on the Azure services. Learn more <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-consumption-services\/the-azure-pricing-calculator\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Azure quotas<\/strong>: Many Azure services have quotas, which are maximums for the resources that may be created within a Subscription. Learn about Azure quotas <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-consumption-services\/azure-quotas\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Azure Reservation<\/strong>: A Reservation is a way of making a duration-based commitment to one of the Azure services to get attractive pricing. Learn more about how Azure Reservations generally work <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-reservations\/\">here<\/a>, and find specific information on Reservations for <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-reservations\/azure-dedicated-host\/\">Azure Dedicated Host<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-reservations\/virtual-machines-reserved-instances\/\">Reserved Instances<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-reservations\/azure-sql-reserved-capacity\/\">Azure SQL Reserved Capacity<\/a>, and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-reservations\/suse-linux-software-plan\/\">SUSE Linux Software Plans<\/a>.<\/p>\n\n\n\n<p><strong>Azure Resource Group<\/strong>: A group of resources within an Azure Subscription. Learn more about Azure Resource Groups <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-consumption-services\/azure-subscriptions\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Azure Security Center (ASC)<\/strong>: Along with Azure Defender this was rebranded as Microsoft Defender for Cloud.<\/p>\n\n\n\n<p><strong>Azure Sentinel<\/strong>: The previous name of Microsoft Sentinel.<\/p>\n\n\n\n<p><strong>Azure SRE Agent<\/strong>: An AI tool designed to streamline incident response, improve service uptime, and cut operational costs. It enhances incident and infrastructure management in Azure, allowing site reliability engineers (SRE) to concentrate on higher-value tasks.<\/p>\n\n\n\n<p><strong>Azure Spot virtual machine<\/strong>: A type of virtual machine which takes advantage of special pricing when Microsoft has spare capacity for a particular virtual machine type. Learn more about licensing Azure Spot virtual machines <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-specialist-virtual-machines\/azure-spot-virtual-machines\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Azure SQL<\/strong>: The term Microsoft uses to group together the options that customers have for running SQL Server in Azure. Learn about licensing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-sql-server-virtual-machines\/\">SQL Server virtual machines<\/a> (IaaS solutions) and licensing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-sql-server-paas-solutions\/\">SQL Server PaaS solutions<\/a>.<\/p>\n\n\n\n<p><strong>Azure Stack<\/strong>: The previous name of Azure Stack Hub. See also Azure Stack solutions.<\/p>\n\n\n\n<p><strong>Azure Stack Edge<\/strong>: A solution that enables customers to run edge-computing workloads on an Azure managed appliance. Learn about the licensing of Azure Stack Edge <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-azure-stack-solutions\/azure-stack-edge\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Azure Stack HCI<\/strong>: A hyperconverged infrastructure (HCI) cluster solution that hosts virtualized Windows and Linux workloads and their storage. It was renamed to Azure Local \u2013 learn about its licensing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-azure-stack-solutions\/azure-stack-hci\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Azure Stack Hub<\/strong>: Sold as an integrated hardware system, with software preinstalled on validated hardware. It includes a (small) subset of the Azure services giving customers an autonomous cloud that they can run completely or partially disconnected from the internet and the public cloud. Learn about the licensing of Azure Stack Hub <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-azure-stack-solutions\/azure-stack-hub\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Azure Stack solutions<\/strong>: Solutions that enable customers to extend the Azure services and capabilities to their own environments, whether that\u2019s a data center, an edge location, or a remote office. There are three members of the Azure Stack family: learn about licensing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-azure-stack-solutions\/azure-stack-edge\/\">Azure Stack Edge<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-azure-stack-solutions\/azure-stack-hci\/\">Azure Stack HCI<\/a> (renamed to Azure Local), and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-azure-stack-solutions\/azure-stack-hub\/\">Azure Stack Hub<\/a>.<\/p>\n\n\n\n<p><strong>Azure Storage Mover<\/strong>: A fully managed migration service to migrate files and folders from an on-premises infrastructure or AWS S3 buckets to Azure Storage.<\/p>\n\n\n\n<p><strong>Azure Subscriptions<\/strong>: Containers to which resources are assigned as they are created. Learn about the structure of an Azure Subscription <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-consumption-services\/azure-subscriptions\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Azure Virtual Desktop (AVD)<\/strong>: A service in Azure that allows customers to take advantage of a secure remote virtual desktop and app experience, enabling them to deliver virtual desktops to their users or to stream the Office applications. Learn about licensing Azure Virtual Desktop <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-virtual-desktop\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Azure VMware Solution (AVS)<\/strong>: An Azure service that enables customers to run their VMware workloads natively in Azure. Learn about licensing Extended Security Updates in AVS for <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/esus-windows-server\/deployment-scenarios\/azure\/\">Windows Server<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/esus-sql-server-2014\/deployment-scenarios\/azure\/\">SQL Server<\/a>.<\/p>\n\n\n\n<p><strong>Base CAL<\/strong>: A CAL that an Additive CAL must always be purchased with. Learn about the licensing of Windows Server 2025 Base CALs <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-server-2025\/client-access-licenses\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Base licenses<\/strong>: In a Dynamics 365 solution, a user is licensed for the first app with a Base license, and for subsequent apps with Attach licenses. Learn about Base and Attach licenses for the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-crm-apps\/base-and-attach-licenses\/\">CRM apps<\/a> and for the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-erp-apps\/base-and-attach-licenses\/\">ERP apps<\/a>.<\/p>\n\n\n\n<p><strong>BCDR<\/strong>: Business Continuity and Disaster Recovery.<\/p>\n\n\n\n<p><strong>BEC<\/strong>: Base Enterprise Commitment.<\/p>\n\n\n\n<p><strong>BI<\/strong>: Business Intelligence.<\/p>\n\n\n\n<p><strong>Bing Chat<\/strong>: The previous name of Copilot without commercial data protection.<\/p>\n\n\n\n<p><strong>Bing Chat Enterprise<\/strong>: The previous name of Copilot with commercial data protection.<\/p>\n\n\n\n<p><strong>Bing Image Creator<\/strong>: The previous name of Microsoft Designer.<\/p>\n\n\n\n<p><strong>BizChat<\/strong>: See Business Chat.<\/p>\n\n\n\n<p><strong>BizTalk Server<\/strong>: Software that enables companies to automate business processes using adapters which can communicate with and connect the different software systems used in an enterprise. Learn about licensing BizTalk Server <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/biztalk-server-2020\/licensing-biztalk-server-2020\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Bridge CAL<\/strong>: A special type of CAL first introduced in 2011 to help Enterprise Agreement customers maintain their enterprise-wide commitment to the Core CAL Suite and Enterprise CAL Suite as they moved to the cloud.<\/p>\n\n\n\n<p><strong>Bring Your Own Device (BYOD)<\/strong>: When employees use their own devices at work, often with an organizational virtual desktop. Learn about licensing virtual desktops <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-11-user\/licensing-virtual-desktops\/?attr=licensing-virtual-desktops-2595\">here<\/a>.<\/p>\n\n\n\n<p><strong>Bring Your Own License (BYOL)<\/strong>: When organizations use their licenses with partners\u2019 hardware or on Azure. Learn about the different BYOL licensing models: Azure Hybrid Benefit, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/flexible-virtualization-benefit\/\">Flexible Virtualization Benefit<\/a>, and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/license-mobility-through-sa\/\">License Mobility through Software Assurance<\/a>.<\/p>\n\n\n\n<p><strong>Business Chat (BizChat)<\/strong>: The Microsoft 365 Copilot chat interface that provides answers from both the web and Microsoft Graph. Learn about licensing Microsoft 365 Copilot <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/copilot-for-microsoft-365\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Business Cloud<\/strong>: The previous name of GitHub Enterprise Cloud online service. Learn about licensing GitHub Enterprise <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-the-developer-tools-2\/github\/github-enterprise-ghe\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>BYOD<\/strong>: Bring Your Own Device.<\/p>\n\n\n\n<p><strong>BYOL<\/strong>: Bring Your Own License.<\/p>\n\n\n\n<p><strong>BYOPC<\/strong>: Bring Your Own PC.<\/p>\n\n\n\n<p><strong>BYOS<\/strong>: Bring Your Own Subscription.<\/p>\n\n\n\n<p><strong>CA<\/strong>: Conditional Access.<\/p>\n\n\n\n<p><strong>CACD<\/strong>: Common Area Communications Device.<\/p>\n\n\n\n<p><strong>CAL<\/strong>: Client Access License.<\/p>\n\n\n\n<p><strong>CAL equivalent license<\/strong>: A user Subscription License for an Online Services product that also includes rights to access licensed on-premises servers. Learn about CAL equivalent licenses for <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/office-365-plans\/on-premises-use-rights\/\">Office 365<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-plans-for-enterprise-users\/on-premises-use-rights\/\">Microsoft 365<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/ems-plans\/on-premises-use-rights\/\">EMS<\/a>.<\/p>\n\n\n\n<p><strong>CAL Suite<\/strong>: A convenient and cost-effective way of buying CALs. Learn about the licensing of the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/the-cal-suites\/\">Core CAL Suite<\/a> and the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/the-cal-suites\/\">Enterprise CAL Suite<\/a>.<\/p>\n\n\n\n<p><strong>Calling Plan<\/strong>: A way of paying for calling minutes which enable users to call phone numbers outside their organization, essentially making Microsoft their telecoms provider. Learn more about licensing Calling Plans <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/teams-calling\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>CAP<\/strong>: Common Area Phone.<\/p>\n\n\n\n<p><strong>Capacity Reservation Group (CRG)<\/strong>: A collection of Capacity Reservations.<\/p>\n\n\n\n<p><strong>Capacity Reservations<\/strong>: A way of reserving virtual machine capacity in a particular Azure data center. Learn more about licensing with Capacity Reservations <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/capacity-reservations\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Capacity Unit (CU)<\/strong>: The unit of purchase for Microsoft Fabric.<\/p>\n\n\n\n<p><strong>CASB<\/strong>: Cloud Access Security Broker.<\/p>\n\n\n\n<p><strong>CBB<\/strong>: Current Branch for Business.<\/p>\n\n\n\n<p><strong>CCaaS<\/strong>: Contact Center as a Service. Dynamics 365 Contact Center is Microsoft\u2019s CCaaS solution; learn how to license it <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-contact-center\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>CCCU<\/strong>: Copilot Credit Commit Unit.<\/p>\n\n\n\n<p><strong>CCS<\/strong>: Copilot Control System.<\/p>\n\n\n\n<p><strong>CDP<\/strong>: Customer Data Platform or Commercial Data Protection.<\/p>\n\n\n\n<p><strong>CDS<\/strong>: Common Data Service.<\/p>\n\n\n\n<p><strong>CIAM<\/strong>: Customer Identity and Access Management.<\/p>\n\n\n\n<p><strong>CIEM<\/strong>: Cloud Infrastructure Entitlement Management.<\/p>\n\n\n\n<p><strong>CIS suites<\/strong>: Core Infrastructure Server suites.<\/p>\n\n\n\n<p><strong>Client Access License (CAL)<\/strong>: A license assigned to a user or device to allow access to the services of a server. Learn about CALs for <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-server-2025\/client-access-licenses\/\">Windows Server<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/sql-server-2022\/licensing-sql-server-2022\/server-cal-licensing-model\/\">SQL Server<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/sharepoint-server-subscription-edition-se\/licensing-sharepoint-server-se\/\">SharePoint Server<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/exchange-server-2019\/licensing-exchange-server-2019\/\">Exchange Server<\/a>.<\/p>\n\n\n\n<p><strong>Client Management License (CML)<\/strong>: A license assigned to a user or device to allow management by System Center. Learn about licensing with System Center CMLs <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/system-center-2022-clients\/licensing-system-center-2022-for-clients\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Client operating system<\/strong>: An operating system that runs on a client or desktop computer. Microsoft\u2019s client operating system is Windows 11. Learn about licensing Windows 11 (Device) <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-11-device\/licensing-windows-11\/\">here<\/a> and Windows 11 (User) <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-11-user\/licensing-windows-11\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Cloud App Security<\/strong>: See Office 365 Cloud App Security.<\/p>\n\n\n\n<p><strong>Cloud flow<\/strong>: Digital Process Automation (DPA) in Power Automate enabling users to automate processes which are triggered either automatically, instantly, or via a schedule. Learn about licensing cloud flows in Power Automate <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/power-automate\/licensing-cloud-flows\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>CloudKnox<\/strong>: The previous name of Microsoft Entra Permissions Management.<\/p>\n\n\n\n<p><strong>Cloud-Native Application Protection Platform (CNAPP)<\/strong>: A solution that protects cloud-based applications from various cyber threats and vulnerabilities. Microsoft\u2019s CNAPP is Microsoft Defender for Cloud. Learn about the licensing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-defender\/microsoft-defender-for-cloud\/cloud-workload-protection-platform-cwpp\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Cloud PBX<\/strong>: The previous name of Phone System.<\/p>\n\n\n\n<p><strong>Cloud PC<\/strong>: A Windows desktop that runs in the cloud. Learn about licensing Windows 365 <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-365\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Cloud Security Posture Management (CSPM)<\/strong>: Technology that provides visibility into the security state of an organization\u2019s assets and workloads, and provides hardening guidance to help them efficiently and effectively improve their security posture. Learn about licensing Microsoft\u2019s Cloud Security Posture Management solution <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-defender\/microsoft-defender-for-cloud\/cloud-security-posture-management-cspm\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Cloud Solution Provider program<\/strong>: A program designed to enable partners to sell licenses for Microsoft products, along with their own services, to customers. Learn about CSP and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-on-premises-products-csp\/\">on-premises software<\/a>, Online Services <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-online-services-csp-legacy\/\">(legacy<\/a><a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-online-services-csp-nce\/\">\/NCE<\/a>) and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-azure-services-csp\/\">Azure<\/a>.<\/p>\n\n\n\n<p><strong>Cloud Workload Protection Platform (CWPP)<\/strong>: A solution that provides advanced threat protection capabilities across cloud workloads. Microsoft\u2019s CWPP is delivered as part of Microsoft Defender for Cloud. Learn about the licensing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-defender\/microsoft-defender-for-cloud\/cloud-workload-protection-platform-cwpp\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Cloudyn<\/strong>: The precursor to Azure Cost Management, retired on June 30, 2021.<\/p>\n\n\n\n<p><strong>CML<\/strong>: Client Management License.<\/p>\n\n\n\n<p><strong>CML equivalent license<\/strong>: A user Subscription License for an Online Services product that also include rights to access licensed on-premises servers. Learn about CML equivalent licenses for Microsoft 365 and EMS <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/system-center-2022-clients\/cml-equivalent-licenses\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>CMMC<\/strong>: Cybersecurity Maturity Model Certification.<\/p>\n\n\n\n<p><strong>CNAPP<\/strong>: Cloud-Native Application Protection Platform.<\/p>\n\n\n\n<p><strong>Commercial Data Protection (CDP)<\/strong>: The previous name of Enterprise Data Protection.<\/p>\n\n\n\n<p><strong>Common Area Communications Device (CACD)<\/strong>: A Teams device placed in a shared space that anyone can use without logging in. Examples include Common Area Phones, Teams Displays, and Teams Panels. Learn about licensing Teams devices <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/teams-devices\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Common Area Phone<\/strong>: A phone used by any user in a shared space, and the previous name of the Teams Shared Devices license.<\/p>\n\n\n\n<p><strong>Common Data Service (CDS)<\/strong>: The previous name of Dataverse.<\/p>\n\n\n\n<p><strong>Communication Credits<\/strong>: A method for paying for calling minutes used in various scenarios, including toll-free calls on Teams meeting invites or when the monthly minute capacity from a Calling Plan is exhausted. Learn about licensing Communication Credits <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/teams-calling\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Companion Subscription License (CSL)<\/strong>: A license that was available to allow users using a Windows 8 licensed device to access a VDI desktop on additional devices. Learn about VDI licensing with Windows 11 <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-11-device\/licensing-a-virtual-desktop-infrastructure\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Computer Use<\/strong>: A capability that enables AI Agents to interact with websites and desktop apps by clicking buttons, selecting menus, and typing into fields on the screen.<\/p>\n\n\n\n<p><strong>Computer-Using Agents (CUA)<\/strong>: AI Agents that make use of the Computer Use capabilities.<\/p>\n\n\n\n<p><strong>Configuration Manager<\/strong>: See Microsoft Endpoint Configuration Manager.<\/p>\n\n\n\n<p><strong>Constrained core virtual machine<\/strong>: Special virtual machines available in Azure where the virtual core count is constrained; this reduces the cost of the software licensing, while maintaining the same memory, storage, and I\/O bandwidth. Learn about licensing constrained core virtual machines <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-specialist-virtual-machines\/constrained-core-virtual-machines\/?attr=constrained-core-virtual-machines-2023\">here<\/a>.<\/p>\n\n\n\n<p><strong>Container<\/strong>: An alternative environment to running products in a virtual machine. Learn about licensing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-server-2025\/licensing-windows-server-containers\/\">Windows Server<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/sql-server-2022\/licensing-sql-server-with-container-technology\/\">SQL Server<\/a> for containers.<\/p>\n\n\n\n<p><strong>Conversation Intelligence<\/strong>: Part of the Dynamics 365 Sales Insights capabilities.<\/p>\n\n\n\n<p><strong>Copilot<\/strong>: Microsoft\u2019s AI assistant which helps users to (for example) find information, ask questions, and generate new content through a chat-based interface. Learn about licensing Copilot <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Copilot Agents<\/strong>: A way of adding new knowledge and skills to Microsoft 365 Copilot. Learn about licensing Microsoft 365 Copilot <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/copilot-for-microsoft-365\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Copilot Control System (CCS)<\/strong>: The tools that enable organizations to secure, manage, and analyze Microsoft 365 Copilot, Copilot Chat, Copilot Studio, and Agents.<\/p>\n\n\n\n<p><strong>Copilot Credits<\/strong>: The unit of consumption for Copilot Agents (previously called messages). Learn about Copilot Credits consumption <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot-studio\/message-consumption\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Copilot Credits Calculator<\/strong>: A Licensing School tool to help estimate which purchasing option is most suitable for a customer\u2019s predicted usage of Copilot Credits. Access the tool <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot-credits-calculator\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Copilot for Finance<\/strong>: The previous name of Microsoft 365 Copilot for Finance.<\/p>\n\n\n\n<p><strong>Copilot for Microsoft 365<\/strong>: The previous name of Microsoft 365 Copilot.<\/p>\n\n\n\n<p><strong>Copilot for Sales<\/strong>: The previous name of Microsoft 365 Copilot for Sales.<\/p>\n\n\n\n<p><strong>Copilot for Security<\/strong>: The previous name of Security Copilot.<\/p>\n\n\n\n<p><strong>Copilot for Service<\/strong>: The previous name of Microsoft 365 Copilot for Service.<\/p>\n\n\n\n<p><strong>Copilot in Azure<\/strong>: An AI assistant accessed from the Azure Management Portal designed to help users answer questions, complete tasks, and discover and utilize Azure services. Learn about the licensing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/copilot-in-azure\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Copilot in Dynamics 365 Customer Service<\/strong>: An AI assistant included in eligible Dynamics 365 Customer Service licenses. Learn about licensing Copilot in Dynamics 365 Customer Service <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-crm-apps\/included-rights-and-entitlements-for-other-dynamics-apps\/customer-service\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Copilot in Dynamics 365 Sales<\/strong>: An AI assistant included in eligible Dynamics 365 Sales licenses. Learn about licensing Copilot in Dynamics 365 Sales <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-crm-apps\/sales\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Copilot Lab<\/strong>: The previous name of Copilot Prompt Gallery.<\/p>\n\n\n\n<p><strong>Copilot Pages<\/strong>: A place for users to collaborate with each other and Copilot. Learn about licensing Copilot <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Copilot Pro<\/strong>: See Microsoft Copilot Pro.<\/p>\n\n\n\n<p><strong>Copilot Prompt Gallery<\/strong>: A set of <a href=\"https:\/\/copilot.cloud.microsoft\/en-us\/prompts\">resources<\/a> to help you get started with Copilot.<\/p>\n\n\n\n<p><strong>Copilot Service workspace<\/strong>: The evolution of the Customer Service workspace app for Dynamics 365 Customer Service users. Learn about the licensing of Copilot Service workspace <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-crm-apps\/included-rights-and-entitlements-for-other-dynamics-apps\/customer-service\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Copilot Studio<\/strong>: A low-code tool for building standalone copilots and customizing Microsoft 365 Copilot. Learn about the licensing of Copilot Studio <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot-studio\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Copilot Studio in Microsoft 365 Copilot<\/strong>: The original name of Agent Builder, before it was known as Copilot Studio Lite.<\/p>\n\n\n\n<p><strong>Copilot Studio Lite<\/strong>: The previous name of Agent Builder.<\/p>\n\n\n\n<p><strong>Copilot Studio in Microsoft 365 Copilot<\/strong>: Not a product, but the name for the use rights included in a Microsoft 365 Copilot license that allow you to customize Microsoft 365 Copilot using Copilot Studio. Learn about licensing Microsoft 365 Copilot <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/copilot-for-microsoft-365\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Copilot Vision on Windows<\/strong>: An AI feature that you can enable in Windows on an ad hoc basis to see what you see and talk to you about it.<\/p>\n\n\n\n<p><strong>Copilot with commercial data protection<\/strong>: Use of Copilot where both user and organizational data is protected. Learn about licensing Copilot with commercial data protection <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/commercial-data-protection\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Copilot with Graph-grounded chat<\/strong>: The previous name of Business Chat (BizChat).<\/p>\n\n\n\n<p><strong>Copilot without commercial data protection<\/strong>: Use of Copilot without protection of user and organizational data. Learn about licensing Copilot with commercial data protection <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/commercial-data-protection\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Core CAL Suite<\/strong>: A way of buying six useful CALs together. Learn about the licensing of the Core CAL Suite <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/the-cal-suites\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Core Infrastructure Server (CIS) suites<\/strong>: A way of buying licenses for both Windows Server 2025 and System Center 2025, available in Standard and Datacenter editions. Learn about Core Infrastructure Server suites licensing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/system-center-2022-servers\/core-infrastructure-server-suites\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Coterminous<\/strong>: When multiple subscriptions or terms align, reaching the end\/renewal date at the same time.<\/p>\n\n\n\n<p><strong>Covered Suites<\/strong>: A set of licenses that <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/office-365-and-microsoft-365-no-teams-licenses\/\">include Teams<\/a>, in contrast to the (no Teams) Suites They are Microsoft 365 Business Basic, Microsoft 365 Business Standard, Microsoft 365 Business Premium, Office 365 E1, Office 365 E3, Office 365 E5, Microsoft 365 E3, Microsoft 365 E5, and Microsoft 365 E7.<\/p>\n\n\n\n<p><strong>CPC<\/strong>: Cloud PC.<\/p>\n\n\n\n<p><strong>CRG<\/strong>: Capacity Reservation Group.<\/p>\n\n\n\n<p><strong>CRM<\/strong>: Customer Relationship Management.<\/p>\n\n\n\n<p><strong>CRM Online<\/strong>: The precursor to the Dynamics 365 CRM apps.<\/p>\n\n\n\n<p><strong>CRM Server 2016<\/strong>: The precursor to Dynamics 365 Server.<\/p>\n\n\n\n<p><strong>CSH<\/strong>: Customer Service Hub.<\/p>\n\n\n\n<p><strong>CSL<\/strong>: Companion Subscription License.<\/p>\n\n\n\n<p><strong>CSP<\/strong>: Cloud Solution Provider program.<\/p>\n\n\n\n<p><strong>CSP-H program<\/strong>: CSP-Hoster program.<\/p>\n\n\n\n<p><strong>CSP-Hoster (CSP-H) program<\/strong>: A program to enable hosting partners to build and manage solutions based on Microsoft software. Learn about licensing CSP-Hoster solutions <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-csp-hoster-solutions\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>CSPM<\/strong>: Cloud Security Posture Management.<\/p>\n\n\n\n<p><strong>CSR<\/strong>: Customer Service Representative.<\/p>\n\n\n\n<p><strong>CU<\/strong>: Capacity Unit or Commit Unit.<\/p>\n\n\n\n<p><strong>CUA<\/strong>: Computer-Using Agents.<\/p>\n\n\n\n<p><strong>Current Branch<\/strong>: A release cadence which provides feature updates several times a year. Learn about the Current Branch for <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/system-center-2022-servers\/system-center-branches\/\">System Center<\/a>.<\/p>\n\n\n\n<p><strong>Customer Data Platform (CDP)<\/strong>: A solution that collects, unifies, and organizes customer data from multiple sources to create a comprehensive view of a customer in order for marketeers to deliver more personalized and effective interactions. Dynamics 365 Customer Insights \u2013 Data is Microsoft\u2019s CDP product, and you can learn about the licensing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-customer-insights\/interacted-people-and-unified-people\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Customer Engagement Plan<\/strong>: See Dynamics 365 Customer Engagement Plan.<\/p>\n\n\n\n<p><strong>Customer Insights \u2013 Data<\/strong>: Microsoft\u2019s CDP solution and part of Dynamics 365 Customer Insights. Learn about the licensing of Dynamics 365 Customer Insights <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-customer-insights\/interacted-people-and-unified-people\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Customer Insights \u2013 Journey<\/strong>: Microsoft\u2019s marketing automation solution and part of Dynamics 365 Customer Insights. Learn about the licensing of Dynamics 365 Customer Insights <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-customer-insights\/interacted-people-and-unified-people\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Customer Relationship Management (CRM)<\/strong>: Technology used to manage interactions with customers and potential customers. The Dynamics 365 CRM apps give users working in different functional areas of the business software specific to their roles.<\/p>\n\n\n\n<p><strong>Customer Service Hub<\/strong>: An app available to use in a desktop browser or on a mobile device for managing knowledge articles and case management in Dynamics 365 Customer Service. Learn about the licensing of Customer Service Hub <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-crm-apps\/included-rights-and-entitlements-for-other-dynamics-apps\/customer-service\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Customer Service Insights<\/strong>: Functionality in the Dynamics 365 Customer Service solution that gives agents and customer service managers (for example) insights into customer satisfaction-boosting analytics. Learn about the licensing of Customer Service Insights <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-crm-apps\/included-rights-and-entitlements-for-other-dynamics-apps\/customer-service\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Customer Service Representative (CSR)<\/strong>: The human (as opposed to an AI Agent) that uses Dynamics 365 Customer Service and Dynamics 365 Contact Center solutions.<\/p>\n\n\n\n<p><strong>Customer Service workspace<\/strong>: The evolution of the Customer Service Hub app for Dynamics 365 Customer Service users. Learn about the licensing of the Customer Service workspace app <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-crm-apps\/included-rights-and-entitlements-for-other-dynamics-apps\/customer-service\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>CustomerSource<\/strong>: A retired SA benefit giving self-help resources for Dynamics users. Learn about <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/software-assurance\/sa-benefits-for-training-and-support\/\">CustomerSource<\/a> here.<\/p>\n\n\n\n<p><strong>CVM<\/strong>: Confidential Virtual Machine.<\/p>\n\n\n\n<p><strong>CWPP<\/strong>: Cloud Workload Protection Platform.<\/p>\n\n\n\n<p><strong>Cybersecurity Maturity Model Certification (CMMC)<\/strong>: A U.S. Department of Defense (DoD) program designed to ensure that defense contractors and subcontractors meet specific cybersecurity standards when handling sensitive government information. It became a formal requirement in DoD contracts starting November 10, 2025.<\/p>\n\n\n\n<p><strong>D365<\/strong>: Dynamics 365.<\/p>\n\n\n\n<p><strong>DAC<\/strong>: Dragon Admin Center.<\/p>\n\n\n\n<p><strong>DAG<\/strong>: Data Access Governance.<\/p>\n\n\n\n<p><strong>Data Center Provider<\/strong>: An organization that provides infrastructure services to another hosting partner. Learn about the different deployment options that customers have <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/license-deployment-options\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Data Loss Prevention (DLP)<\/strong>: Technology that enforces compliance requirements for sensitive data. Learn about licensing Data Loss Prevention <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/exchange-server-2019\/licensing-exchange-server-2019\/?attr=licensing-exchange-server-2019-1094#:~:text=Data%20Loss%20Prevention\">here<\/a>.<\/p>\n\n\n\n<p><strong>Data Protection Manager (DPM)<\/strong>: A Microsoft backup and recovery solution, part of the System Center management products. Learn about Data Protection Manager licensing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/system-center-2022-servers\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Dataverse<\/strong>: Where you securely store and manage data that\u2019s used by the Dynamics 365 and Power Platform products. Learn about Dataverse capacity licensing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dataverse\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>DCA<\/strong>: Desktop Companion Application.<\/p>\n\n\n\n<p><strong>DCP<\/strong>: Data Center Provider<\/p>\n\n\n\n<p><strong>Dedicated hardware<\/strong>: Hardware that is dedicated to the use of a single customer. Learn about licensing dedicated hardware for <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/license-deployment-options\/get-the-detail\/sql-server-2022-2\/\">Windows Server<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/license-deployment-options\/get-the-detail\/sql-server-2022-2\/\">SQL Server<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/license-deployment-options\/get-the-detail\/other-server-applications\/\">other server applications<\/a>.<\/p>\n\n\n\n<p><strong>Defender<\/strong>: See Microsoft Defender.<\/p>\n\n\n\n<p><strong>Designer in Copilot<\/strong>: See Microsoft Designer.<\/p>\n\n\n\n<p><strong>Desktop Companion Application (DCA)<\/strong>: Part of the Dynamics 365 Customer Service or Dynamics 365 Contact Center solution that ensures that Customer Service Representatives can continue customer conversations without interruption during web application issues.<\/p>\n\n\n\n<p><strong>Desktop flow<\/strong>: Robotic Process Automation (RPA) in Power Automate enabling users to automate repetitive desktop processes. Learn about licensing desktop flows in Power Automate <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/power-automate\/licensing-desktop-flows\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Developer tools<\/strong>: Microsoft\u2019s developer tools include Visual Studio, Azure DevOps, GitHub and Dev Box. Learn about the licensing of all the developer tools <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-the-developer-tools-2\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Device CAL<\/strong>: A CAL assigned to a device to allow access to the services of a server. Learn about <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-server-2025\/client-access-licenses\/\">Windows Server<\/a> Device CALs.<\/p>\n\n\n\n<p><strong>DevOps<\/strong>: The combination of development and IT operations to enhance collaboration, automate processes, and improve software delivery. See Azure DevOps.<\/p>\n\n\n\n<p><strong>DevOps Server<\/strong>: See Azure DevOps Server.<\/p>\n\n\n\n<p><strong>DevSecOps<\/strong>: The integration of security practices into DevOps, ensuring continuous security throughout the software development lifecycle. Microsoft Defender for Cloud unifies DevSecOps for an organization. Learn about the licensing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-defender\/microsoft-defender-for-cloud\/cloud-workload-protection-platform-cwpp\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Dev\/Test pricing<\/strong>: Special pricing for Azure services which are only used for Dev\/Test workloads. Learn about Dev\/Test pricing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-devops\/dev-test-subscriptions\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Dev\/Test Subscriptions<\/strong>: An Azure Subscription used for Dev\/Test workloads with discounted rates on some of the Azure services. Learn about Dev\/Test Subscriptions <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-devops\/dev-test-subscriptions\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Digital Process Automation (DPA)<\/strong>: In the context of Power Automate, the facility to create cloud flows to automate processes which are triggered either automatically, instantly, or via a schedule. Learn about licensing cloud flows in Power Automate <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/power-automate\/licensing-cloud-flows\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>DLP<\/strong>: Data Loss Prevention.<\/p>\n\n\n\n<p><strong>Document Processing for Microsoft 365<\/strong>: An AI-powered content management system for use with SharePoint Online, OneDrive, and Teams. This was previously known as SharePoint Syntex, Microsoft Syntex, and SharePoint Premium.<\/p>\n\n\n\n<p><strong>Down-edition rights<\/strong>: Rights allowing you to install a lower edition of a product. Learn about down-edition rights for <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-server-2025\/downgrade-and-down-edition-rights\/\">Windows Server 2025<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/sql-server-2022\/downgrade-and-down-edition-rights\/\">SQL Server 2022<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/office-ltsc-2024\/downgrade-and-down-edition-rights\/\">Office LTSC 2024<\/a>.<\/p>\n\n\n\n<p><strong>Downgrade rights<\/strong>: Rights allowing you to install an earlier version of a product. Learn about downgrade rights for <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-server-2025\/downgrade-and-down-edition-rights\/\">Windows Server 2025<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/sql-server-2022\/downgrade-and-down-edition-rights\/\">SQL Server 2022<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/office-ltsc-2024\/downgrade-and-down-edition-rights\/\">Office LTSC 2024<\/a>.<\/p>\n\n\n\n<p><strong>DPA<\/strong>: Digital Process Automation.<\/p>\n\n\n\n<p><strong>DPL<\/strong>: Dynamics Price List.<\/p>\n\n\n\n<p><strong>DPM<\/strong>: Data Protection Manager.<\/p>\n\n\n\n<p><strong>DR<\/strong>: Disaster Recovery.<\/p>\n\n\n\n<p><strong>Dragon Admin Center (DAC)<\/strong>: Learn about the licensing of Dragon Copilot <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/dragon-copilot\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Dragon Copilot<\/strong>: An AI assistant for physicians and nurses. Learn about the licensing of Dragon Copilot <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/dragon-copilot\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>DSPM<\/strong>: Data Security Posture Management.<\/p>\n\n\n\n<p><strong>Dual access rights<\/strong>: Rights granted with a user Subscription License for an Online Services product that allows users to access licensed on-premises servers. Learn about dual access rights for <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/office-365-plans\/on-premises-use-rights\/\">Office 365<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-plans-for-enterprise-users\/on-premises-use-rights\/\">Microsoft 365<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/ems-plans\/on-premises-use-rights\/\">EMS<\/a>.<\/p>\n\n\n\n<p><strong>Dynamics 365<\/strong>: A collection of CRM and ERP applications. Learn about licensing the Dynamics 365 <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-crm-apps\/\">CRM apps<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-erp-apps\/\">ERP apps<\/a>.<\/p>\n\n\n\n<p><strong>Dynamics 365 Business Central<\/strong>: An online ERP solution aimed at smaller businesses helping them to automate and streamline their business processes. Learn about licensing Dynamics 365 Business Central <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-business-central\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Dynamics 365 Business Central on-premises<\/strong>: An on-premises ERP solution aimed at smaller businesses helping them to automate and streamline their business processes. Learn about licensing Dynamics 365 Business Central on-premises <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-business-central-on-premises\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Dynamics 365 Commerce<\/strong>: One of the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-erp-apps\/\">Dynamics 365 ERP apps<\/a> to license, for example, users who work in the headquarters of a retail operation. Learn about licensing Dynamics 365 Commerce <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-commerce\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Dynamics 365 Contact Center<\/strong>: Microsoft\u2019s Contact Center as a Service (CCaaS) solution that unifies voice, chat, and digital channels to enhance the customer service experience. Learn about the licensing of Dynamics 365 Contact Center <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-contact-center\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Dynamics 365 CRM apps<\/strong>: Sales, Customer Service and Field Service apps.<\/p>\n\n\n\n<p><strong>Dynamics 365 Customer Engagement Plan<\/strong>: The former way of buying licenses for the Dynamics 365 Sales, Field Service, Customer Service, and Project Service Automation apps. This was retired by Microsoft in October 2019. Learn about the licensing of the Dynamics 365 CRM apps <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-crm-apps\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Dynamics 365 Customer Insights<\/strong>: Microsoft\u2019s Customer Data Platform (CDP) and marketing automation solution. Learn about the licensing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-customer-insights\/licensing-dynamics-365-customer-insights\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Dynamics 365 Customer Service<\/strong>: One of the Dynamics 365 CRM apps to license, for example, a Customer Service Rep managing cases. Learn more about licensing Dynamics 365 Customer Service <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-crm-apps\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Dynamics 365 Customer Voice<\/strong>: Part of the Dynamics 365 CRM apps solutions enabling you to capture and analyze customer feedback. Learn about the licensing of Dynamics 365 Customer Voice <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-customer-voice\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Dynamics 365 Electronic Invoicing<\/strong>: Enables organizations to create, process, and exchange invoices digitally. Learn about the licensing of Dynamics 365 Electronic Invoicing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-electronic-invoicing\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Dynamics 365 ERP apps<\/strong>: Commerce, Finance, Supply Chain Management, Project Operations and Human Resources apps. Learn about the licensing of the ERP apps <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-erp-apps\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Dynamics 365 Field Service<\/strong>: One of the Dynamics 365 CRM apps to license, for example, a Field Technician managing site repairs and updating work orders. Learn more about licensing Dynamics 365 Field Service <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-crm-apps\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Dynamics 365 Finance<\/strong>: One of the Dynamics 365 ERP apps to help organizations efficiently manage their financial processes: financial reporting, budgeting, and tax management, for example. Learn about the licensing of Dynamics 365 Finance <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-finance\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Dynamics 365 Finance and Operations<\/strong>: The precursor to the Dynamics 365 Finance and Dynamics 365 Supply Chain Management apps. This was retired by Microsoft in October 2019. Learn more about the licensing of <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-finance\/\">Dynamics 365 Finance<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-supply-chain-management\/\">Dynamics 365 Supply Chain Management<\/a>.<\/p>\n\n\n\n<p><strong>Dynamics 365 Fraud Protection<\/strong>: Helps customers to block fraudulent activity with a set of three protection and prevention capabilities: Account Protection, Purchase Protection, and Loss Prevention. Learn about Dynamics 365 Fraud Protection licensing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-fraud-protection\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Dynamics 365 Guides<\/strong>: A mixed-reality application that provides users with on-the-job guidance via holographic instructions. HoloLens-wearing users see instruction cards showing what needs to be done, and where, helping them to carry out new or unfamiliar tasks. Learn about licensing Dynamics 365 Guides <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-guides\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Dynamics 365 Human Resources<\/strong>: One of the Dynamics 365 ERP apps to license, for example, an HR professional or a recruiter. Learn about the licensing of Dynamics 365 Human Resources <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-human-resources\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Dynamics 365 Intelligent Order Management<\/strong>: A standalone service designed to enhance the order fulfilment process for customers from when an order is placed to the point of delivery. Learn about the licensing of Dynamics 365 Intelligent Order Management <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-intelligent-order-management\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Dynamics 365 for Operations Server<\/strong>: An on-premises solution providing Enterprise Resource Planning (ERP) functionality, enabling organizations to manage processes and departments within and across the entire organization. Learn about licensing Dynamics 365 for Operations Server <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-for-operations-server\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Dynamics 365 Marketing<\/strong>: The previous name of Journeys app in Dynamics 365 Customer Insights. Learn about licensing Dynamics 365 Customer Insights <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-customer-insights\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Dynamics 365 Plan<\/strong>: A single license for all of the Dynamics 365 functionality, retired by Microsoft in October 2019, which combined the Customer Engagement Plan and the Unified Operations Plan. Learn more about licensing the Dynamics 365 <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-crm-apps\/\">CRM apps<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-erp-apps\/\">ERP apps<\/a>.<\/p>\n\n\n\n<p><strong>Dynamics 365 Project Operations<\/strong>: One of the Dynamics 365 ERP apps to license, for example, project managers, project assistants and project accountants responsible for accelerating project delivery in an organization. Learn about the licensing of Dynamics 365 Project Operations <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-project-operations\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Dynamics 365 Project Service Automation<\/strong>: The precursor to Dynamics 365 Project Operations.<\/p>\n\n\n\n<p><strong>Dynamics 365 Remote Assist<\/strong>: A mixed-reality application which enables users to get on-the-job help from experts. The user wears a HoloLens and contacts an expert for help via a Teams video call. The expert can see everything the user sees and can provide assistance by holographically drawing and annotating whatever the user is working on. Learn about the licensing of Dynamics 365 Remote Assist <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-remote-assist\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Dynamics 365 Retail<\/strong>: The precursor to Dynamics 365 Commerce.<\/p>\n\n\n\n<p><strong>Dynamics 365 Sales<\/strong>: One of the Dynamics 365 CRM apps to license, for example, a Territory Sales Manager managing sales pipelines and closing deals. Learn more about licensing Dynamics 365 Sales <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-crm-apps\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Dynamics 365 Sales Insights<\/strong>: Part of the Dynamics 365 Sales solution that helps sellers to build stronger relationships with their customers and to stay on top of their deals with real-time AI-based insights. Learn about the licensing of Dynamics 365 Sales Insights <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-crm-apps\/sales\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Dynamics 365 Sales Premium<\/strong>: A single license for Dynamics 365 Sales Enterprise and Sales Insights. Learn about the licensing of Dynamics 365 Sales Premium <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-crm-apps\/sales\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Dynamics 365 Server<\/strong>: An on-premises solution providing Customer Relationship Management (CRM) functionality, enabling organizations to get a holistic view about what\u2019s happening across their customers. Learn about Dynamics 365 Server licensing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-server\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Dynamics 365 Supply Chain Management<\/strong>: One of the Dynamics 365 ERP apps to license, for example, users in operations roles at manufacturers, distributors, and retailers. Learn more about licensing Dynamics 365 Supply Chain Management <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-supply-chain-management\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Dynamics 365 Talent<\/strong>: The precursor to Dynamics 365 Human Resources<\/p>\n\n\n\n<p><strong>Dynamics 365 Unified Operations Plan<\/strong>: The former way of buying licenses for the Finance and Operations, Retail, and Talent apps. This was retired by Microsoft in October 2019. Learn about the licensing of the ERP apps <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-erp-apps\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Dynamics AX 2012 R3 Server<\/strong>: The precursor to Dynamics 365 for Operations Server.<\/p>\n\n\n\n<p><strong>EA<\/strong>: Enterprise Agreement.<\/p>\n\n\n\n<p><strong>EAC<\/strong>: Exchange Admin Center.<\/p>\n\n\n\n<p><strong>EASM<\/strong>: External Attack Surface Management.<\/p>\n\n\n\n<p><strong>eCDN<\/strong>: Enterprise Content Delivery Network.<\/p>\n\n\n\n<p><strong>ECS<\/strong>: Enterprise Cloud Suite.<\/p>\n\n\n\n<p><strong>Edition<\/strong>: A way of differentiating between different sets of functionalities that are included in a product \u2013 Windows Server 2025 Standard does not include as many features as Windows Server 2025 Datacenter, for example. Learn about licensing editions <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/lessons\/licensing-on-premises-products\/versions-and-editions\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>EDP<\/strong>: Enterprise Data Protection.<\/p>\n\n\n\n<p><strong>EDR<\/strong>: Endpoint Detection and Response.<\/p>\n\n\n\n<p><strong>EIoT<\/strong>: Enterprise IoT.<\/p>\n\n\n\n<p><strong>EMS<\/strong>: Enterprise Mobility and Security or Enterprise Mobility Suite.<\/p>\n\n\n\n<p><strong>Endpoint Detection and Response (EDR)<\/strong>: Technology that continuously monitors and analyzes activities on endpoints (like computers, mobile devices, and servers) to detect and respond to potential threats. Learn about licensing Microsoft Defender for Endpoint <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-defender\/microsoft-defender-for-endpoint\/protecting-server-endpoints\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Enterprise Agreement (EA)<\/strong>: An agreement aimed at larger customers who have more than 500 devices or users. Learn about licensing with an EA <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/lessons\/introduction-to-microsoft-licensing\/enterprise-agreement-basics\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Enterprise CAL Suite<\/strong>: A way of buying 12 useful CALs together. Learn about the licensing of the Enterprise CAL Suite <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/the-cal-suites\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Enterprise Cloud Suite<\/strong>: The original name of Microsoft 365 Enterprise, before it was called Secure Productive Enterprise.<\/p>\n\n\n\n<p><strong>Enterprise Data Protection (EDP)<\/strong>: The name given to the protection of the use of Microsoft 365 Copilot Chat by users logged in with an Entra ID.<\/p>\n\n\n\n<p><strong>Enterprise Desktop<\/strong>: In an Enterprise\/Enterprise Subscription enrollment, this is the name for the enterprise-wide commitment a customer has made to Windows, Office and the Enterprise CAL Suite. Learn about licensing the Enterprise Desktop <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-on-premises-products-ea\/enterprise-enrollment\/enterprise-wide-commitment\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Enterprise Enrollment<\/strong>: One of three enrollments signed under an Enterprise Agreement, where customers make an enterprise-wide commitment to the desktop products. Learn about buying <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-on-premises-products-ea\/\">on-premises products<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-online-services-ea\/\">Online Services<\/a>, and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-azure-services-ea\/\">Azure<\/a> through an Enterprise Enrollment.<\/p>\n\n\n\n<p><strong>Enterprise IoT (EIoT) devices<\/strong>: Devices such as printers, smart TVs and conferencing systems which you\u2019d find along with regular laptops and mobile devices on an enterprise network. Learn about the licensing of Microsoft Defender for EIoT devices <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-defender\/microsoft-defender-for-iot\/enterprise-iot-devices\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Enterprise Mobility and Security (EMS)<\/strong>: A suite of technologies that manages and secures access to corporate servers and data by users using a variety of mobile devices. Learn about licensing EMS <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/ems-plans\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Enterprise Mobility Suite (EMS)<\/strong>: The previous name of Enterprise Mobility and Security.<\/p>\n\n\n\n<p><strong>Enterprise Resource Planning<\/strong>: Technology that enables an organization to manage processes and departments within and across the entire organization. The Dynamics 365 ERP apps give users working in different functional areas of the business software specific to their roles.<\/p>\n\n\n\n<p><strong>Enterprise Subscription Enrollment<\/strong>: One of three enrollments signed under an Enterprise Agreement, where customers make an enterprise-wide commitment to the desktop products with subscription licenses. Learn about buying <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-on-premises-products-ea\/enterprise-subscription-enrollment\/\">on-premises products<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-online-services-ea\/\">Online Services<\/a>, and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-azure-services-ea\/\">Azure<\/a> through an Enterprise Subscription Enrollment.<\/p>\n\n\n\n<p><strong>Enterprise-wide commitment<\/strong>: A requirement in some licensing agreements that requires a customer to license a product for every device or user in their organization. Learn about enterprise-wide commitments in the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-on-premises-products-ea\/enterprise-enrollment\/enterprise-wide-commitment\/\">Enterprise Enrollment<\/a>, and the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-on-premises-products-open-programs\/open-value-organization-wide\/organization-wide-commitment\/\">Open Value Organization-Wide<\/a> agreement.<\/p>\n\n\n\n<p><strong>Entra<\/strong>: See Microsoft Entra.<\/p>\n\n\n\n<p><strong>Entra ID<\/strong>: See Microsoft Entra ID.<\/p>\n\n\n\n<p><strong>EOA<\/strong>: Exchange Online Archiving.<\/p>\n\n\n\n<p><strong>EOP<\/strong>: Exchange Online Protection.<\/p>\n\n\n\n<p><strong>ERP<\/strong>: Enterprise Resource Planning.<\/p>\n\n\n\n<p><strong>ESD<\/strong>: Electronic Software Download.<\/p>\n\n\n\n<p><strong>ESG<\/strong>: Environmental, Social, and Governance. Three key areas to indicate how sustainable and ethically responsible an organization is. See Microsoft Sustainability Manager.<\/p>\n\n\n\n<p><strong>EST<\/strong>: Extended Service Term.<\/p>\n\n\n\n<p><strong>ESU<\/strong>: Extended Security Updates.<\/p>\n\n\n\n<p><strong>Exchange Online<\/strong>: Microsoft\u2019s hosted email solution. Learn about licensing Exchange Online <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/office-365-plans\/exchange-online\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Exchange Online Archiving (EOA) for Exchange Online<\/strong>: A cloud-based archive for users with mailboxes in Exchange Online. Learn about licensing Exchange Online Archiving for Exchange Online <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/office-365-plans\/exchange-online\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Exchange Online Archiving (EOA) for Exchange Server<\/strong>: A cloud-based archive for users with primary mailboxes in Exchange Server 2016\/2019. Learn about licensing Exchange Online Archiving for Exchange Server <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/office-365-plans\/archiving\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Exchange Online Protection (EOP)<\/strong>: A cloud-based filtering services that protects an organization against spam, malware, phishing, and other email threats. Learn about licensing Exchange Online Protection <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/exchange-server-2019\/licensing-exchange-server-2019\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Exchange Online Voice Mail Service<\/strong>: A Software Assurance benefit for Exchange Server. Learn about the Exchange Online Voice Mail Service benefit <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/exchange-server-2019\/exchange-online-voice-mail-service\/?attr=exchange-online-voice-mail-service-1110\">here<\/a>.<\/p>\n\n\n\n<p><strong>Exchange Server<\/strong>: The Microsoft email server. Learn about licensing Exchange Server <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/exchange-server-2019\/licensing-exchange-server-2019\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>EXO<\/strong>: Exchange Online.<\/p>\n\n\n\n<p><strong>EXP<\/strong>: Employee Experience Platform.<\/p>\n\n\n\n<p><strong>Extended Detection and Response (XDR)<\/strong>: A unified platform to detect, investigate, and respond to threats across endpoints, identities, email, cloud applications, and cloud infrastructure. Learn about licensing Microsoft Defender XDR <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-defender\/microsoft-defender-xdr\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Extended Security Updates<\/strong>: Licenses that provide support for up to three years after the end-of-support date. Learn about Extended Security Updates for <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-server-2025\/extended-security-updates\/\">Windows Server<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/sql-server-2022\/extended-security-updates\/\">SQL Server<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-azure-dedicated-host-solutions\/extended-security-updates\/\">Azure Dedicated Host<\/a>, and with the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/flexible-virtualization-benefit\/licensing-rules\/windows-server\/\">Flexible Virtualization Benefit<\/a>.<\/p>\n\n\n\n<p><strong>Extended Service Term (EST)<\/strong>: An option that allows an expired subscription to keep running with continued service, billed at an uplifted rate.<\/p>\n\n\n\n<p><strong>External Connector License<\/strong>: A single license that allows an unlimited number of external users to access a server. Learn about <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-server-2025\/licensing-external-users\/\">Windows Server<\/a> External Connector licenses.<\/p>\n\n\n\n<p><strong>External user<\/strong>: An external user is someone who isn\u2019t an employee of the organization buying the licenses but does need to access an internal solution. Learn about external users for <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-server-2025\/licensing-external-users\/\">Windows Server<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/sql-server-2022\/licensing-external-users\/\">SQL Server<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/exchange-server-2019\/licensing-external-users\/\">Exchange Server<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/sharepoint-server-subscription-edition-se\/licensing-external-users\/\">SharePoint Server<\/a>, the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-crm-apps\/licensing-external-users\/\">Dynamics 365 CRM apps<\/a>, and the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-erp-apps\/licensing-external-users\/\">Dynamics 365 ERP apps<\/a>.<\/p>\n\n\n\n<p><strong>EWS<\/strong>: Exchange Web Services.<\/p>\n\n\n\n<p><strong>Fabric<\/strong>: A platform that allows users to get, create, share, and visualize data using various tools. Power BI is now a component of Microsoft Fabric. Learn about licensing Power BI <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/power-bi\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Fabric (free)<\/strong>: The most basic user license for Power BI. Learn about Power BI user licenses <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/power-bi\/power-bi-user-licenses\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Fabric SKU Estimator<\/strong>: A tool that helps customers to identify the appropriate Fabric Capacity Unit SKU for their needs, based on their data requirements, usage patterns, and workload combinations.<\/p>\n\n\n\n<p><strong>FEP<\/strong>: ForeFront Endpoint Protection.<\/p>\n\n\n\n<p><strong>Field Service Contractor<\/strong>: A license which is part of the Dynamics 365 Field Service solution which is assigned to a technician for them to be able to (for example) view and update work orders on the go. Learn about the licensing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-crm-apps\/available-licenses\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Field Service Mobile app<\/strong>: An app which is part of the Dynamics 365 Field Service solution enabling a technician to (for example) view and update work orders on the go. Learn about the licensing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-crm-apps\/included-rights-and-entitlements-for-other-dynamics-apps\/field-service\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Finance Agents<\/strong>: Microsoft is currently mid-way through changing the name of Microsoft 365 Copilot for Finance to Finance Agents.<\/p>\n\n\n\n<p><strong>Firstline Workers<\/strong>: The previous name of Frontline Workers.<\/p>\n\n\n\n<p><strong>Flexible Virtualization Benefit<\/strong>: A benefit that allows customers to take eligible licenses to the shared hardware of Authorized Outsourcers. Learn about licensing with the Flexible Virtualization Benefit <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/flexible-virtualization-benefit\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>FOCUS<\/strong>: FinOps Open Cost and Usage Specification.<\/p>\n\n\n\n<p><strong>ForeFront Endpoint Protection (FEP)<\/strong>: The precursor to System Center Endpoint Protection.<\/p>\n\n\n\n<p><strong>Forms Pro<\/strong>: See Microsoft Forms Pro.<\/p>\n\n\n\n<p><strong>FPP<\/strong>: Full Packaged Product.<\/p>\n\n\n\n<p><strong>From SA licenses<\/strong>: Special-priced licenses that customers with active Software Assurance have been able to purchase as they move to the cloud. Find <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-online-services\/types-of-online-services-user-sls\/#:~:text=From%20SA%20User%20SLs\">general information<\/a> about From SA licenses, and specific information for <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/office-365-plans\/from-sa-licenses\/\">Office 365<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-plans-for-enterprise-users\/from-sa-licenses\/\">Microsoft 365<\/a>, and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/ems-plans\/from-sa-licenses\/\">EMS<\/a>.<\/p>\n\n\n\n<p><strong>Frontier program<\/strong>: An early access program that lets companies with Microsoft 365 Copilot licenses try new Copilot features and Agents, while they\u2019re still being developed.<\/p>\n\n\n\n<p><strong>Frontline Workers<\/strong>: Someone who does need technology in their role but doesn\u2019t spend all day sitting in front of a PC creating PowerPoint presentations or Excel spreadsheets. Examples include doctors, people working in hospitality and retail, or in manufacturing. Learn about licensing Frontline Workers <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/plans-for-frontline-workers\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Full Packaged Product (FPP)<\/strong>: A license included within a boxed product, purchased from retailers.<\/p>\n\n\n\n<p><strong>FVB<\/strong>: Flexible Virtualization Benefit.<\/p>\n\n\n\n<p><strong>GA<\/strong>: General Availability\/Generally Available.<\/p>\n\n\n\n<p><strong>GCC<\/strong>: Government Community Cloud.<\/p>\n\n\n\n<p><strong>GCCH<\/strong>: Government Community Cloud High.<\/p>\n\n\n\n<p><strong>GCP<\/strong>: Google Cloud Platform. Google is classed as a Listed Provider by Microsoft, and you can learn about licensing for Listed Providers <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/license-deployment-options\/overview-of-options\/listed-providers\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>GDAP<\/strong>: Granular Delegated Administrator Privileges.<\/p>\n\n\n\n<p><strong>General Availability Channel<\/strong>: Annual feature releases for Windows 11. Learn more <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-11-device\/servicing-channels\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Generative AI<\/strong>: Artificial intelligence that creates new and original content in response to user prompts. Copilot uses generative AI. Learn about licensing Copilot <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Get Licensing Ready<\/strong>: A great Microsoft resource with lots of modules to help you learn the basics of Microsoft licensing, which was retired by Microsoft in December 2024. Our Licensing Scholar program is a splendid alternative which offers free exams and training. You can find the exams <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-exams\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>GHAS<\/strong>: GitHub Advanced Security.<\/p>\n\n\n\n<p><strong>GHE<\/strong>: GitHub Enterprise.<\/p>\n\n\n\n<p><strong>GHEC<\/strong>: GitHub Enterprise Cloud.<\/p>\n\n\n\n<p><strong>GHES<\/strong>: GitHub Enterprise Server.<\/p>\n\n\n\n<p><strong>GitHub<\/strong>: A platform for developers to collaborate on projects, manage code, and track changes. Learn about GitHub licensing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-the-developer-tools-2\/github\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>GitHub Advanced Security (GHAS)<\/strong>: A suite of security features designed to help developers identify and fix vulnerabilities in their code. Learn about licensing GitHub Advanced Security <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-the-developer-tools-2\/github\/github-advanced-security-ghas\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>GitHub Copilot<\/strong>: A tool that assists developers in writing code by offering suggestions \u2013 either via autocomplete as coding is taking place, or by responding with code to a natural language request. Learn about licensing GitHub Copilot <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-the-developer-tools-2\/github\/github-copilot\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>GitHub Enterprise (GHE)<\/strong>: A license for GitHub that provides additional security, compliance and deployment options compared to the free version. Learn about licensing GitHub Enterprise <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-the-developer-tools-2\/github\/github-enterprise-ghe\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>GitHub Enterprise Cloud (GHEC)<\/strong>: The cloud-based version of GitHub Enterprise, hosted on GitHub\u2019s servers. Learn about licensing GitHub Enterprise Cloud <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-the-developer-tools-2\/github\/github-enterprise-ghe\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>GitHub Enterprise Server (GHES)<\/strong>: The self-hosted version of GitHub Enterprise, installed on-premises or in a private cloud. Learn about licensing GitHub Enterprise Server <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-the-developer-tools-2\/github\/github-enterprise-ghe\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Global Secure Access<\/strong>: Microsoft\u2019s term to refer to both Microsoft Entra Internet Access and Microsoft Entra Private Access.<\/p>\n\n\n\n<p><strong>GLR<\/strong>: Get Licensing Ready.<\/p>\n\n\n\n<p><strong>Graduated pricing<\/strong>: For some Azure services, such as storage, there is graduated pricing available, which means that the more of a service you use each month, the cheaper the unit price becomes. Learn about licensing the Azure consumption services <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-consumption-services\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Granular Delegated Administrator Privileges (GDAP)<\/strong>: A security feature in Microsoft Partner Center that grants partners least-privileged, time-bound access to customer workloads. Customers must explicitly approve this granular access, which helps address security concerns and meet regulatory needs for reduced partner permissions.<\/p>\n\n\n\n<p><strong>HA<\/strong>: High Availability.<\/p>\n\n\n\n<p><strong>HAM<\/strong>: Hardware Asset Management.<\/p>\n\n\n\n<p><strong>Home Use Program (HUP)<\/strong>: The previous name of Workplace Discount Program.<\/p>\n\n\n\n<p><strong>Hosting partner<\/strong>: A name for a third-party organization that customers use to handle their IT infrastructure, including hardware, IT services, and software. Learn about the different deployment options that customers have <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/license-deployment-options\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Hotpatching<\/strong>: A way of installing updates that doesn\u2019t require a reboot after installation. Learn about licensing hotpatching for <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-server-2025\/hotpatching\/\">Windows Server<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-11-user\/hotpatching\/\">Windows 11<\/a>.<\/p>\n\n\n\n<p><strong>HUP<\/strong>: Home Use Program.<\/p>\n\n\n\n<p><strong>HT<\/strong>: Hyper-Threading.<\/p>\n\n\n\n<p><strong>Hybrid Use Benefit<\/strong>: See Azure Hybrid Benefit.<\/p>\n\n\n\n<p><strong>IaaS<\/strong>: Infrastructure as a Service.<\/p>\n\n\n\n<p><strong>IAM<\/strong>: Identity and Access Management.<\/p>\n\n\n\n<p><strong>IDaaS<\/strong>: Identity as a Service.<\/p>\n\n\n\n<p><strong>IDE<\/strong>: Integrated Development Environment.<\/p>\n\n\n\n<p><strong>Identity as a Service (IDaaS)<\/strong>: Microsoft Entra ID is Microsoft\u2019s IDaaS solution. Learn about licensing Microsoft Entra ID <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-entra\/microsoft-entra-id\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Independent Software Vendor (ISV)<\/strong>: In the Microsoft context, an organization that builds applications that integrate with Microsoft products such as Microsoft 365 or Dynamics 365.<\/p>\n\n\n\n<p><strong>Information Rights Management (IRM)<\/strong>: Technology which allows a user to attach access permissions to a particular document which can prevent it from being opened, forwarded or printed by unauthorized people, for example. Learn about licensing Active Directory Rights Management Services <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-server-2025-services\/active-directory-rights-management-services-ad-rms\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Instance size flexibility<\/strong>: A feature available for Azure virtual machines where a Reserved Instance can automatically be applied to a different virtual machine of the same family if a customer\u2019s needs change. Learn about instance size flexibility <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-reservations\/virtual-machines-reserved-instances\/instance-size-flexibility\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Integrated Development Environment (IDE)<\/strong>: The application that a developer uses to create, debug, test, and deploy apps. Visual Studio is Microsoft\u2019s IDE. Learn about licensing Visual Studio via <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-the-developer-tools-2\/visual-studio-2022-standard-subscriptions\/\">Standard<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-the-developer-tools-2\/visual-studio-2022-cloud-subscriptions\/\">Cloud<\/a> subscriptions.<\/p>\n\n\n\n<p><strong>Interactive Voice Response (IVR)<\/strong>: Technology that allows telephone users to interact with a computer-operated phone system using voice commands or keypad inputs. Learn about the licensing of Dynamics 365 Contact Center <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-contact-center\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Intune<\/strong>: Microsoft\u2019s cloud-based endpoint management solution incorporating mobile device management (MDM) and mobile application management (MAM). Learn about the licensing of Intune <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-intune\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Intune Advanced Analytics<\/strong>: An Intune add-on license or included as part of the Intune Suite that provides insights into device health and performance, a timeline of changes to devices with the ability to query device state and configuration and resolve device-based issues. Learn about licensing Intune Advanced Analytics <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-intune\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Intune Cloud PKI<\/strong>: A cloud-based service that manages certificates for Intune-managed devices, handling issuance, renewal, and revocation, all without the need for on-premises servers or hardware. Purchased as an Intune add-on license or included as part of the Intune Suite. Learn about licensing Intune Cloud PKI <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-intune\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Intune Endpoint Privilege Management<\/strong>: An Intune add-on license or included as part of the Intune Suite that enables users to run as standard users (without admin rights) while performing tasks that require elevated privileges as needed, such as app installations and driver updates . Learn about licensing Intune Endpoint Privilege Management <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-intune\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Intune Enterprise App Management<\/strong>: An Intune add-on license or included as part of the Intune Suite that simplifies app management, enabling users to install and update apps from an Enterprise App Catalog, which can contain Microsoft and non-Microsoft applications. Learn about licensing Intune Enterprise App Management <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-intune\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Intune Remote Help<\/strong>: A cloud-based service that enables an organization\u2019s support staff to remotely connect to a user\u2019s device. Purchased as a Microsoft Intune add-on or included as part of the Intune Suite. Learn about licensing Intune Remote Help <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-intune\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Intune Suite<\/strong>: A collection of advanced endpoint management products. Learn about licensing the Intune Suite <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-intune\/licensing-intune\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>IoT<\/strong>: Internet of Things.<\/p>\n\n\n\n<p><strong>IRM<\/strong>: Information Rights Management.<\/p>\n\n\n\n<p><strong>ISV<\/strong>: Independent Software Vendor.<\/p>\n\n\n\n<p><strong>ITAM<\/strong>: IT Asset Management.<\/p>\n\n\n\n<p><strong>ITDM<\/strong>: IT Decision Maker.<\/p>\n\n\n\n<p><strong>IVR<\/strong>: Interactive Voice Response.<\/p>\n\n\n\n<p><strong>LAR<\/strong>: Large Account Reseller.<\/p>\n\n\n\n<p><strong>Large Account Reseller (LAR)<\/strong>: The previous name of a Licensing Solutions Partner (LSP).<\/p>\n\n\n\n<p><strong>Large Language Model (LLM)<\/strong>: A type of artificial intelligence that can understand and generate human language. LLMs are used in various applications such as Copilot. Learn about the licensing of Copilot <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>LATAM<\/strong>: Latin America.<\/p>\n\n\n\n<p><strong>Latin America (LATAM)<\/strong>: Spanish- and Portuguese-speaking countries in Central and South America, plus the Caribbean.<\/p>\n\n\n\n<p><strong>Lead Status SKU<\/strong>: A SKU not on the public Enterprise Agreement price list but which can be transacted by talking to a Microsoft person.<\/p>\n\n\n\n<p><strong>License Mobility across Server Farms<\/strong>: A Software Assurance benefit that relaxes the 90-day license reassignment rule so that virtual machines may move freely around a server farm and the server licenses may be reassigned as required. Learn about License Mobility across Server Farms with <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/sql-server-2022\/licensing-a-server-farm\/server-licenses\/\">SQL Server<\/a>.<\/p>\n\n\n\n<p><strong>License Mobility through SA<\/strong>: A Software Assurance benefit that allows customers to use their eligible server application licenses on Authorized Mobility partner\u2019s hardware. Learn about the License Mobility through SA benefit <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/license-mobility-through-sa\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Licensed user<\/strong>: A term <a href=\"https:\/\/www.microsoft.com\/licensing\/terms\/product\/Glossary\/all#:~:text=licensed%20user\">Microsoft<\/a> use to refer to the single person to whom a User Subscription License has been assigned.<\/p>\n\n\n\n<p><strong>Licensing Guides<\/strong>: Microsoft produce a whole host of splendid Licensing Guides. Find them <a href=\"https:\/\/www.licensingschool.co.uk\/licensing-guides\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Licensing Solutions Partner (LSP)<\/strong>: A partner authorized by Microsoft to sell Enterprise Agreements.<\/p>\n\n\n\n<p><strong>Like local<\/strong>: A term used by Microsoft to refer to an experience in which the user feels like they\u2019re working on a local machine, even though they are using a desktop in the cloud. Learn about licensing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-365\/\">Windows 365<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-virtual-desktop\/\">Azure Virtual Desktop<\/a>.<\/p>\n\n\n\n<p><strong>LinkedIn Sales Navigator Enterprise<\/strong>: Part of the Microsoft Relationship Sales solution.<\/p>\n\n\n\n<p><strong>Listed Provider<\/strong>: Alibaba, Amazon, Google and Microsoft. Learn about licensing with Listed Providers <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/license-deployment-options\/overview-of-options\/listed-providers\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>LLM<\/strong>: Large Language Model<\/p>\n\n\n\n<p><strong>Long-Term Servicing Branch<\/strong>: The previous name of Long-Term Servicing Channel.<\/p>\n\n\n\n<p><strong>Long-Term Servicing Channel<\/strong>: A servicing channel which provides new releases of software every two to three years. Learn about the Long-Term Servicing Channel for <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-server-2025\/servicing-channels\/\">Windows Server<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/system-center-2022-servers\/system-center-branches\/\">System Center<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-11-device\/servicing-channels\/\">Windows 11<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/office-ltsc-2024\/\">Office<\/a>, and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/visio-2024\/\">Visio<\/a>.<\/p>\n\n\n\n<p><strong>LRU<\/strong>: Least Recently Used.<\/p>\n\n\n\n<p><strong>LSP<\/strong>: Licensing Solutions Partner.<\/p>\n\n\n\n<p><strong>LTSB<\/strong>: Long-Term Servicing Branch.<\/p>\n\n\n\n<p><strong>LTSC<\/strong>: Long-Term Servicing Channel.<\/p>\n\n\n\n<p><strong>Lync Online<\/strong>: The previous name of Skype for Business Online.<\/p>\n\n\n\n<p><strong>Lync Server<\/strong>: The previous name of Skype for Business Server.<\/p>\n\n\n\n<p><strong>M365<\/strong>: Microsoft 365.<\/p>\n\n\n\n<p><strong>MAC<\/strong>: Microsoft 365 Admin Center.<\/p>\n\n\n\n<p><strong>MACC<\/strong>: Microsoft Azure Consumption Commitment.<\/p>\n\n\n\n<p><strong>Machine Learning Server<\/strong>: Tools for analyzing data at scale, retired by Microsoft on July 1, 2022.<\/p>\n\n\n\n<p><strong>MAK<\/strong>: Multiple Activation Key.<\/p>\n\n\n\n<p><strong>MAM<\/strong>: Mobile Application Management.<\/p>\n\n\n\n<p><strong>Managed Meeting Rooms<\/strong>: The precursor to the Microsoft Teams Rooms Premium license.<\/p>\n\n\n\n<p><strong>Management Group<\/strong>: See Azure Management Group.<\/p>\n\n\n\n<p><strong>Marketing<\/strong>: See Dynamics 365 Marketing.<\/p>\n\n\n\n<p><strong>Marketplace<\/strong>: See Azure Marketplace.<\/p>\n\n\n\n<p><strong>MAU<\/strong>: Monthly Active Users.<\/p>\n\n\n\n<p><strong>MBC<\/strong>: Microsoft Business Center.<\/p>\n\n\n\n<p><strong>MCA<\/strong>: Microsoft Customer Agreement.<\/p>\n\n\n\n<p><strong>MCA-E<\/strong>: See Microsoft Customer Agreement for enterprise.<\/p>\n\n\n\n<p><strong>MCAS<\/strong>: Microsoft Cloud App Security.<\/p>\n\n\n\n<p><strong>MCC<\/strong>: Microsoft Connected Cache.<\/p>\n\n\n\n<p><strong>MCS<\/strong>: Microsoft Copilot Studio.<\/p>\n\n\n\n<p><strong>MDATP<\/strong>: Microsoft Defender Advanced Threat Protection.<\/p>\n\n\n\n<p><strong>MDB<\/strong>: Microsoft Defender for Business.<\/p>\n\n\n\n<p><strong>MDC<\/strong>: Microsoft Defender for Cloud.<\/p>\n\n\n\n<p><strong>MDCCU<\/strong>: Microsoft Defender for Cloud Commit Units.<\/p>\n\n\n\n<p><strong>MDE<\/strong>: Microsoft Defender for Endpoint.<\/p>\n\n\n\n<p><strong>MDM<\/strong>: Mobile Device Management.<\/p>\n\n\n\n<p><strong>MDOP<\/strong>: Microsoft Desktop Optimization Pack.<\/p>\n\n\n\n<p><strong>MDTI<\/strong>: Microsoft Defender Threat Intelligence.<\/p>\n\n\n\n<p><strong>Meeting Room<\/strong>: The previous name of Microsoft Teams Rooms Standard.<\/p>\n\n\n\n<p><strong>ME-ID<\/strong>: Microsoft Entra ID.<\/p>\n\n\n\n<p><strong>MEM<\/strong>: Microsoft Endpoint Manager.<\/p>\n\n\n\n<p><strong>MEPM<\/strong>: Microsoft Entra Permissions Management.<\/p>\n\n\n\n<p><strong>Microsoft 365<\/strong>: A collection of productivity tools such as the Microsoft 365 Apps and SharePoint Online and Exchange Online.<\/p>\n\n\n\n<p><strong>Microsoft 365 Admin Center<\/strong>: A portal <a href=\"https:\/\/admin.microsoft.com\/\">(https:\/\/admin.microsoft.com\/<\/a>) used to carry out a variety of administrative tasks such as setting up users, and then purchasing and assigning licenses to them, as well as managing billing activities, and carrying out tasks historically performed in the now retired VLSC portal.<\/p>\n\n\n\n<p><strong>Microsoft 365 Advanced Audit<\/strong>: The previous name of Microsoft Purview Audit (Premium).<\/p>\n\n\n\n<p><strong>Microsoft 365 Apps<\/strong>: The Word, Excel, PowerPoint, OneNote, Outlook, Access and Publisher apps, available as Microsoft 365 Apps for Business and Microsoft 365 Apps for Enterprise plans. Find out more about licensing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-apps\/\">Microsoft 365 Apps for Business<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-apps\/\">Microsoft 365 Apps for Enterprise<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft 365 Backup<\/strong>: Technology that enables you to backup SharePoint sites, OneDrive accounts, and Exchange mailboxes.<\/p>\n\n\n\n<p><strong>Microsoft 365 Copilot<\/strong>: An Add-on license giving eligible users the rights to Microsoft 365 Copilot in a wide range of Microsoft apps. The license also includes rights to customize Microsoft 365 Copilot via Copilot Agents. Learn about the licensing of Microsoft 365 Copilot <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/copilot-for-microsoft-365\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft 365 Copilot Business<\/strong>: A lower-priced SMB variant of Microsoft 365 Copilot, for up to 300 users. Learn about the licensing of Microsoft 365 Copilot Business <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/microsoft-365-copilot-business\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft 365 Copilot for Finance<\/strong>: An AI assistant for finance professionals that connects to Dynamics 365 Finance and offers AI- based productivity gains in Outlook and Excel. Learn about the licensing of Microsoft 365 Copilot for Finance <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/copilot-for-finance\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft 365 Copilot for Sales<\/strong>: An Add-on license providing an AI assistant for salespeople that connects to a sales solution in order to bring AI-generated insights into productivity applications such as Outlook, Teams, and Word. Learn about the licensing of Microsoft 365 Copilot for Sales <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/copilot-for-sales\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft 365 Copilot for Service<\/strong>: An Add-on license providing an AI assistant that integrates with Dynamics 365 Customer Service or Salesforce and uses AI to help customer service agents work more efficiently by bringing AI-generated insights into productivity applications such as Outlook and Teams. Learn about the licensing of Microsoft 365 Copilot for Service <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/copilot-for-service\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft 365 Defender<\/strong>: A term Microsoft use to refer to various security products designed to protect different aspects of the Microsoft 365 environment: Microsoft Defender for Endpoint, Microsoft Defender for Office 365, Microsoft Defender for Identity, and Microsoft Defender for Cloud Apps. Learn about licensing Microsoft 365 Defender <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-defender\/microsoft-365-defender\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Defender Suite<\/strong>: An Add-on license providing a comprehensive suite of advanced security solutions designed to protect organizations from sophisticated threats. This was previously known as Microsoft 365 E5 Security. Learn about licensing the Microsoft Defender Suite <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-plans-for-enterprise-users\/licensing-for-security-and-compliance\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft 365 E3 \u2013 Unattended license<\/strong>: A special license allowing a bot to run repetitive tasks in a Windows client or Office app without user intervention. Learn about Microsoft 365 E3 \u2013 Unattended licensing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-plans-for-enterprise-users\/other-interesting-licenses\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft 365 E5 Compliance<\/strong>: The previous name of Microsoft Purview Suite.<\/p>\n\n\n\n<p><strong>Microsoft 365 E5 Security<\/strong>: The previous name of Microsoft Defender Suite.<\/p>\n\n\n\n<p><strong>Microsoft 365 Enterprise<\/strong>: A single license for a collection of products: Windows 11 Enterprise, Office 365 and EMS. Find out more about licensing Microsoft 365 Enterprise <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-plans-for-enterprise-users\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft 365 F5 Compliance<\/strong>: The previous name of Microsoft Purview Suite FLW.<\/p>\n\n\n\n<p><strong>Microsoft 365 F5 Security<\/strong>: The previous name of Microsoft Defender Suite FLW.<\/p>\n\n\n\n<p><strong>Microsoft 365 F5 Security and Compliance<\/strong>: The previous name of Microsoft Defender and Purview Suite FLW.<\/p>\n\n\n\n<p><strong>Microsoft 365 Family<\/strong>: A consumer license for up to 6 users. Learn about licensing Microsoft 365 for consumers <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-for-consumers\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft 365 Premium<\/strong>: A consumer license combining Microsoft 365 Family with Copilot Pro. Learn about licensing Microsoft 365 for consumers <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-for-consumers\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Azure Consumption Commitment (MACC)<\/strong>: A contractual commitment that a customer makes directly with Microsoft to spend a certain amount on Azure services over a particular term. Learn about the MACC in the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-azure-services-ea\/microsoft-azure-consumption-commitment-macc\/\">EA<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-azure-services-mca-e\/microsoft-azure-consumption-commitment-macc\/?attr=microsoft-azure-consumption-commitment-macc-2130\">MCA-E<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Business Center (MBC)<\/strong>: The portal used by MPSA customers to manage their licenses, download software, access Volume License Keys, and to manage Software Assurance benefits.<\/p>\n\n\n\n<p><strong>Microsoft Cloud Agreement<\/strong>: The CSP precursor to the Microsoft Customer Agreement.<\/p>\n\n\n\n<p><strong>Microsoft Cloud App Security (MCAS)<\/strong>: The previous name of Microsoft Defender for Cloud Apps.<\/p>\n\n\n\n<p><strong>Microsoft Configuration Manager<\/strong>: See Microsoft Endpoint Configuration Manager.<\/p>\n\n\n\n<p><strong>Microsoft Copilot Pro<\/strong>: A license giving eligible users the rights to Microsoft 365 Copilot in Word, Excel, PowerPoint, Outlook, and OneNote. Learn about licensing Microsoft Copilot Pro <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/copilot-pro\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Cost Management<\/strong>: A set of tools in the Azure Management Portal to help customers to gain visibility into their costs and optimize their spend on Azure services and Online Services. Learn more <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-consumption-services\/the-azure-management-portal\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Customer Agreement (MCA)<\/strong>: A single licensing agreement governing a customer\u2019s purchases. Learn more about the Microsoft Customer Agreement <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/lessons\/introduction-to-microsoft-licensing\/microsoft-customer-agreement\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Customer Agreement for enterprise (MCA-E)<\/strong>: A larger, more strategic customer signs the Microsoft Customer Agreement and buys direct from Microsoft. Learn about the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/lessons\/introduction-to-microsoft-licensing\/microsoft-customer-agreement\/\">basics<\/a> and how to buy <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-azure-services-mca-e\/\">Azure services<\/a> through the MCA-E.<\/p>\n\n\n\n<p><strong>Microsoft Defender<\/strong>: The family name for Microsoft\u2019s security solutions designed to protect devices, identities, and data from various threats. Learn about licensing the Microsoft Defender products <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-defender\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Defender Advanced Threat Protection (MDATP)<\/strong>: The previous name of Microsoft Defender for Endpoint.<\/p>\n\n\n\n<p><strong>Microsoft Defender ATP<\/strong>: Microsoft Defender Advanced Threat Protection.<\/p>\n\n\n\n<p><strong>Microsoft Defender for Business<\/strong>: An endpoint protection solution designed to help small and medium-sized businesses protect their Windows 10\/11 or MacOS client devices and Windows or Linux server devices from ransomware, malware, phishing, and other threats. Learn about licensing Microsoft Defender for Business for <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-defender\/microsoft-defender-for-business\/protecting-client-endpoints\/\">clients<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-defender\/microsoft-defender-for-business\/protecting-server-endpoints\/\">servers<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Defender for Business Servers<\/strong>: A license for Windows and Linux servers onboarded to Microsoft Defender for Business to protect them from ransomware, malware, phishing and other threats. Learn about licensing Microsoft Defender for Business Servers <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-defender\/microsoft-defender-for-business\/protecting-server-endpoints\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Defender for Cloud (MDC)<\/strong>: A solution to protect cloud-based applications from various cyber threats and vulnerabilities which works across Azure, AWS, GCP, and on-premises environments. Learn about the licensing for Microsoft Defender for Cloud <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-defender\/microsoft-defender-for-cloud\/cloud-workload-protection-platform-cwpp\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Defender for Cloud Apps<\/strong>: A security solution to discover and manage which cloud apps users are using. Learn about licensing Microsoft Defender for Cloud Apps <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-defender\/microsoft-defender-for-cloud-apps\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Defender for Cloud Commit Units (MDCCU)<\/strong>: The unit of purchase for a Microsoft Defender for Cloud Pre-Purchase Plan.<\/p>\n\n\n\n<p><strong>Microsoft Defender for Cloud Pre-Purchase Plan<\/strong>: A type of Azure Reservation which enables you to purchase Microsoft Defender for Cloud Commit Units to save money on your Defender for Cloud spend. Learn how the Microsoft Defender for Cloud Pre-Purchase Plan works <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-defender\/microsoft-defender-for-cloud\/defender-for-cloud-pre-purchase-plan\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Defender for Endpoint<\/strong>: An endpoint protection solution designed to help organizations prevent, detect, investigate, and respond to threats targeting Windows 10\/11 or MacOS client devices and Windows or Linux server devices. Learn about licensing Microsoft Defender for Endpoint <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-defender\/microsoft-defender-for-endpoint\/protecting-server-endpoints\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Defender for Endpoint for Servers<\/strong>: An endpoint protection solution designed to help organizations prevent, detect, investigate, and respond to threats targeting Windows or Linux servers. Learn about licensing Microsoft Defender for Endpoint for Servers <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-defender\/microsoft-defender-for-endpoint\/protecting-server-endpoints\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Defender for Identity<\/strong>: A product that helps security professionals manage identity risk and spot identity-based cyberattacks. Learn about licensing Microsoft Defender for Identity <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-defender\/microsoft-defender-for-identity\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Defender for IoT<\/strong>: An endpoint protection solution for Enterprise IoT (EIoT) devices and Operational Technology (OT) devices. Learn about licensing Microsoft Defender for IoT <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-defender\/microsoft-defender-for-iot\/enterprise-iot-devices\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Defender for Office 365<\/strong>: A security product to protect email and collaboration tools (Teams, SharePoint and OneDrive) by, for example, scanning file attachments and checking links. Learn about licensing Defender for Office 365 <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-defender\/microsoft-defender-for-office-365\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Defender and Purview Suite FLW<\/strong>: An Add-on license specifically for Frontline Workers, combining the security and compliance suites: Microsoft Defender Suite FLW and Microsoft Purview Suite FLW. This was previously known as Microsoft 365 F5 Security and Compliance. Learn about licensing the Microsoft Defender and Purview Suite FLW <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/plans-for-frontline-workers\/licensing-for-security-and-compliance\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Defender and Purview Suite for Business Premium<\/strong>: An Add-on license specifically for SMB users, combining the security and compliance suites: Microsoft Defender Suite for Business Premium and Microsoft Purview Suite for Business Premium. Learn about licensing the Microsoft Defender and Purview Suite for Business Premium <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-plans-for-smb-users\/licensing-for-security-and-compliance\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Defender Suite<\/strong>: An Add-on license providing a comprehensive suite of advanced security solutions designed to protect organizations from sophisticated threats. This was previously known as Microsoft 365 E5 Security. Learn about licensing the Microsoft Defender Suite <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-plans-for-enterprise-users\/licensing-for-security-and-compliance\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Defender Suite FLW<\/strong>: An Add-on license specifically for Frontline Workers, providing a comprehensive suite of advanced security solutions designed to protect organizations from sophisticated threats. This was previously known as Microsoft 365 F5 Security. Learn about licensing the Microsoft Defender Suite FLW <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/plans-for-frontline-workers\/licensing-for-security-and-compliance\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Defender Suite for Business Premium<\/strong>: An Add-on license specifically for SMB users, providing a comprehensive suite of advanced security solutions designed to protect smaller organizations from sophisticated threats. Learn about licensing the Microsoft Defender Suite for Business Premium <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-plans-for-smb-users\/licensing-for-security-and-compliance\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Defender Threat Intelligence (MDTI)<\/strong>: A platform that gathers and analyzes threat data from various sources so that customers can spot and deal with potential security risks. Learn about licensing Microsoft Defender Threat Intelligence <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-defender\/microsoft-defender-threat-intelligence\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Defender Vulnerability Management<\/strong>: A product which helps IT professionals to identify, assess, remediate, and track their organization\u2019s biggest vulnerabilities across Windows, macOS, Linux, Android, iOS and network devices. Learn about licensing Microsoft Defender Vulnerability Management <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-defender\/microsoft-defender-vulnerability-management\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Defender XDR<\/strong>: An extended detection and response (XDR) solution which provides a unified platform to detect, investigate, and respond to threats across endpoints, identities, email, cloud applications, and cloud infrastructure. Learn about licensing Microsoft Defender XDR <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-defender\/microsoft-defender-xdr\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Designer<\/strong>: A graphic design and image editing app powered by AI. Learn about licensing Microsoft Designer <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/copilot-pro\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Desktop Optimization Pack (MDOP)<\/strong>: A suite of desktop management tools. Learn about MDOP licensing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-11-device\/additional-software-assurance-benefits\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Dev Box<\/strong>: A cloud-based workstation optimized for developers. Learn about the licensing of Microsoft Dev Box <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-the-developer-tools-2\/microsoft-dev-box\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Developer Network (MSDN)<\/strong>: A set of Microsoft resources for developers, now integrated into other sites such as Microsoft Learn.<\/p>\n\n\n\n<p><strong>Microsoft Endpoint Configuration Manager<\/strong>: An IT management solution to manage PCs and servers. Learn about licensing Microsoft Endpoint Configuration Manager <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-intune\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Entra<\/strong>: The family name for Microsoft\u2019s unified identity and network access solutions. Learn about licensing Microsoft Entra <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-entra\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Entra ID<\/strong>: Microsoft\u2019s cloud-based identity and access management service, previously known as Azure Active Directory. Learn about the licensing of Microsoft Entra ID <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-entra\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Entra ID Governance<\/strong>: An identity governance solution to help organizations strengthen security and more easily meet compliance and regulatory requirements. Learn about licensing Microsoft Entra ID Governance <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-entra\/microsoft-entra-id-governance\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Entra Internet Access<\/strong>: Part of Microsoft Entra which delivers secure access to internet and SaaS apps.<\/p>\n\n\n\n<p><strong>Microsoft Entra Private Access<\/strong>: Part of Microsoft Entra which delivers secure access to private apps in the cloud and on-premises.<\/p>\n\n\n\n<p><strong>Microsoft Entra Suite<\/strong>: A suite of tools that bring together identity and network access so that you can secure employee access to any cloud or on-premises application or resource from any location, whilst all the time enforcing least privileged access. Learn about the licensing of the Microsoft Entra Suite <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-entra\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Fabric<\/strong>: A platform that allows users to get, create, share, and visualize data using various tools. Power BI is now a component of Microsoft Fabric. Learn about licensing Power BI <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/power-bi\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Flow<\/strong>: The previous name of Power Automate.<\/p>\n\n\n\n<p><strong>Microsoft Forms Pro<\/strong>: The previous name of Dynamics 365 Customer Voice.<\/p>\n\n\n\n<p><strong>Microsoft Graph<\/strong>: A slightly mysterious thing (an API) that provides access to data stored across Microsoft 365 services so that developers can build custom apps for an organization. Microsoft Graph grounds <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/copilot-for-microsoft-365\/\">Microsoft 365 Copilot<\/a> with an organization\u2019s productivity data to improve the relevancy and depth of responses.<\/p>\n\n\n\n<p><strong>Microsoft Information Governance<\/strong>: The previous name of Microsoft Purview Data Lifecycle Management.<\/p>\n\n\n\n<p><strong>Microsoft Intune<\/strong>: The family name for Microsoft\u2019s endpoint management solution combining Intune and Microsoft Endpoint Configuration Manager. Learn about the licensing of Microsoft Intune <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-intune\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Loop<\/strong>: An app that enables teams of people to work together in real time. Projects can be organized in Loop Workspaces consisting of, for example, Loop pages and\/or Microsoft 365 documents. For collaboration convenience a single item on a Loop page can be made into a Loop component and shared for real-time editing in a variety of apps.<\/p>\n\n\n\n<p><strong>Microsoft Online Subscription Agreement (MOSA)<\/strong>: The original agreement for customers to purchase Online Services such as Office 365.<\/p>\n\n\n\n<p><strong>Microsoft Online Subscription Program (MOSP)<\/strong>: The original program for customers to purchase Online Services such as Office 365, under the terms of MOSA.<\/p>\n\n\n\n<p><strong>Microsoft Operations Manager (MOM)<\/strong>: The previous name of System Center Operations Manager. Learn about licensing the System Center server products <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/system-center-2022-servers\/licensing-system-center-2022-for-servers\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Places<\/strong>: Technology based on Teams and Microsoft 365 Copilot to help users have a better experience when working from the office.<\/p>\n\n\n\n<p><strong>Microsoft Planner<\/strong>: Microsoft\u2019s basic work-management\/project management app. Learn about the licensing of Microsoft Planner <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-project\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Priva<\/strong>: The family name for Microsoft\u2019s privacy solutions. Learn about licensing Microsoft Priva <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-priva\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Products and Services Agreement (MPSA)<\/strong>: A licensing agreement aimed at the larger customer who has more than 250 users or devices. Learn about the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/lessons\/introduction-to-microsoft-licensing\/mpsa-and-select-plus-basics\/\">basics<\/a> of the MPSA, and how to buy <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-on-premises-products-mpsa\/\">on-premises products<\/a> and the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-online-services-mpsa\/\">Online Services<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Purview<\/strong>: Microsoft\u2019s unified data governance and compliance and risk management solution. Learn about licensing Microsoft Purview <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-purview\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Purview Suite<\/strong>: An Add-on license providing a robust set of compliance solutions in Microsoft 365 that helps organizations manage risks, respond to regulatory requirements, and ensure data governance and privacy across their digital environment. This was previously known as Microsoft 365 E5 Compliance. Learn about licensing the Microsoft Purview Suite <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-plans-for-enterprise-users\/licensing-for-security-and-compliance\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Purview Suite FLW<\/strong>: An Add-on license specifically for Frontline Workers, providing a robust set of compliance solutions in Microsoft 365 that helps organizations manage risks, respond to regulatory requirements, and ensure data governance and privacy across their digital environment. This was previously known as Microsoft 365 F5 Compliance. Learn about licensing the Microsoft Purview Suite FLW <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/plans-for-frontline-workers\/licensing-for-security-and-compliance\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Purview Suite for Business Premium<\/strong>: An Add-on license specifically for SMB users, providing a robust set of compliance solutions in Microsoft 365 that helps smaller organizations manage risks, respond to regulatory requirements, and ensure data governance and privacy across their digital environment. Learn about licensing the Microsoft Purview Suite for Business Premium <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-plans-for-smb-users\/licensing-for-security-and-compliance\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft R Server<\/strong>: The previous name of Machine Learning Server.<\/p>\n\n\n\n<p><strong>Microsoft Relationship Sales<\/strong>: A single license for Dynamics 365 Sales Enterprise and LinkedIn Sales Navigator Advanced Plus. Learn about the licensing of Microsoft Relationship Sales <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-crm-apps\/available-licenses\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Relationship Sales Solution Plus<\/strong>: The previous name of Microsoft Relationship Sales.<\/p>\n\n\n\n<p><strong>Microsoft Security Response Center (MSRC)<\/strong>: A Microsoft team focusing on responding to, and mitigating security threats across Microsoft\u2019s products. Learn about their role in rating security vulnerabilities for <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/esus-windows-server\/\">Windows Server<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/esus-sql-server-2014\/\">SQL Server<\/a> which affect the cadence of ESUs.<\/p>\n\n\n\n<p><strong>Microsoft Sentinel<\/strong>: Microsoft\u2019s SecOps platform that provides a single solution for SIEM and SOAR capabilities. Learn about the licensing of Microsoft Sentinel <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-sentinel\/?attr=microsoft-sentinel\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Sustainability Manager (MSM)<\/strong>: A product that helps organizations to track and manage their environmental impact.<\/p>\n\n\n\n<p><strong>Microsoft Syntex<\/strong>: A previous name of Document Processing for Microsoft 365.<\/p>\n\n\n\n<p><strong>Microsoft Teams Rooms (MTR)<\/strong>: Shared workspaces with dedicated Microsoft certified devices for video, audio, and content sharing. Learn about Microsoft Teams Rooms licensing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/teams-devices\/licensing-microsoft-teams-rooms\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Teams Rooms Basic<\/strong>: A free license for basic Microsoft Teams Rooms scenarios. Learn about licensing Microsoft Teams Rooms <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/teams-devices\/microsoft-teams-rooms-licenses\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Teams Rooms Premium<\/strong>: A legacy Microsoft Teams Rooms license. Learn about the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/teams-devices\/legacy-microsoft-teams-rooms-licenses\/\">legacy<\/a> licensing or the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/teams-devices\/licensing-microsoft-teams-rooms\/\">current<\/a> licensing of Microsoft Teams Rooms.<\/p>\n\n\n\n<p><strong>Microsoft Teams Rooms Pro<\/strong>: A license for full-featured Microsoft Teams Rooms scenarios with a central management capability. Learn about licensing Microsoft Teams Rooms <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/teams-devices\/licensing-microsoft-teams-rooms\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Microsoft Teams Rooms Standard<\/strong>: A legacy Microsoft Teams Rooms license. Learn about the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/teams-devices\/legacy-microsoft-teams-rooms-licenses\/\">legacy<\/a> licensing or the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/teams-devices\/licensing-microsoft-teams-rooms\/\">current<\/a> licensing of Microsoft Teams Rooms.<\/p>\n\n\n\n<p><strong>Microsoft Threat Protection<\/strong>: The previous name of Microsoft 365 Defender.<\/p>\n\n\n\n<p><strong>MIP<\/strong>: Microsoft Purview Information Protection.<\/p>\n\n\n\n<p><strong>ML<\/strong>: Management License. See Server Management License and Client Management License.<\/p>\n\n\n\n<p><strong>Mobile Application Management (MAM)<\/strong>: The process of securing, controlling and managing mobile applications to ensure compliance and data protection, delivered in the Microsoft world by Intune. Learn about licensing Intune <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-intune\/licensing-intune\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Mobile Device Management (MDM)<\/strong>: The process of securing, monitoring, and managing mobile devices to protect corporate data and ensure compliance, delivered in the Microsoft world by Intune. Learn about licensing Intune <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-intune\/licensing-intune\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>MOM<\/strong>: Microsoft Operations Manager.<\/p>\n\n\n\n<p><strong>Monetary Commitment<\/strong>: The previous name of Azure Prepayment.<\/p>\n\n\n\n<p><strong>Monthly Active Users (MAU)<\/strong>: The count of unique users with authentication activity within a calendar month.<\/p>\n\n\n\n<p><strong>Monthly Subscription Unit<\/strong>: A name given to the special type of subscription licenses that can meet the commitment required for a Server and Cloud Enrollment. Learn about licensing MSUs for the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-on-premises-products-ea\/server-and-cloud-enrollment\/application-platform-component\/?attr=application-platform-component-1561\">Application Platform<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-on-premises-products-ea\/server-and-cloud-enrollment\/core-infrastructure-component\/\">Core Infrastructure<\/a> components.<\/p>\n\n\n\n<p><strong>MOSA<\/strong>: Microsoft Online Subscription Agreement.<\/p>\n\n\n\n<p><strong>MOSP<\/strong>: Microsoft Online Subscription Program.<\/p>\n\n\n\n<p><strong>MPSA<\/strong>: Microsoft Products and Services Agreement.<\/p>\n\n\n\n<p><strong>MRS<\/strong>: Microsoft Relationship Sales.<\/p>\n\n\n\n<p><strong>MRU<\/strong>: Most Recently Used.<\/p>\n\n\n\n<p><strong>MSDN<\/strong>: Microsoft Developer Network.<\/p>\n\n\n\n<p><strong>MSDN Platforms<\/strong>: One of the Visual Studio 2022 Standard subscriptions. Learn about the licensing of MSDN Platforms <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/visual-studio-2022\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>MSM<\/strong>: Microsoft Sustainability Manager.<\/p>\n\n\n\n<p><strong>MSRC<\/strong>: Microsoft Security Response Center.<\/p>\n\n\n\n<p><strong>MSU<\/strong>: Monthly Subscription Unit.<\/p>\n\n\n\n<p><strong>MTR<\/strong>: Microsoft Teams Rooms.<\/p>\n\n\n\n<p><strong>Multiple Activation Key (MAK)<\/strong>: A single key that allows organizations to activate multiple installations of Microsoft software.<\/p>\n\n\n\n<p><strong>Multiplexing<\/strong>: The use of hardware or software to pool connections, or reduce the number of devices or users that directly access or use SQL Server. Learn about licensing multiplexing scenarios with <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/sql-server-2022\/licensing-sql-server-2022\/multiplexing\/\">SQL Server<\/a>.<\/p>\n\n\n\n<p><strong>Multi-threading<\/strong>: In licensing terms, when a physical core supports a number of virtual cores, or several physical cores support a single virtual core. Learn about licensing multi-threading scenarios with <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/sql-server-2022\/licensing-virtual-machines\/advanced-per-core-licensing\/\">SQL Server<\/a>.<\/p>\n\n\n\n<p><strong>NC<\/strong>: Normalized Core.<\/p>\n\n\n\n<p><strong>NC2<\/strong>: Nutanix Cloud Cluster<\/p>\n\n\n\n<p><strong>NCE<\/strong>: New Commerce Experience.<\/p>\n\n\n\n<p><strong>NCE \u2013 Customer Led<\/strong>: A term Microsoft sometimes use for a customer who is buying via the Microsoft website and who has accepted the terms of the Microsoft Customer Agreement.<\/p>\n\n\n\n<p><strong>NCE \u2013 Partner Led<\/strong>: A term Microsoft sometimes use for a customer who is buying via a CSP partner and who has accepted the terms of the Microsoft Customer Agreement.<\/p>\n\n\n\n<p><strong>NCL<\/strong>: Normalized Core License. See Normalized Core.<\/p>\n\n\n\n<p><strong>New Commerce Experience<\/strong>: Microsoft\u2019s updated commerce system for purchasing licenses, governed by the Microsoft Customer Agreement.<\/p>\n\n\n\n<p><strong>New Version rights<\/strong>: Rights to use a newer version of a product released during the term of an agreement. Learn more about New Version rights <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/lessons\/licensing-on-premises-products\/software-assurance\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>NFP<\/strong>: not-for-profit.<\/p>\n\n\n\n<p><strong>NHI<\/strong>: Non-Human Identity.<\/p>\n\n\n\n<p><strong>Non-Human Identity (NHI)<\/strong>: An identity in your infrastructure that needs to be protected and managed but doesn\u2019t relate to a human \u2013 something like an AI Agent, for example.<\/p>\n\n\n\n<p><strong>Normalized Core (NC)\/Normalized Core License (NCL)<\/strong>: A way of counting SQL Server Standard and Enterprise Core licenses so that you know how many vCores you can cover when running SQL Server in Azure. Learn about licensing using Normalized Cores in PaaS solutions here and with the Centrally Managed Azure Hybrid Benefit here.<\/p>\n\n\n\n<p><strong>(no Teams) Suites<\/strong>: A set of licenses that don\u2019t <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/office-365-and-microsoft-365-no-teams-licenses\/\">include Teams<\/a>, in contrast to the Covered Suites. They are Microsoft 365 Business Basic, Microsoft 365 Business Standard, Microsoft 365 Business Premium, Office 365 E1, Office 365 E3, Office 365 E5, Microsoft 365 E3, Microsoft 365 E5, and Microsoft 365 E7.<\/p>\n\n\n\n<p><strong>O365<\/strong>: Office 365.<\/p>\n\n\n\n<p><strong>O365 ATP<\/strong>: Office 365 Advanced Threat Protection.<\/p>\n\n\n\n<p><strong>Objectives and Key Results (OKR)<\/strong>: A goal-setting framework that helps organizations define and track goals.<\/p>\n\n\n\n<p><strong>OCI<\/strong>: Oracle Cloud Infrastructure.<\/p>\n\n\n\n<p><strong>OCS<\/strong>: Office Communications Server.<\/p>\n\n\n\n<p><strong>On-Demand Capacity Reservation (ODCR)<\/strong>: See Capacity Reservation.<\/p>\n\n\n\n<p><strong>ODB<\/strong>: OneDrive for Business.<\/p>\n\n\n\n<p><strong>ODCR<\/strong>: On-Demand Capacity Reservation.<\/p>\n\n\n\n<p><strong>OEM<\/strong>: Original Equipment Manufacturer.<\/p>\n\n\n\n<p><strong>Office 365<\/strong>: A set of plans for the Online Services such as Exchange Online, SharePoint Online and the Microsoft 365 Apps. Learn about licensing the Office 365 plans <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/office-365-plans\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Office 365 Advanced Threat Protection<\/strong>: The previous name of Microsoft Defender for Office 365.<\/p>\n\n\n\n<p><strong>Office 365 ATP<\/strong>: Office 365 Advanced Threat Protection.<\/p>\n\n\n\n<p><strong>Office 365 Business<\/strong>: The previous name of Microsoft 365 Apps for Business.<\/p>\n\n\n\n<p><strong>Office 365 Cloud App Security<\/strong>: A subset of Microsoft Defender for Cloud Apps that provides enhanced visibility and control for Office 365. Learn about the licensing for Office 365 Cloud App Security <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-defender\/microsoft-defender-for-cloud-apps\/#:~:text=Office%20365%20Cloud%20App%20Security\">here<\/a>.<\/p>\n\n\n\n<p><strong>Office 365 E1 Plus<\/strong>: A flavor of Office 365 E1 which adds additional security and management features to Office 365 E1. Learn about licensing Office 365 E1 Plus <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/office-365-plans\/office-365-plan-licenses-original\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Office 365 ProPlus<\/strong>: The previous name of Microsoft 365 Apps for Enterprise.<\/p>\n\n\n\n<p><strong>Office Communications Server (OCS)<\/strong>: The previous name of Lync Server.<\/p>\n\n\n\n<p><strong>Office LTSC 2024<\/strong>: The Microsoft suite of desktop productivity tools and a cost-effective way for organizations to license all of these products. Learn about licensing Office LTSC 2024 <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/office-ltsc-2024\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Office Online Server (OOS)<\/strong>: A server product that allows organizations to provide web-based versions of Office without requiring desktop application installations. Learn about the licensing of Office Online Server <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/office-ltsc-2024\/office-for-the-web-and-office-online-server\">here<\/a>.<\/p>\n\n\n\n<p><strong>OKR<\/strong>: Objectives and Key Results.<\/p>\n\n\n\n<p><strong>OLP<\/strong>: Open License Program.<\/p>\n\n\n\n<p><strong>OLS<\/strong>: Online Services.<\/p>\n\n\n\n<p><strong>OneDrive<\/strong>: A cloud storage service that allows individuals and organizations to store, sync, and share files across devices. This was previously known as OneDrive for Business, a name change that could be confusing because it now shares its name with the consumer offering. Learn about the licensing of OneDrive <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/standalone-online-services\/onedrive\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>OneDrive for Business (ODB)<\/strong>: The previous name of OneDrive, a name change that could be confusing because it now shares its name with the consumer offering.<\/p>\n\n\n\n<p><strong>OneLake<\/strong>: A single, organizational data lake used with Fabric capacities. Learn about licensing Power BI, one of the Fabric components, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/power-bi\/power-bi-premium-capacity\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Online Services<\/strong>: In the Microsoft world, hosted services running on Microsoft\u2019s servers, such as Microsoft 365 and Dynamics 365.<\/p>\n\n\n\n<p><strong>On-premises use rights<\/strong>: A right included in an Online Services license that allows a user to access a licensed on-premises server. Find out more about on-premises use rights for <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/office-365-plans\/on-premises-use-rights\/\">Office 365<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-plans-for-enterprise-users\/on-premises-use-rights\/\">Microsoft 365<\/a>, and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/ems-plans\/on-premises-use-rights\/\">EMS<\/a>.<\/p>\n\n\n\n<p><strong>OOBE<\/strong>: Out-Of-Box-Experience.<\/p>\n\n\n\n<p><strong>OOS<\/strong>: Office Online Server.<\/p>\n\n\n\n<p><strong>Open License program (OLP)<\/strong>: A Volume Licensing agreement aimed at smaller customers which was retired in December 2021. Learn how customers transition their licenses for <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-on-premises-products-open-programs\/open-license-program\/\">on-premises products<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-online-services-open-programs\/\">Online Services<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-azure-services-open-programs\/transitioning-out-of-an-open-license-agreement\/\">Azure<\/a> to other agreements.<\/p>\n\n\n\n<p><strong>Open Value non Organization-Wide agreement<\/strong>: A Volume Licensing agreement aimed at smaller customers which does not require a customer to commit to any product organization-wide. Learn about the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/lessons\/introduction-to-microsoft-licensing\/open-programs-basics\/\">basics<\/a> of the Open Value non Organization-Wide agreement, and how <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-on-premises-products-open-programs\/open-value-non-organization-wide\/\">on-premises products<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-online-services-open-programs\/\">Online Services<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-azure-services-open-programs\/\">Azure<\/a> are purchased through this agreement.<\/p>\n\n\n\n<p><strong>Open Value Organization-Wide agreement<\/strong>: A Volume Licensing agreement aimed at smaller customers which requires a customer to commit to certain products across their organization. Learn about the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/lessons\/introduction-to-microsoft-licensing\/open-programs-basics\/\">basics<\/a> of the Open Value Organization-Wide agreement, and how <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-on-premises-products-open-programs\/open-value-organization-wide\/\">on-premises products<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-online-services-open-programs\/\">Online Services<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-azure-services-open-programs\/\">Azure<\/a> are purchased through this agreement.<\/p>\n\n\n\n<p><strong>Open Value Subscription (OVS) agreement<\/strong>: A Volume Licensing agreement aimed at smaller customers based on subscription licenses and a requirement to commit to certain products organization-wide. Learn about the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/lessons\/introduction-to-microsoft-licensing\/open-programs-basics\/\">basics<\/a> of the Open Value Subscription agreement, and how <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-on-premises-products-open-programs\/open-value-subscription\/\">on-premises products<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-online-services-open-programs\/\">Online Services<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-azure-services-open-programs\/\">Azure<\/a> are purchased through this agreement.<\/p>\n\n\n\n<p><strong>Operating system (OS)<\/strong>: The main software that manages all the hardware and other software on a computer. Examples include Windows Server and Windows 11. Learn about licensing Windows Server 2025 <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-server-2025\/licensing-windows-server-2025\/\">here<\/a>, Windows 11 (Device) <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-11-device\/licensing-windows-11\/\">here<\/a> and Windows 11 (User) <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-11-user\/licensing-windows-11\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>OS<\/strong>: Operating system.<\/p>\n\n\n\n<p><strong>OSE<\/strong>: Operating System Environment.<\/p>\n\n\n\n<p><strong>Original Equipment Manufacturer (OEM)<\/strong>: In the Microsoft world, a company that manufactures PCs with products such as the Windows operating system preinstalled. Learn about licensing Windows 11 Pro acquired through the OEM channel <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-11-device\/licensing-windows-11\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>OT<\/strong>: Operational Technology.<\/p>\n\n\n\n<p><strong>Outsourcer<\/strong>: A name for a third-party organization that customers use to handle their IT infrastructure, including hardware, IT services, and software. Learn about licensing with Authorized Outsourcers <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/license-deployment-options\/overview-of-options\/authorized-outsourcers\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>OVS<\/strong>: Open Value Subscription agreement.<\/p>\n\n\n\n<p><strong>P3<\/strong>: Pre-Purchase Plan.<\/p>\n\n\n\n<p><strong>PaaS<\/strong>: Platform as a Service.<\/p>\n\n\n\n<p><strong>Partner Center<\/strong>: The portal used by transacting CSP partners.<\/p>\n\n\n\n<p><strong>PAYG<\/strong>: Pay-As-You-Go.<\/p>\n\n\n\n<p><strong>PBI<\/strong>: Power BI.<\/p>\n\n\n\n<p><strong>PBIE<\/strong>: Power BI Embedded.<\/p>\n\n\n\n<p><strong>PBIRS<\/strong>: Power BI Report Server.<\/p>\n\n\n\n<p><strong>PBX<\/strong>: Private Branch Exchange.<\/p>\n\n\n\n<p><strong>Perpetual license<\/strong>: A license a customer owns forever.<\/p>\n\n\n\n<p><strong>Phone System<\/strong>: The previous name of Teams Phone Standard.<\/p>\n\n\n\n<p><strong>Physical Operating System Environment (POSE)<\/strong>: When an operating system, such as Windows Server 2025 or Windows 11, runs directly on a computer\u2019s hardware. Learn about licensing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-server-2025\/licensing-windows-server-2025\/\">Windows Server 2025<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-11-device\/licensing-windows-11\/\">Windows 11<\/a>.<\/p>\n\n\n\n<p><strong>PIM<\/strong>: Privileged Identity Management.<\/p>\n\n\n\n<p><strong>Planner<\/strong>: See Microsoft Planner.<\/p>\n\n\n\n<p><strong>Planning Services<\/strong>: A Software Assurance benefit retired by Microsoft in 2021.<\/p>\n\n\n\n<p><strong>POSE<\/strong>: Physical Operating System Environment.<\/p>\n\n\n\n<p><strong>Power Apps<\/strong>: A product that enables users of all technical abilities to create apps for an organization so that they can improve efficiency by perhaps taking time out of a process or creating an app to replace a paper-based process. Learn about licensing Power Apps <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/power-apps\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Power Apps Basic<\/strong>: Not a product, the name for the use rights for Power Apps included in certain Office 365 and Microsoft 365 licenses. Learn more about this <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/power-apps\/power-apps-rights-included-in-other-licenses\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Power Apps Portals<\/strong>: The precursor to Power Pages.<\/p>\n\n\n\n<p><strong>Power Automate<\/strong>: A business process and workflow automation tool which enables users to automate repetitive tasks without coding. Learn about licensing Power Automate <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/power-automate\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Power Automate Basic<\/strong>: Not a product, the name for the use rights for Power Automate included in certain Office 365 and Microsoft 365 licenses. Learn more about this <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/power-automate\/power-automate-rights-included-in-other-licenses\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Power Automate Desktop<\/strong>: The product used to create desktop flows in Power Automate. Learn about licensing desktop flows in Power Automate <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/power-automate\/licensing-desktop-flows\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Power BI<\/strong>: A business analytics service that enables users to create data visualizations and gain insights. It converts data from different sources to build interactive dashboards and business intelligence reports. Learn about licensing Power BI <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/power-bi\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Power BI Desktop<\/strong>: A free tool for users to connect to data sources and transform that data into visualizations. Learn about licensing Power BI Desktop as part of the Power BI solution <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/power-bi\/power-bi-desktop\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Power BI Embedded<\/strong>: A flavor of Power BI aimed at developers or ISVs who are building apps and want to embed visuals into those apps without having to build an analytics solution from scratch. Learn about licensing Power BI Embedded apps <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/power-bi\/licensing-power-bi-embedded-apps\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Power BI Embedded Analytics<\/strong>: Embedded publishing solutions delivered by Power BI Embedded and Power BI Premium. Learn about licensing Power BI Embedded Analytics <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/power-bi\/power-bi-embedded-analytics\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Power BI (free)<\/strong>: The previous name of Fabric (free).<\/p>\n\n\n\n<p><strong>Power BI Mobile<\/strong>: Apps to view Power BI content on mobile devices. Learn about licensing Power BI Mobile <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/power-bi\/power-bi-mobile\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Power BI Premium<\/strong>: An advanced flavor of Power BI offering advanced features and dedicated capacity. Learn about licensing Power BI Premium capacity <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/power-bi\/power-bi-premium-capacity\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Power BI Pro<\/strong>: A license for the Power BI service which allows users to create and share content. Learn about licensing Power BI Pro <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/power-bi\/power-bi-user-licenses\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Power BI Report Builder<\/strong>: A tool for creating paginated reports to share in the Power BI service. Learn about licensing Power BI <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/power-bi\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Power BI Report Server (PBIRS)<\/strong>: An on-premises server product that enables licensed Power BI Pro users to publish Power BI reports and distribute them across the organization. Learn about licensing Power BI Report Server <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/power-bi\/power-bi-report-server\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Power BI service<\/strong>: A SaaS offering, now a component of Microsoft Fabric, that enables users to create data visualizations and gain insights. It converts data from different sources to build interactive dashboards and business intelligence reports. Learn about licensing Power BI <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/power-bi\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Power Pages<\/strong>: A low-code web development solution that allows users to rapidly design, configure, and publish websites that work across web browsers and devices. Learn about licensing Power Pages <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/power-pages\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Power Platform<\/strong>: A collection of Microsoft tools that make it easy for users to create business solutions with little or no code. Power Platform includes: Power BI, Power Apps, Power Pages, Power Automate, and Copilot Studio.<\/p>\n\n\n\n<p><strong>Power Virtual Agents (PVA)<\/strong>: The precursor to Copilot Studio.<\/p>\n\n\n\n<p><strong>PPAC<\/strong>: Power Platform Admin Center.<\/p>\n\n\n\n<p><strong>PPP<\/strong>: Pre-Purchase Plan.<\/p>\n\n\n\n<p><strong>PPU<\/strong>: A term used by the Power BI team to refer to the Power BI Premium Per User license. Learn about licensing Power BI <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/power-bi\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Primary User<\/strong>: A term <a href=\"https:\/\/www.microsoft.com\/licensing\/terms\/product\/Glossary\/all#:~:text=Primary%20User\">Microsoft<\/a> use to refer to a user who uses a licensed device more than 50% of the time in any 90-day period.<\/p>\n\n\n\n<p><strong>Priva<\/strong>: See Microsoft Priva.<\/p>\n\n\n\n<p><strong>Private Preview<\/strong>: A product or feature in development that only invited customers can try before it\u2019s officially released, as opposed to Public Preview.<\/p>\n\n\n\n<p><strong>Productivity Suite<\/strong>: A SAL, available in SPLA, providing a suite of licenses for access to productivity servers. Learn about licensing the Productivity Suite <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/lessons\/spla\/productivity-suite\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Project Service Automation<\/strong>: See Dynamics 365 Project Service Automation.<\/p>\n\n\n\n<p><strong>Product Terms<\/strong>: Until February 2021 Microsoft released monthly Product Terms and Online Services Terms documents which, together, gave detail on the licensing of its products. From March 2021, however, these documents are replaced by the Product Terms <a href=\"https:\/\/bit.ly\/BOKProductTerms\">website<\/a>.<\/p>\n\n\n\n<p><strong>Project 2024<\/strong>: The desktop product aimed at project managers either working on their own using Standard edition, or as part of a Project Server project management solution. Learn about the licensing of Project 2024 <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/project-2024\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Project Server<\/strong>: A project management server solution that allows project managers, key stakeholders, and other team members to collaborate on a project. Learn about the licensing of <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/project-server-subscription-edition-se\/licensing-project-server-se\/\">Project Server SE<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/project-server-2019\/licensing-project-server-2019\/\">Project Server 2019<\/a>.<\/p>\n\n\n\n<p><strong>PSA<\/strong>: Project Service Automation.<\/p>\n\n\n\n<p><strong>PSF<\/strong>: Product Selection Form.<\/p>\n\n\n\n<p><strong>PSTN<\/strong>: Public Switched Telephone Network.<\/p>\n\n\n\n<p><strong>PSTN Calling Plan<\/strong>: The previous name of Calling Plan.<\/p>\n\n\n\n<p><strong>PSTN Conferencing<\/strong>: The previous name of Audio Conferencing.<\/p>\n\n\n\n<p><strong>Product Use Rights<\/strong>: The precursor to the Product Terms.<\/p>\n\n\n\n<p><strong>Professional Desktop<\/strong>: In an Enterprise\/Enterprise Subscription enrollment, this is the name for the enterprise-wide commitment a customer has made to Windows, Office and the Core CAL Suite. Learn about licensing the Professional Desktop <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-on-premises-products-ea\/enterprise-enrollment\/enterprise-wide-commitment\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>ptpm<\/strong>: per tenant per month. An abbreviation Microsoft use when talking about the cost of a tenant license per month.<\/p>\n\n\n\n<p><strong>Public Preview<\/strong>: A product or feature in development that anyone can try before it\u2019s officially released, as opposed to Private Preview.<\/p>\n\n\n\n<p><strong>Public Switched Telephone Network (PSTN)<\/strong>: The world\u2019s telephone networks that carry calls from a landline or a mobile\/cell phone. Learn about licensing Teams Calling <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/teams-calling\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>PUR<\/strong>: Product Use Rights<\/p>\n\n\n\n<p><strong>Purchasing Accounts<\/strong>: Specific to the MPSA, allowing an organization to structure themselves as they want when purchasing their licenses. Learn about Purchasing Accounts with <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-on-premises-products-mpsa\/purchasing-accounts\/\">on-premises products<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-online-services-mpsa\/payment\/\">Online Services<\/a>.<\/p>\n\n\n\n<p><strong>Purview<\/strong>: See Microsoft Purview.<\/p>\n\n\n\n<p><strong>PVA<\/strong>: Power Virtual Agents.<\/p>\n\n\n\n<p><strong>Python in Excel<\/strong>: Enables users to access the power of Python analytics directly from Excel: you type Python code into a cell, the Python calculations run in the Microsoft cloud, and the results are returned to the worksheet. Learn about licensing Python in Excel <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-apps\/add-on-licenses-in-cloud\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Qualified Device<\/strong>: Any device that can run Windows Pro locally in a physical or virtual operating system environment or one that\u2019s used to access a Virtual Desktop Infrastructure. Customers must count and license all of their Qualified Devices when they have a Volume Licensing agreement with an enterprise-wide commitment. Learn about enterprise-wide commitments in the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-on-premises-products-ea\/enterprise-enrollment\/enterprise-wide-commitment\/\">Enterprise Enrollment<\/a>, and the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-on-premises-products-open-programs\/open-value-organization-wide\/organization-wide-commitment\/\">Open Value Organization-Wide<\/a> agreement.<\/p>\n\n\n\n<p><strong>Qualified User<\/strong>: Anyone who uses a Qualified Device.<\/p>\n\n\n\n<p><strong>Qualifying Operating System (QOS)<\/strong>: An underlying Windows client operating system that may be \u201cupgraded\u201d to a higher edition of Windows, serving as a prerequisite license when buying Windows Enterprise or Pro licenses through Volume Licensing agreements or CSP. Learn more about Qualifying Operating Systems for Windows <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-11-user\/licensing-windows-11\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>QMTH partner<\/strong>: Qualified Multi-Tenant Hosting partner.<\/p>\n\n\n\n<p><strong>QOS<\/strong>: Qualifying Operating System.<\/p>\n\n\n\n<p><strong>Quotas (Azure)<\/strong>: Many Azure services have quotas, which are maximums for the resources that may be created within a Subscription. Learn more about Quotas <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-consumption-services\/azure-subscriptions\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>RAC<\/strong>: Restricted Access Control.<\/p>\n\n\n\n<p><strong>RBAC<\/strong>: Role Based Access Control.<\/p>\n\n\n\n<p><strong>RBC<\/strong>: Role-based Copilot.<\/p>\n\n\n\n<p><strong>RC<\/strong>: Release Candidate.<\/p>\n\n\n\n<p><strong>RDS<\/strong>: Remote Desktop Services.<\/p>\n\n\n\n<p><strong>Red Hat Enterprise Linux (RHEL)<\/strong>: A subscription-based distribution of Linux used for deploying and managing enterprise workloads.<\/p>\n\n\n\n<p><strong>Relaxed reassignment rules<\/strong>: Introduced by Microsoft in October 2022 to, in effect, allow licenses to follow virtual machines around a server farm as required. Learn about relaxed reassignment rules with <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-server-2025\/licensing-a-server-farm\/licensing-individual-virtual-machines\/\">Windows Server<\/a>.<\/p>\n\n\n\n<p><strong>Release to web (RTW)<\/strong>: A way of making software available for release via the internet rather than physical media.<\/p>\n\n\n\n<p><strong>Remote Desktop Services (RDS)<\/strong>: A service of Windows Server that enables users to remotely access applications and desktop environments. Learn about the licensing of Remote Desktop Services <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-server-2025-services\/remote-desktop-services-rds\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Reservation<\/strong>: See Azure Reservation.<\/p>\n\n\n\n<p><strong>Reserved Capacity<\/strong>: A type of Azure Reservation which gives cost savings on the compute part of an Azure SQL solution. Learn more about licensing with Reserved Capacity <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-reservations\/azure-sql-reserved-capacity\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Reserved Instance<\/strong>: A type of Azure Reservation which gives cost savings on the compute part of a virtual machine. Learn more about licensing with Reserved Instances <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-windows-server-virtual-machines\/reserved-instances\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Resource Group<\/strong>: See Azure Resource Group.<\/p>\n\n\n\n<p><strong>Resource Scheduling Optimization<\/strong>: Part of the Dynamics 365 Field Service solution which automatically schedules jobs to the people, equipment, and facilities best equipped to complete them. Learn more about licensing Resource Scheduling Optimization <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-crm-apps\/add-on-licenses-in-cloud\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>RHEL<\/strong>: Red Hat Enterprise Linux.<\/p>\n\n\n\n<p><strong>RI<\/strong>: Reserved Instance.<\/p>\n\n\n\n<p><strong>RMS<\/strong>: See Active Directory Rights Management Services.<\/p>\n\n\n\n<p><strong>Robotic Process Automation (RPA)<\/strong>: In the context of Power Automate, the facility to create a desktop flow to automate repetitive desktop processes. Learn about licensing desktop flows in Power Automate <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/power-automate\/licensing-desktop-flows\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>ROI<\/strong>: Return on Investment.<\/p>\n\n\n\n<p><strong>Role Based Access Control (RBAC)<\/strong>: Technology that helps you to manage who has access to which Resources in an Azure Subscription and what they can do with those Resources. Learn about RBAC in Azure Subscriptions <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-consumption-services\/azure-subscriptions\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Role-based Copilot (RBC)<\/strong>: A Copilot aimed at a specific job role such as Copilot for Sales or Copilot for Service. Learn about licensing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/copilot-for-sales\/\">Copilot for Sales<\/a> or <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/copilot-for-service\/\">Copilot for Service<\/a>.<\/p>\n\n\n\n<p><strong>RPA<\/strong>: Robotic Process Automation.<\/p>\n\n\n\n<p><strong>RPO<\/strong>: Restore Point Objective.<\/p>\n\n\n\n<p><strong>RTO<\/strong>: Restore Time Objective.<\/p>\n\n\n\n<p><strong>RTW<\/strong>: Release to web.<\/p>\n\n\n\n<p><strong>RU<\/strong>: Request Unit.<\/p>\n\n\n\n<p><strong>SA<\/strong>: Software Assurance.<\/p>\n\n\n\n<p><strong>SaaS<\/strong>: Software as a Service.<\/p>\n\n\n\n<p><strong>SAC<\/strong>: Semi-Annual Channel.<\/p>\n\n\n\n<p><strong>SAL<\/strong>: Subscriber Access License.<\/p>\n\n\n\n<p><strong>Sales Copilot<\/strong>: Previously known as Viva Sales, Sales Copilot is standard Copilot functionality that is part of a Dynamics 365 Sales Enterprise or Sales Premium license. Learn about the licensing of Sales Copilot <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/copilot-for-sales\/journey-to-copilot-for-sales\/#:~:text=as-,Sales%20Copilot\">here<\/a>.<\/p>\n\n\n\n<p><strong>Sales Hub<\/strong>: An app which is part of the Dynamics 365 Sales solution and enables users to access Sales Insights capabilities. Learn about the licensing of Sales Hub <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-crm-apps\/sales\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Sales Insights<\/strong>: See Dynamics 365 Sales Insights.<\/p>\n\n\n\n<p><strong>SAM<\/strong>: Software Asset Management or Software Assurance Membership.<\/p>\n\n\n\n<p><strong>Savings Plans<\/strong>: See Azure Savings Plans.<\/p>\n\n\n\n<p><strong>SCA<\/strong>: Shared Computer Activation.<\/p>\n\n\n\n<p><strong>SCCM<\/strong>: System Center Configuration Manager.<\/p>\n\n\n\n<p><strong>SCE<\/strong>: Server and Cloud Enrollment.<\/p>\n\n\n\n<p><strong>SCEP<\/strong>: System Center Endpoint Protection.<\/p>\n\n\n\n<p><strong>SCM<\/strong>: Supply Chain Management.<\/p>\n\n\n\n<p><strong>SCU<\/strong>: Security Compute Unit.<\/p>\n\n\n\n<p><strong>SDC<\/strong>: Software Development Company.<\/p>\n\n\n\n<p><strong>SE<\/strong>: Subscription Edition. The latest version of products such as Project Server and SharePoint Server.<\/p>\n\n\n\n<p><strong>SecOps<\/strong>: Security Operations. Integrates IT security and operations to improve an organization\u2019s security posture. See Microsoft Sentinel.<\/p>\n\n\n\n<p><strong>Secure Productive Enterprise (SPE)<\/strong>: The previous name of Microsoft 365 Enterprise.<\/p>\n\n\n\n<p><strong>Security Capacity Unit (SCU)<\/strong>: A term sometimes mistakenly used instead of Security Compute Unit (SCU).<\/p>\n\n\n\n<p><strong>Security Compute Unit (SCU)<\/strong>: The term for Azure compute power to run Security Copilot workloads. Learn about licensing Security Copilot <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/copilot-for-security\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Security Copilot<\/strong>: An AI-powered security solution that helps increase the efficiency and capabilities of security professionals. Learn about the licensing of Security Copilot <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/copilot\/copilot-for-security\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Security Exposure Management<\/strong>: A security solution that provides a unified view of security posture across company assets and workloads.<\/p>\n\n\n\n<p><strong>Security posture<\/strong>: The overall strength and effectiveness of an organization\u2019s cybersecurity measures. See Cloud Security Posture Management (CSPM).<\/p>\n\n\n\n<p><strong>Seeded capacity<\/strong>: A term used by Microsoft up until August 2024 to indicate capacity for other products included in some Dynamics 365 licenses. Learn about included entitlements <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-crm-apps\/included-rights-and-entitlements-for-other-dynamics-apps\/customer-service\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Select Plus<\/strong>: A licensing agreement aimed at the larger customer who has more than 250 users or devices. Learn about the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/lessons\/introduction-to-microsoft-licensing\/mpsa-and-select-plus-basics\/\">basics<\/a> of the Select Plus agreement, and how to buy <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-on-premises-products-select-plus\/\">on-premises products<\/a>.<\/p>\n\n\n\n<p><strong>SEM<\/strong>: Security Event Management. See SIEM.<\/p>\n\n\n\n<p><strong>Semi-Annual Channel<\/strong>: Previous update channel for Windows 10, now replaced by the General Availability Channel for Windows 11. Also a previous update channel for Windows Server which was retired in 2022, and System Center which was retired in 2019. Learn about Servicing Channels for <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-server-2025\/servicing-channels\/\">Windows Server<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/system-center-2022-servers\/system-center-branches\/\">System Center<\/a>.<\/p>\n\n\n\n<p><strong>Server and Cloud Enrollment (SCE)<\/strong>: one of three enrollments signed under an Enterprise Agreement, where customers make a commitment to the server products, or to Azure. Learn about how to license the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-on-premises-products-ea\/server-and-cloud-enrollment\/\">server products<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-azure-services-ea\/buying-azure-services-through-an-sce\/\">Azure<\/a> through an SCE.<\/p>\n\n\n\n<p><strong>Server farm<\/strong>: A collection of servers. Learn about licensing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-server-2025\/licensing-a-server-farm\/\">Windows Server<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/sql-server-2022\/licensing-a-server-farm\/\">SQL Server<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/sharepoint-server-subscription-edition-se\/licensing-a-server-farm\/\">SharePoint Server<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/exchange-server-2019\/licensing-a-server-farm\/\">Exchange Server<\/a> in server farms.<\/p>\n\n\n\n<p><strong>Server Management License (Server ML)<\/strong>: The license used for the server products of System Center. Learn about the licensing of System Center 2022 server products <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/system-center-2022-servers\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Server Operating System<\/strong>: An operating system that runs on a server computer. Microsoft\u2019s server operating system is Windows Server. Learn about licensing Windows Server 2025 <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-server-2025\/licensing-windows-server-2025\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Server Subscriptions<\/strong>: See Software Subscriptions.<\/p>\n\n\n\n<p><strong>Services Provider License Agreement (SPLA)<\/strong>: A purchasing program that allows Service Providers called SPLA partners, to become licensees for a range of Microsoft products for use by their end customers. Learn more about license deployment options <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/license-deployment-options\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Services Provider Use Rights (SPUR)<\/strong>: Terms that governs the use rights for Service Providers and their end customers for Microsoft products acquired through the Services Provider License Agreement (SPLA) program. Until October 2021 the SPUR was released periodically as a document but is now published at this <a href=\"https:\/\/www.microsoft.com\/licensing\/spur\">website<\/a>.<\/p>\n\n\n\n<p><strong>Shared Computer Activation (SCA)<\/strong>: Used when a user is licensed for Microsoft 365 Apps for Enterprise, for example, and needs to log in with their usual credentials and use the apps on a shared device. Learn about Shared Computer Activation for the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-apps\/licensing-shared-devices\/\">Microsoft 365 Apps<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/visio-online\/shared-computer-activation\/\">Visio Online<\/a>.<\/p>\n\n\n\n<p><strong>SharePoint Advanced Management (SAM)<\/strong>: Technology that helps simplify data governance, with features to reduce content sprawl, control content oversharing, and manage site lifecycles.<\/p>\n\n\n\n<p><strong>SharePoint Online<\/strong>: A cloud-based service that helps organizations share and manage content, knowledge, and applications.<\/p>\n\n\n\n<p><strong>SharePoint Premium<\/strong>: A previous name of Document Processing for Microsoft 365.<\/p>\n\n\n\n<p><strong>SharePoint Syntex<\/strong>: A previous name of Document Processing for Microsoft 365.<\/p>\n\n\n\n<p><strong>SharePoint Server<\/strong>: A content management, workflow automation, and collaboration portal, which also allows a single infrastructure for internet, intranet and extranet sites. Learn about the licensing of <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/sharepoint-server-subscription-edition-se\/licensing-sharepoint-server-se\/\">SharePoint Server SE<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/sharepoint-server-2019\/licensing-sharepoint-server-2019\/\">SharePoint Server 2019<\/a>.<\/p>\n\n\n\n<p><strong>SLES<\/strong>: SUSE Linux Enterprise Server.<\/p>\n\n\n\n<p><strong>SIEM<\/strong>: Security Information and Event Management. A solution that combines Security Information Management (SIM) and Security Event Management (SEM) to detect, analyze, and respond to security threats in real-time. See Microsoft Sentinel.<\/p>\n\n\n\n<p><strong>SIM<\/strong>: Security Information Management. See SIEM.<\/p>\n\n\n\n<p><strong>SKU<\/strong>: Stock Keeping Unit.<\/p>\n\n\n\n<p><strong>Skype for Business Online<\/strong>: An online solution for instant messaging, presence information, web conferencing, and enterprise telephony. This was retired in favour of Teams in August 2021. Learn about the licensing of Teams <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/teams-and-audio-services\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Skype for Business Server<\/strong>: A server solution for instant messaging, presence information, web conferencing, and enterprise telephony. Learn about the licensing for Skype for Business Server 2019 <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/skype-for-business-server-2019\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Skype for Business Plus CAL Add-on for Microsoft 365 E3<\/strong>: This User SL is designed for customers who are moving to the cloud and have purchased Microsoft 365 E3 licenses for their users, but still need to maintain an on-premises Skype for Business solution for enterprise telephony. Learn more about this license <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-plans-for-enterprise-users\/other-interesting-licenses\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>SLA<\/strong>: Service Level Agreement.<\/p>\n\n\n\n<p><strong>SLES<\/strong>: SUSE Linux Enterprise Server.<\/p>\n\n\n\n<p><strong>Small and Medium-sized Business (SMB)<\/strong>: A designation given to an organization size for Microsoft software solutions usually targeting up to 300 users.<\/p>\n\n\n\n<p><strong>SMB<\/strong>: Small and Medium-sized Business.<\/p>\n\n\n\n<p><strong>SMT<\/strong>: Simultaneous Multi-Threading.<\/p>\n\n\n\n<p><strong>SOAR<\/strong>: Security Orchestration, Automation, and Response. A set of services and tools that enhance the efficiency and effectiveness in managing cybersecurity threats. See Microsoft Sentinel.<\/p>\n\n\n\n<p><strong>SOC<\/strong>: Security Operations Center. A centralized team monitoring, detecting, and responding to cybersecurity threats.<\/p>\n\n\n\n<p><strong>Software as a Service (SaaS)<\/strong>: Software applications hosted by a service provider and accessed by users over the internet via a web browser. Power BI is an example of a SaaS application.<\/p>\n\n\n\n<p><strong>Software Asset Management<\/strong>: The discipline of managing and optimizing the purchase, deployment, maintenance, utilization, and disposal of software applications within an organization to reduce cost and risk.<\/p>\n\n\n\n<p><strong>Software Assurance<\/strong>: An extra fee customers can pay when they purchase licenses in a Volume Licensing agreement. This typically entitles them to a whole host of benefits giving them more flexibility in deploying their software. Learn more about Software Assurance <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/software-assurance\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Software Assurance Membership<\/strong>: A term used to describe the situation when an MPSA customer has purchased Software Assurance for all licenses in a particular pool. Learn about Software Assurance benefits in the MPSA <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-on-premises-products-mpsa\/software-assurance-benefits\/?attr=software-assurance-benefits-1594\">here<\/a>.<\/p>\n\n\n\n<p><strong>Software Development Company (SDC)<\/strong>: An organization that designs and builds software applications and solutions.<\/p>\n\n\n\n<p><strong>Software Subscriptions<\/strong>: A 1- or 3-year subscription license acquired through CSP. Learn about Software Subscriptions for <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-server-software-subscriptions\/\">Windows Server<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/sql-server-2022\/sql-server-software-subscriptions\/\">SQL Server<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/system-center-2022-servers\/system-center-software-subscriptions\/\">System Center<\/a>.<\/p>\n\n\n\n<p><strong>SPE<\/strong>: Secure Productive Enterprise.<\/p>\n\n\n\n<p><strong>SPLA<\/strong>: Services Provider License Agreement.<\/p>\n\n\n\n<p><strong>SPLA partner<\/strong>: A partner who provides software services to customers via the SPLA program.<\/p>\n\n\n\n<p><strong>SPM<\/strong>: Security Posture Management.<\/p>\n\n\n\n<p><strong>SPO<\/strong>: SharePoint Online.<\/p>\n\n\n\n<p><strong>Spot virtual machine<\/strong>: See Azure Spot virtual machine.<\/p>\n\n\n\n<p><strong>SPUR<\/strong>: Services Provider Use Rights.<\/p>\n\n\n\n<p><strong>SQL Server Analysis Services (SSAS)<\/strong>: A component of SQL Server that enables advanced data modelling for Business Intelligence solutions. Learn about licensing SSAS <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/sql-server-2022\/licensing-sql-server-2022\/sql-server-components\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>SQL Server Integration Services (SSIS)<\/strong>: A component of SQL Server for building data integration and data transformation solutions. Learn about licensing SSIS <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/sql-server-2022\/licensing-sql-server-2022\/sql-server-components\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>SQL Server Management Studio (SSMS)<\/strong>: A comprehensive integrated environment for managing any SQL infrastructure, from <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/sql-server-2022\/\">SQL Server<\/a> to <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-azure-sql-solutions\/\">Azure SQL Database<\/a>. It offers tools for querying, designing, and administering databases, improving developer and administrator efficiency.<\/p>\n\n\n\n<p><strong>SQL Server Reporting Services (SSRS)<\/strong>: A component of SQL Server for creating, deploying, and managing paginated reports. Learn about licensing SSRS <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/sql-server-2022\/licensing-sql-server-2022\/sql-server-components\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>SRE<\/strong>: Site Reliability Engineer.<\/p>\n\n\n\n<p><strong>SSAS<\/strong>: SQL Server Analysis Services.<\/p>\n\n\n\n<p><strong>SSIS<\/strong>: SQL Server Integration Services.<\/p>\n\n\n\n<p><strong>SSMS<\/strong>: SQL Server Management Studio.<\/p>\n\n\n\n<p><strong>SSP<\/strong>: Scale Solution Provider.<\/p>\n\n\n\n<p><strong>SSRS<\/strong>: SQL Server Reporting Services.<\/p>\n\n\n\n<p><strong>Step-up licenses<\/strong>: Used when a customer has purchased a lower edition of an Online Service but then wants to make use of a higher edition. Find out more general information about step-up licenses <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-online-services\/types-of-online-services-user-sls\/\">here<\/a>, and specific information for <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/office-365-plans\/step-up-licenses\/\">Office 365<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-plans-for-enterprise-users\/step-up-licenses\/\">Microsoft 365<\/a>, and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/ems-plans\/step-up-licenses\/\">EMS<\/a>.<\/p>\n\n\n\n<p><strong>Subscriptions (Azure)<\/strong>: Containers to which resources are assigned as they are created. Learn about the structure of an Azure Subscription <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-consumption-services\/azure-subscriptions\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Subscription Edition (SE)<\/strong>: The latest version of products such as Project Server and SharePoint Server.<\/p>\n\n\n\n<p><strong>Supply Chain Management (SCM)<\/strong>: See Dynamics 365 Supply Chain Management.<\/p>\n\n\n\n<p><strong>System Center<\/strong>: A suite of management tools for both desktop and server solutions. Learn about the licensing of System Center for <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/system-center-2022-servers\/licensing-system-center-2022-for-servers\/\">servers<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/system-center-2022-clients\/licensing-system-center-2022-for-clients\/\">clients<\/a>.<\/p>\n\n\n\n<p><strong>System Center Configuration Manager (SCCM)<\/strong>: The previous name of Microsoft Endpoint Configuration Manager.<\/p>\n\n\n\n<p><strong>System Center Endpoint Protection (SCEP)<\/strong>: An antimalware and endpoint protection product that is part of Microsoft Endpoint Configuration Manager. Learn about licensing Microsoft Endpoint Configuration Manager <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-intune\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>TAC<\/strong>: Teams Admin Center.<\/p>\n\n\n\n<p><strong>TCO<\/strong>: Total Cost of Ownership.<\/p>\n\n\n\n<p><strong>Team Explorer<\/strong>: A component of Visual Studio for connecting to the Azure DevOps service or Azure DevOps Server.<\/p>\n\n\n\n<p><strong>Team Explorer Everywhere (TEE)<\/strong>: A tool to connect to Azure DevOps Server from an Eclipse-based environment.<\/p>\n\n\n\n<p><strong>Team Foundation Server (TFS)<\/strong>: The previous name of Azure DevOps Server.<\/p>\n\n\n\n<p><strong>Team Members license<\/strong>: A license for users who need light access to the Dynamics 365 tools. Learn about the licensing of Team Members for the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-crm-apps\/team-members-licenses\/\">CRM apps<\/a>, the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-erp-apps\/team-members-licenses\/\">ERP apps<\/a>, and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-business-central\/business-central-team-members-license\/\">Business Central<\/a>.<\/p>\n\n\n\n<p><strong>Teams<\/strong>: A unified app for real-time communication and collaboration that combines chat, meetings, video conferences, file sharing, and integration with third-party applications. It\u2019s available as a standalone license or included with some Office 365\/Microsoft 365 plans. Learn about licensing Teams <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-apps\/microsoft-teams\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Teams Display<\/strong>: A category of all-in-one dedicated Teams devices, useful for hot-desking environments. Learn about the licensing of Teams Displays <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/teams-devices\/teams-shared-devices-license\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Teams Free<\/strong>: The name Microsoft give to the free Teams experience that replaces the original consumer Skype client.<\/p>\n\n\n\n<p><strong>Teams Live Events<\/strong>: A way of broadcasting video and meeting content to large online audiences using Teams. The precursor to Teams Town Halls.<\/p>\n\n\n\n<p><strong>Teams Panel<\/strong>: A small screen outside a shared space from which you can check availability and reserve the space. Learn about the licensing of Teams Panels <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/teams-devices\/teams-shared-devices-license\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Teams Phone<\/strong>: Microsoft\u2019s cloud PBX service. Learn about Teams Calling <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/teams-calling\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Teams Phone Standard<\/strong>: A license for Microsoft\u2019s cloud PBX service where you bring your own calling plan working with a third-party provider. Learn about the licensing of Teams Phone Standard <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/teams-calling\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Teams Phone with Calling Plan<\/strong>: A license for Microsoft\u2019s cloud PBX service which includes calling minutes provided by Microsoft. Learn about the licensing of Teams Phone with Calling Plan <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/teams-calling\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Teams Premium<\/strong>: An Add-on license to a base Teams license giving advanced meeting and webinar features. Learn about licensing Teams Premium <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/teams-meetings\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Teams Rooms<\/strong>: See Microsoft Teams Rooms.<\/p>\n\n\n\n<p><strong>Teams Shared Devices<\/strong>: A license for devices shared by multiple users such as phones in a reception area, or a Teams Panel. Learn about using the Teams Shared Devices license <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/teams-devices\/teams-shared-devices-license\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Teams Town Halls<\/strong>: A way of broadcasting video and meeting content to large online audiences using Teams. Learn about licensing Teams Town Halls <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/teams-meetings\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>TEE<\/strong>: Team Explorer Everywhere.<\/p>\n\n\n\n<p><strong>Tenant External Recipient Rate Limit (TERRL)<\/strong>: The number of emails that may be sent via Exchange Online in a 24-hour rolling window.<\/p>\n\n\n\n<p><strong>Tenant-level services<\/strong>: An Online Service that when it\u2019s purchased for any user in the tenant is activated in part or in full for all users in the tenant. Find out more about licensing tenant-level services <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-online-services\/tenant-level-services\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Terminal Services<\/strong>: The previous name of Remote Desktop Services.<\/p>\n\n\n\n<p><strong>TERRL<\/strong>: Tenant External Recipient Rate Limit.<\/p>\n\n\n\n<p><strong>Text-To-Speech<\/strong>: An Azure service that turns written text into spoken words using synthesized speech \u2013 the artificial production of human speech using computer algorithms. Learn about the licensing of Azure consumption services <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-consumption-services\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>TFS<\/strong>: Team Foundation Server.<\/p>\n\n\n\n<p><strong>TI<\/strong>: Threat Intelligence.<\/p>\n\n\n\n<p><strong>TOU<\/strong>: Terms Of Use.<\/p>\n\n\n\n<p><strong>Training Vouchers<\/strong>: A Software Assurance benefit retired by Microsoft in 2021.<\/p>\n\n\n\n<p><strong>True down<\/strong>: The process of reducing the number of licenses or subscription quantities in a Volume Licensing agreement, typically at the time of anniversary or renewal. Learn about True Down orders in the Enterprise Subscription Enrollment <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-on-premises-products-ea\/enterprise-subscription-enrollment\/annual-orders\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>True up<\/strong>: The process of increasing the number of licenses or subscription quantities in a Volume Licensing agreement, typically at the time of anniversary or renewal. Learn about True Up orders in the Enterprise Agreement <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-on-premises-products-ea\/enterprise-enrollment\/true-up-orders\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>TSI<\/strong>: Tech for Social Impact.<\/p>\n\n\n\n<p><strong>TTS<\/strong>: Text-To-Speech.<\/p>\n\n\n\n<p><strong>UEBA<\/strong>: User and Entity Behavior Analytics.<\/p>\n\n\n\n<p><strong>UEM<\/strong>: Unified Endpoint Management.<\/p>\n\n\n\n<p><strong>Unified Operations Plan<\/strong>: See Dynamics 365 Unified Operations Plan.<\/p>\n\n\n\n<p><strong>Unified Service Desk (USD)<\/strong>: Part of the Dynamics 365 Customer Service solution which enables organizations to quickly build applications for call centers so that agents can get a unified view of customer data. Learn about the licensing of Unified Service Desk <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/dynamics-365-crm-apps\/included-rights-and-entitlements-for-other-dynamics-apps\/customer-service\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Update Channels<\/strong>: The cadence of feature and non-security updates for products. Find out more about the update channels for the <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-apps\/update-channels\/\">Microsoft 365 Apps<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-project\/\">Microsoft Project<\/a>, and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/visio-online\/update-channels\/\">Visio Online<\/a>.<\/p>\n\n\n\n<p><strong>Up-To-Date discount (UTD)<\/strong>: A discount in the OVS program for customers who have existing licenses for one of the Enterprise Products. Learn about the Up-To-Date discount in OVS <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/buying-on-premises-products-open-programs\/open-value-subscription\/up-to-date-discount-utd\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>USD<\/strong>: Unified Service Desk.<\/p>\n\n\n\n<p><strong>User SL<\/strong>: User Subscription License.<\/p>\n\n\n\n<p><strong>UTD<\/strong>: Up-To-Date discount.<\/p>\n\n\n\n<p><strong>User Subscription License<\/strong>: A non-perpetual license assigned to a single, named user, typically for an Online Services product. Learn about licensing the Online Services <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-online-services\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>vCore size flexibility<\/strong>: A feature available for Reserved Capacity which enables customers to scale up or down. Learn about vCore size flexibility <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-reservations\/azure-sql-reserved-capacity\/vcore-size-flexibility\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>VDA<\/strong>: Virtual Desktop Access.<\/p>\n\n\n\n<p><strong>VDI<\/strong>: Virtual Desktop Infrastructure.<\/p>\n\n\n\n<p><strong>VECD<\/strong>: Virtual Enterprise Centralized Desktop.<\/p>\n\n\n\n<p><strong>Virtual Desktop Access (VDA)<\/strong>: A license to allow access to a Windows virtual desktop from a device which does not have a Qualifying Operating System. Learn about licensing virtual desktops <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-11-user\/licensing-virtual-desktops\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Virtual Desktop Infrastructure (VDI)<\/strong>: A technology solution that hosts desktops on a central server allowing users to remotely access their virtual desktops from any device. Learn about licensing on-premises VDI solutions with <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-11-device\/licensing-a-virtual-desktop-infrastructure\/\">Windows 11 device<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-11-user\/licensing-virtual-desktops\/\">Windows 11 user<\/a> licenses, or cloud solutions with <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/azure-virtual-desktop\/\">Azure Virtual Desktop<\/a> or <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-365\/\">Windows 365<\/a>.<\/p>\n\n\n\n<p><strong>Virtual Enterprise Centralized Desktop (VECD)<\/strong>: The previous name of Virtual Desktop Access (VDA).<\/p>\n\n\n\n<p><strong>Virtual machine (VM)<\/strong>: A software-based imitation of a physical computer which runs an operating system and applications like a physical computer, but within a software environment. Learn about licensing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-server-2025\/licensing-windows-server-2025\/licensing-virtual-machines\/\">Windows Server<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/sql-server-2022\/licensing-sql-server-2022\/licensing-virtual-machines\/\">SQL Server<\/a> in virtual machines.<\/p>\n\n\n\n<p><strong>Virtual Operating System Environment (VOSE)<\/strong>: When an operating system, such as Windows Server or Windows 11, runs inside a virtual machine, rather than directly on physical hardware. Learn about licensing <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-server-2025\/licensing-windows-server-2025\/licensing-virtual-machines\/\">Windows Server<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/sql-server-2022\/licensing-sql-server-2022\/licensing-virtual-machines\/\">SQL Server<\/a> in virtual machines.<\/p>\n\n\n\n<p><strong>Visio<\/strong>: A tool for creating business diagrams. Learn about the licensing of <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/visio-2024\/\">Visio LTSC 2024<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/visio-online\/licensing-visio-online\/\">Visio Online<\/a>.<\/p>\n\n\n\n<p><strong>Visual Studio<\/strong>: Microsoft\u2019s Integrated Development Environment (IDE) tool. Learn about the licensing of Visual Studio <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-the-developer-tools-2\/visual-studio-2022-cloud-subscriptions\/\">Cloud subscriptions<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/licensing-the-developer-tools-2\/visual-studio-2022-standard-subscriptions\/\">Standard subscriptions<\/a>.<\/p>\n\n\n\n<p><strong>Visual Studio Code<\/strong>: Microsoft\u2019s free, lightweight code editor for developers.<\/p>\n\n\n\n<p><strong>Visual Studio Marketplace<\/strong>: A portal where you can purchase Visual Studio Cloud subscriptions. Learn more about licensing Visual Studio Cloud subscriptions <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/visual-studio-2022-2\/buying-visual-studio-2022-cloud-subscriptions\/?attr=buying-visual-studio-2022-cloud-subscriptions-2033\">here<\/a>.<\/p>\n\n\n\n<p><strong>Visual Studio Team Explorer<\/strong>: A component of Visual Studio for connecting to the Azure DevOps service or Azure DevOps Server.<\/p>\n\n\n\n<p><strong>Visual Studio Team Explorer Everywhere<\/strong>: A tool to connect to Azure DevOps Server from an Eclipse-based environment.<\/p>\n\n\n\n<p><strong>Visual Studio Team Foundation Server<\/strong>: The previous name of Azure DevOps Server.<\/p>\n\n\n\n<p><strong>Viva<\/strong>: Microsoft\u2019s Employee Experience Platform (EXP) solution, designed to improve the overall employee experience with an integrated set of modules which enhance employee engagement, productivity, and well-being. Learn about licensing the Viva modules <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/viva\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Viva Amplify<\/strong>: A campaign management and publishing tool within Teams to help leaders and corporate communicators get their message across and energize their people. Learn about licensing Viva Amplify <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/viva\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Viva Connections<\/strong>: A product that consolidates personalized corporate news, conversations, information, tasks, and useful resources for employees into a single hub within Teams. Learn about licensing Viva Connections <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/viva\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Viva Employee Communications and Communities<\/strong>: A suite of Viva employee experience products comprising Viva Connections, Viva Engage and Viva Amplify. Learn about licensing Viva Employee Communications and Communities <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/viva\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Viva Engage<\/strong>: An enterprise social platform that connects employees and fosters engagement within organizations. Viva Engage replaces and was built on the foundation of Yammer Communities. Learn about licensing Viva Engage <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/viva\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Viva Glint<\/strong>: A company-wide survey tool for measuring employee satisfaction and well-being capturing feedback from across the enterprise. Learn about licensing Viva Glint <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/viva\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Viva Goals<\/strong>: A Microsoft Teams or web app that enables business goal setting promoting employee alignment with business priorities via the OKR (Objectives and Key Results) framework. It was retired on December 31, 2025. Learn about licensing Viva Goals <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/viva\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Viva Insights<\/strong>: A product for improving employee productivity and wellbeing that helps manage their time for breaks, focused work, and learning. Core features originate from Microsoft MyAnalytics and Workplace Analytics. Learn about licensing Viva Insights <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/viva\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Viva Learning<\/strong>: A product that enables employees to access training and knowledge base modules all in one place within Teams, aggregated from various sources including Microsoft Learn, third parties and an organization\u2019s own content. Learn about licensing Viva Learning <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/viva\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Viva Pulse<\/strong>: A survey tool for managers to quickly gather insights and ad-hoc feedback from their direct reports or specific business units to gauge worker productivity and sentiment. Learn about licensing Viva Pulse <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/viva\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Viva Sales<\/strong>: The previous name of Sales Copilot.<\/p>\n\n\n\n<p><strong>Viva Suite<\/strong>: A plan that comprises Viva Connections, Viva Engage, Viva Amplify, Viva Insights, Viva Glint, Viva Pulse, Viva Goals and Viva Learning, offering a significant discount compared to buying each module individually. Learn about licensing the Viva Suite <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/viva\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Viva Topics<\/strong>: A product that applies AI to organize and structure knowledge within an organization\u2019s Microsoft 365 environment into topic pages. This module is being deprecated and will be <a href=\"https:\/\/learn.microsoft.com\/en-us\/microsoft-365\/topics\/changes-coming-to-topics?view=o365-worldwide\">retired<\/a> in February 2025.<\/p>\n\n\n\n<p><strong>Viva Workplace Analytics and Employee Feedback<\/strong>: A suite of Viva employee experience products comprising Viva Insights, Viva Glint and Viva Pulse. Learn about licensing Viva Workplace Analytics and Employee Feedback <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/viva\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>VLK<\/strong>: Volume License Key.<\/p>\n\n\n\n<p><strong>VLSC<\/strong>: Volume Licensing Service Center.<\/p>\n\n\n\n<p><strong>VM<\/strong>: Virtual machine.<\/p>\n\n\n\n<p><strong>Volume Licensing agreement<\/strong>: Terms and conditions that set out how an organization can efficiently and cost-effectively purchase licenses for multiple users and computers. Today there are five Volume Licensing agreements aimed at commercial customers: Open Value (Organization-Wide or non Organization-Wide), Open Value Subscription, the Enterprise Agreement, MPSA, and Select Plus.<\/p>\n\n\n\n<p><strong>Volume Licensing Service Center (VLSC)<\/strong>: The original portal for customers with a Volume Licensing agreement to, for example, download software and manage SA benefits. Retired by Microsoft in April 2024 in favor of the Microsoft 365 Admin Center.<\/p>\n\n\n\n<p><strong>VOSE<\/strong>: Virtual Operating System Environment.<\/p>\n\n\n\n<p><strong>W365<\/strong>: Windows 365.<\/p>\n\n\n\n<p><strong>WDP<\/strong>: Workplace Discount Program.<\/p>\n\n\n\n<p><strong>Web Direct<\/strong>: A term Microsoft sometimes use for a customer who is buying via the Microsoft website and who has accepted the terms of the MOSA.<\/p>\n\n\n\n<p><strong>Windows 11 Enterprise LTSC 2024<\/strong>: The Long-Term Servicing Channel edition of Windows for which there is a new release every two or three years. Learn about the licensing of Windows 11 Enterprise LTSC 2024 <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-11-device\/servicing-channels\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Windows 365<\/strong>: Microsoft\u2019s Cloud PC solution providing users with their own personal Windows desktop running in the cloud. Learn about the licensing of Windows 365 <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-365\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Windows 365 Boot<\/strong>: Allows administrators to configure Windows 11 physical devices so that users avoid signing in to their physical device and sign in directly to their Windows 365 Cloud PC on the physical device. Learn about the licensing of Windows 365 <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-365\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Windows 365 Cloud Apps<\/strong>: Allows administrators to give users access to specific apps delivered from the cloud instead of a full Cloud PC. Learn about the licensing of Windows 365 <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-365\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Windows 365 Cross Region Disaster Recovery<\/strong>: An add-on product for Windows 365 that protects against regional outages by creating a temporary copy of users\u2019 Cloud PCs in another geographic region. Learn about the licensing of Windows 365 for disaster recovery <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-365\/disaster-recovery\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Windows 365 Disaster Recovery Plus<\/strong>: An add-on product for Windows 365 Enterprise that protects against regional outages by creating a temporary copy of users\u2019 Cloud PCs in another geographic region. Learn about the licensing of Windows 365 for disaster recovery <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-365\/disaster-recovery\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Windows 365 Link<\/strong>: A Cloud PC device purpose-built by Microsoft to connect in a speedy and secure way to Windows 365. Learn about licensing Windows 365 Link <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-365\/windows-365-link\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Windows 365 Reserve<\/strong>: A business continuity solution that provides licensed users with instant access to a temporary, pre-configured Cloud PC when their primary device becomes unavailable. Learn about the licensing of Windows 365 for disaster recovery <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-365\/disaster-recovery\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Windows 365 Switch<\/strong>: A facility that allows users to switch between their Windows 365 Cloud PC and their physical device using the Windows 11 Task View. Learn about the licensing of Windows 365 <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-365\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Windows Azure<\/strong>: The original name of Azure.<\/p>\n\n\n\n<p><strong>Windows Backup for Organizations<\/strong>: Technology that enables you to backup and restore Windows 10 or Windows 11 settings if you\u2019re reimaging or resetting a device.<\/p>\n\n\n\n<p><strong>Windows Hybrid Benefit<\/strong>: A licensing benefit that reduces the cost of a Windows 365 Business license, available to customers who have devices running Windows 10\/11 Pro. Learn more about the Windows Hybrid Benefit <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-365\/windows-hybrid-benefit\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Windows Multipoint Server<\/strong>: A flavor of Windows Server that multiple users can access, each having their own unique Windows session, managed via MultiPoint Services. Originally for educational institutions, it supports multiple monitors, keyboard and mouse peripherals. Learn about the licensing of Windows Server <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-server-2025\/licensing-windows-server-2025\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Windows Server<\/strong>: Microsoft\u2019s server operating system. Learn about the licensing of Windows Server <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-server-2025\/licensing-windows-server-2025\/\">on-premises<\/a> and in <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/windows-server-2025\/licensing-windows-server-2025\/licensing-virtual-machines\/\">virtual machines<\/a>.<\/p>\n\n\n\n<p><strong>Windows Server<\/strong>: Azure edition: An edition of Windows Server optimized to run on Azure. Learn about the licensing of Windows Server: Azure edition here.<\/p>\n\n\n\n<p><strong>Windows To Go (WTG)<\/strong>: A deployment option for Windows on a USB drive, retired by Microsoft in 2020.<\/p>\n\n\n\n<p><strong>Windows Update Client Policies<\/strong>: A service that keeps Windows client devices up to date with the latest security updates and Windows features.<\/p>\n\n\n\n<p><strong>Windows Update for Business<\/strong>: The previous name of Windows Update Client Policies.<\/p>\n\n\n\n<p><strong>Windows Virtual Desktop (WVD)<\/strong>: The previous name of Azure Virtual Desktop.<\/p>\n\n\n\n<p><strong>Work at Home licenses<\/strong>: : A license to allow users to install software on their home devices. Learn about Work at Home licenses <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/office-ltsc-2024\/work-at-home-licenses\/\">here<\/a>.<\/p>\n\n\n\n<p><strong>Workplace Discount Program (WDP)<\/strong>: Rights to purchase licenses for use at home. Learn about the Workplace Discount Program for <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/office-ltsc-2024\/workplace-discount-program\/\">Office 2024<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/project-2024\/workplace-discount-program\/\">Project 2024<\/a>, <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/visio-2024\/workplace-discount-program\/\">Visio 2024<\/a> and <a href=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/microsoft-365-plans-for-enterprise-users\/workplace-discount-program\/\">Microsoft 365 Enterprise<\/a>. The Workplace Discount Program was previously known as the Home Use Program.<\/p>\n\n\n\n<p><strong>WTG<\/strong>: Windows To Go.<\/p>\n\n\n\n<p><strong>WVD<\/strong>: Windows Virtual Desktop.<\/p>\n\n\n\n<p><strong>XDR<\/strong>: Extended Detection and Response.<\/p>\n\n\n\n<p><strong>Yammer<\/strong>: The previous name of Viva Engage.<\/p>\n","protected":false},"featured_media":0,"parent":0,"menu_order":1,"template":"custom-single.php","lesson_category":[57],"class_list":["post-4692","lessons","type-lessons","status-publish","hentry","lesson_category-free-resources","entry","no-media"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Glossary - LicenseVerse<\/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:\/\/www.licensingschool.co.uk\/licenseverse\/glossary\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Glossary - LicenseVerse\" \/>\n<meta property=\"og:description\" content=\"&times; _ Memory Lane View only legacy and retired products Definition of the Day Welcome to Memory Lane, where you&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.licensingschool.co.uk\/licenseverse\/glossary\/\" \/>\n<meta property=\"og:site_name\" content=\"LicenseVerse\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-07T19:45:56+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"93 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.licensingschool.co.uk\/licenseverse\/glossary\/\",\"url\":\"https:\/\/www.licensingschool.co.uk\/licenseverse\/glossary\/\",\"name\":\"Glossary - LicenseVerse\",\"isPartOf\":{\"@id\":\"https:\/\/www.licensingschool.co.uk\/licenseverse\/#website\"},\"datePublished\":\"2025-06-17T13:06:56+00:00\",\"dateModified\":\"2026-04-07T19:45:56+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.licensingschool.co.uk\/licenseverse\/glossary\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.licensingschool.co.uk\/licenseverse\/glossary\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.licensingschool.co.uk\/licenseverse\/glossary\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.licensingschool.co.uk\/licenseverse\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Glossary\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.licensingschool.co.uk\/licenseverse\/#website\",\"url\":\"https:\/\/www.licensingschool.co.uk\/licenseverse\/\",\"name\":\"LicenseVerse\",\"description\":\"Microsoft Licensing Explained\",\"publisher\":{\"@id\":\"https:\/\/www.licensingschool.co.uk\/licenseverse\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.licensingschool.co.uk\/licenseverse\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.licensingschool.co.uk\/licenseverse\/#organization\",\"name\":\"LicenseVerse\",\"url\":\"https:\/\/www.licensingschool.co.uk\/licenseverse\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/www.licensingschool.co.uk\/licenseverse\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.licensingschool.co.uk\/licenseverse\/wp-content\/uploads\/sites\/4\/2023\/10\/Licensing-Verse_101023-01.png\",\"contentUrl\":\"https:\/\/www.licensingschool.co.uk\/licenseverse\/wp-content\/uploads\/sites\/4\/2023\/10\/Licensing-Verse_101023-01.png\",\"width\":906,\"height\":394,\"caption\":\"LicenseVerse\"},\"image\":{\"@id\":\"https:\/\/www.licensingschool.co.uk\/licenseverse\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Glossary - LicenseVerse","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:\/\/www.licensingschool.co.uk\/licenseverse\/glossary\/","og_locale":"en_GB","og_type":"article","og_title":"Glossary - LicenseVerse","og_description":"&times; _ Memory Lane View only legacy and retired products Definition of the Day Welcome to Memory Lane, where you&hellip;","og_url":"https:\/\/www.licensingschool.co.uk\/licenseverse\/glossary\/","og_site_name":"LicenseVerse","article_modified_time":"2026-04-07T19:45:56+00:00","twitter_card":"summary_large_image","twitter_misc":{"Estimated reading time":"93 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.licensingschool.co.uk\/licenseverse\/glossary\/","url":"https:\/\/www.licensingschool.co.uk\/licenseverse\/glossary\/","name":"Glossary - LicenseVerse","isPartOf":{"@id":"https:\/\/www.licensingschool.co.uk\/licenseverse\/#website"},"datePublished":"2025-06-17T13:06:56+00:00","dateModified":"2026-04-07T19:45:56+00:00","breadcrumb":{"@id":"https:\/\/www.licensingschool.co.uk\/licenseverse\/glossary\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.licensingschool.co.uk\/licenseverse\/glossary\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.licensingschool.co.uk\/licenseverse\/glossary\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.licensingschool.co.uk\/licenseverse\/"},{"@type":"ListItem","position":2,"name":"Glossary"}]},{"@type":"WebSite","@id":"https:\/\/www.licensingschool.co.uk\/licenseverse\/#website","url":"https:\/\/www.licensingschool.co.uk\/licenseverse\/","name":"LicenseVerse","description":"Microsoft Licensing Explained","publisher":{"@id":"https:\/\/www.licensingschool.co.uk\/licenseverse\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.licensingschool.co.uk\/licenseverse\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/www.licensingschool.co.uk\/licenseverse\/#organization","name":"LicenseVerse","url":"https:\/\/www.licensingschool.co.uk\/licenseverse\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.licensingschool.co.uk\/licenseverse\/#\/schema\/logo\/image\/","url":"https:\/\/www.licensingschool.co.uk\/licenseverse\/wp-content\/uploads\/sites\/4\/2023\/10\/Licensing-Verse_101023-01.png","contentUrl":"https:\/\/www.licensingschool.co.uk\/licenseverse\/wp-content\/uploads\/sites\/4\/2023\/10\/Licensing-Verse_101023-01.png","width":906,"height":394,"caption":"LicenseVerse"},"image":{"@id":"https:\/\/www.licensingschool.co.uk\/licenseverse\/#\/schema\/logo\/image\/"}}]}},"acf":[],"_links":{"self":[{"href":"https:\/\/www.licensingschool.co.uk\/licenseverse\/wp-json\/wp\/v2\/lessons\/4692","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.licensingschool.co.uk\/licenseverse\/wp-json\/wp\/v2\/lessons"}],"about":[{"href":"https:\/\/www.licensingschool.co.uk\/licenseverse\/wp-json\/wp\/v2\/types\/lessons"}],"version-history":[{"count":3,"href":"https:\/\/www.licensingschool.co.uk\/licenseverse\/wp-json\/wp\/v2\/lessons\/4692\/revisions"}],"predecessor-version":[{"id":11967,"href":"https:\/\/www.licensingschool.co.uk\/licenseverse\/wp-json\/wp\/v2\/lessons\/4692\/revisions\/11967"}],"wp:attachment":[{"href":"https:\/\/www.licensingschool.co.uk\/licenseverse\/wp-json\/wp\/v2\/media?parent=4692"}],"wp:term":[{"taxonomy":"lesson_category","embeddable":true,"href":"https:\/\/www.licensingschool.co.uk\/licenseverse\/wp-json\/wp\/v2\/lesson_category?post=4692"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}