[
  {
    "path": ".github/workflows/deploy.yml",
    "content": "name: Deploy VitePress site to Pages\n\non:\n  push:\n    branches: [main]\n  workflow_dispatch:\n\npermissions:\n  contents: read\n  pages: write\n  id-token: write\nconcurrency:\n  group: pages\n  cancel-in-progress: false\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v4\n        with:\n          fetch-depth: 0\n\n      - name: Setup Node\n        uses: actions/setup-node@v4\n        with:\n          node-version: 22\n          cache: npm\n\n      - name: Setup Pages\n        uses: actions/configure-pages@v4\n\n      - name: Install dependencies\n        run: npm install\n\n      - name: Build with VitePress\n        run: npm run build\n\n      - name: Upload artifact\n        uses: actions/upload-pages-artifact@v3\n        with:\n          path: docs/.vitepress/dist\n\n  deploy:\n    environment:\n      name: github-pages\n      url: ${{ steps.deployment.outputs.page_url }}\n    needs: build\n    runs-on: ubuntu-latest\n    name: Deploy\n    steps:\n      - name: Deploy to GitHub Pages\n        id: deployment\n        uses: actions/deploy-pages@v4\n"
  },
  {
    "path": ".gitignore",
    "content": "# Dependency directories\n**/node_modules/\npackage-lock.json\nyarn.lock\n\n\n# VitePress build outputs\ndocs/.vitepress/cache\ndocs/.vitepress/dist\n**/dist\n**/cache\n\n\n# IDE config files\n.vscode/\n.idea/\n.nojekyll\n\n\n# System files\n.DS_Store\nThumbs.db\n\n\n# Environment files\n.env\n.env.local\n"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2024 Ransomware Evil\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "# 🪟 Instant Windows and Office Activation: 40–Second Solution\n\n<br/>\n\n> [!NOTE]\n>\n> All-in One, This comprehensive guide walks you through reliable, open-source methods — like HWID, Online KMS, KMS38, Ohook, TSforge, and more to activate your **`Windows`** and **`Office`** safely and permanently in under 40-seconds. Includes troubleshooting tips and detailed comparisons.\n\n<hr/><br/>\n\n## 📚 Documentation\n\nFor the most up-to-date activation methods, check out the documentation:\n\n🇮🇷 [Persian – nirevil.github.io/windows-activation/fa][1]  \n\n🇦🇺 [English – nirevil.github.io/windows-activation][2]\n\n<br/>\n\n## Activation Methods Summary \n\n> For a quick overview, here is a summary of the activation methods available in MAS\n\n| **Activation Type** | **Supported Product** | **Activation Period**         | **Internet Needed?**  | **More Info** |\n|:---------------:|:----------------------:|:--------------------------------:|:---------------------:|:-------------:|\n|    **HWID**     | Windows 10-11          | Permanent                        | Yes                   | [Details][5]  |\n|     **KMS**     | Windows 10-11          | 180 Days                         | Yes                   | [Details][6]  |\n|    **Ohook**    | Office                 | Permanent                        | No                    | [Details][7]  |\n|   **TSforge**   | Windows / ESU / Office | Permanent                        | Yes (on build 19041+) | [Details][8]  |\n|    **KMS38**    | Windows 10-11-Server   | Until 2038                       | No                    | [Details][9]  |\n| **Online KMS**  | Windows / Office       | 180 Days (Lifetime with Renewal) | Yes                   | [Details][10] |\n\n<hr/><br/>\n\n## 🗂️ Legacy Documentation\n\nLooking for the original guide? The untouched legacy version is still available:\n\n🧩 [github.com/windows-activation/Old][3]\n\n<hr/><br/>\n\n## ⚠️ Disclaimer\n\nThis repository is intended **for educational purposes only**.  \n\nPlease ensure you comply with Microsoft’s licensing terms when activating Windows or Office.\n\n<hr/><br/>\n\n## 🌠 Need Help?\n\nOpen an issue or contribute to the repo — your feedback is welcome!\n\n<hr/><br/>\n\n### ✨ [Credits – Read Here][4]\n\n---\n\n[1]: https://nirevil.github.io/windows-activation/fa/\n[2]: https://nirevil.github.io/windows-activation/\n[3]: https://github.com/NiREvil/windows-activation/tree/Old\n[4]: https://NiREvil.github.io/windows-activation/wa/credits\n[5]: https://nirevil.github.io/windows-activation/wa/#method-1-permanent-activation-with-hwid\n[6]: https://nirevil.github.io/windows-activation/wa/kms\n[7]: https://nirevil.github.io/windows-activation/wa/ohook\n[8]: https://nirevil.github.io/windows-activation/wa/tsforge\n[9]: https://nirevil.github.io/windows-activation/wa/kms38\n[10]: https://nirevil.github.io/windows-activation/wa/online_kms\n"
  },
  {
    "path": "docs/.vitepress/config.ts",
    "content": "import { defineConfig } from 'vitepress';\nimport footnote from 'markdown-it-footnote';\nimport mathjax3 from 'markdown-it-mathjax3';\nimport attrs from 'markdown-it-attrs';\nimport { mermaid } from 'vitepress-plugin-mermaid';\nimport { tabsMarkdownPlugin } from 'vitepress-plugin-tabs';\n\nconst base = '/windows-activation/';\nconst siteUrl = `https://NiREvil.github.io${base}`;\n\nexport default defineConfig({\n  base: base,\n  cleanUrls: true,\n  ignoreDeadLinks: true,\n  lastUpdated: true,\n\n  head: [\n    ['link', { rel: 'icon', href: `${base}favicon.ico` }],\n    ['link', { rel: 'preconnect', href: 'https://fonts.googleapis.com' }],\n    ['link', { rel: 'preconnect', href: 'https://fonts.gstatic.com', crossorigin: '' }],\n    [\n      'link',\n      {\n        href: 'https://fonts.googleapis.com/css2?family=Vazirmatn:wght@100..900&display=swap',\n        rel: 'stylesheet',\n      },\n    ],\n    ['meta', { name: 'theme-color', content: '#5f67ee' }],\n    [\n      'link',\n      { rel: 'stylesheet', href: 'https://unpkg.com/video.js@8.17.4/dist/video-js.min.css' },\n    ],\n    ['script', { src: 'https://unpkg.com/video.js@8.17.4/dist/video.min.js' }],\n    [\n      'style',\n      {},\n      `\n      .video-js {\n        width: 100%;\n        max-width: 960px;\n        height: auto;\n        aspect-ratio: 16/9;\n      }\n    `,\n    ],\n  ],\n\n  markdown: {\n    config: md => {\n      md.use(footnote);\n      md.use(mathjax3);\n      md.use(attrs);\n      md.use(tabsMarkdownPlugin);\n    },\n    lineNumbers: true,\n  },\n\n  mermaid: {},\n\n  locales: {\n    root: {\n      label: 'English',\n      lang: 'en-US',\n      dir: 'ltr',\n      title: 'Freedom to Dream',\n      description: 'Instant Windows & Office Activation: 40–Second Solution',\n      themeConfig: {\n        logo: '/logo-h.svg',\n        nav: [\n          { text: '🏠 Home', link: '/' },\n          { text: '📚 Docs', link: '/wa/' },\n          { text: '⚙️ FAQ', link: '/wa/faq' },\n        ],\n        sidebar: {\n          '/wa/': [\n            {\n              text: 'Activation Guides',\n              collapsed: false,\n              items: [\n                { text: 'HWID Activation', link: '/wa/' },\n                { text: 'KMS Activation', link: '/wa/kms' },\n                { text: 'Methods Chart', link: '/wa/chart' },\n                { text: 'Download Windows / Office', link: '/wa/genuine-installation-media' },\n              ],\n            },\n            {\n              text: 'Activation Methods',\n              collapsed: true,\n              items: [\n                { text: 'HWID Method Details', link: '/wa/hwid' },\n                { text: 'Ohook Method Details', link: '/wa/ohook' },\n                { text: 'TSforge Method Details', link: '/wa/tsforge' },\n                { text: 'KMS38 Method Details', link: '/wa/kms38' },\n                { text: 'Online KMS Method Details', link: '/wa/online_kms' },\n                { text: 'Change Windows Edition', link: '/wa/change_windows_edition' },\n                { text: 'Change Office Edition', link: '/wa/change_office_edition' },\n                { text: '$OEM$ Folders', link: '/wa/oem-folder' },\n                { text: 'Switches in Command line', link: '/wa/command_line_switches' },\n              ],\n            },\n            {\n              text: 'Technical Details',\n              collapsed: true,\n              items: [\n                { text: 'Win 10 After End-Of-Life', link: '/wa/windows10_eol' },\n                { text: 'Remove Malware', link: '/wa/remove_malware' },\n                { text: 'Clean Install Windows', link: '/wa/clean_install_windows' },\n                {\n                  text: 'Office License Is Not Genuine',\n                  link: '/wa/office-license-is-not-genuine',\n                },\n                { text: 'Licensing Servers Issue', link: '/wa/licensing-servers-issue' },\n                {\n                  text: 'Issues Due To Gaming Spoofers',\n                  link: '/wa/issues_due_to_gaming_spoofers',\n                },\n                { text: 'Change Edition Issues', link: '/wa/change_edition_issues' },\n                { text: 'Evaluation Editions', link: '/wa/evaluation_editions' },\n                { text: 'Fix Powershell', link: '/wa/fix_powershell' },\n                { text: 'Fix Windows Services', link: '/wa/fix_service' },\n                { text: 'Fix WPA Registry', link: '/wa/fix-wpa-registry' },\n                { text: 'In-place Repair Upgrade', link: '/wa/in-place_repair_upgrade' },\n                { text: 'Office c2r Custom Install', link: '/wa/office_c2r' },\n              ],\n            },\n            {\n              text: 'Manual Activation Guides',\n              collapsed: true,\n              items: [\n                { text: 'Manual HWID activation', link: '/wa/manual_hwid_activation' },\n                { text: 'Manual Ohook activation', link: '/wa/manual_ohook_activation' },\n                { text: 'Manual KMS38 activation', link: '/wa/manual_kms38_activation' },\n              ],\n            },\n            {\n              text: 'Support',\n              collapsed: true,\n              items: [\n                { text: 'Troubleshoot', link: '/wa/troubleshoot' },\n                { text: 'FAQ', link: '/wa/faq' },\n                { text: 'Credits', link: '/wa/credits' },\n              ],\n            },\n          ],\n        },\n        search: { provider: 'local' },\n        docFooter: { prev: 'Previous page', next: 'Next page' },\n        lastUpdated: {\n          text: 'Last updated',\n          formatOptions: { dateStyle: 'medium', timeStyle: 'short' },\n        },\n        editLink: {\n          pattern: 'https://github.com/NiREvil/windows-activation/edit/main/docs/:path',\n          text: 'Edit this page on GitHub',\n        },\n        socialLinks: [\n          { icon: 'github', link: 'https://github.com/NiREvil/' },\n          { icon: 'telegram', link: 'https://t.me/F_NiREvil/6448' },\n        ],\n        footer: {\n          copyright: '© 2025 REvil — Sharing knowledge, one note at a time',\n          message: 'Made with using VitePress',\n        },\n      },\n    },\n    fa: {\n      label: 'فارسی',\n      lang: 'fa-IR',\n      dir: 'rtl',\n      title: '',\n      description: '‌فعال‌سازی فوری ویندوز و آفیس: راه حل ۴۰ ثانیه‌ای',\n      themeConfig: {\n        logo: '/logo-h.svg',\n        nav: [\n          { text: '🏠 خانه', link: '/fa/' },\n          { text: '📚 مستندات', link: '/fa/wa/' },\n          { text: '⚙️ سوالات متداول', link: '/fa/wa/faq' },\n        ],\n        sidebar: {\n          '/fa/wa/': [\n            {\n              text: 'راهنمای فعال‌سازی',\n              collapsed: false,\n              items: [\n                { text: 'فعال‌سازی با روش HWID', link: '/fa/wa/' },\n                { text: 'فعال‌سازی با روش KMS', link: '/fa/wa/kms' },\n                { text: 'مقایسه انواع روش‌ها', link: '/fa/wa/chart' },\n                { text: 'دانلود ویندوز – آفیس', link: '/fa/wa/genuine-installation-media' },\n              ],\n            },\n            {\n              text: 'روش‌های فعال‌سازی',\n              collapsed: true,\n              items: [\n                { text: 'جزئیات روش HWID', link: '/fa/wa/hwid' },\n                { text: 'جزئیات روش Ohook', link: '/fa/wa/ohook' },\n                { text: 'جزئیات روش TSforge', link: '/fa/wa/tsforge' },\n                { text: 'جزئیات روش KMS38', link: '/fa/wa/kms38' },\n                { text: 'جزئیات روش Online KMS', link: '/fa/wa/online_kms' },\n                { text: 'تغییر نسخه ویندوز', link: '/fa/wa/change_windows_edition' },\n                { text: 'تغییر نسخه آفیس', link: '/fa/wa/change_office_edition' },\n                { text: 'پوشه‌های $OEM$', link: '/fa/wa/oem-folder' },\n                { text: 'سوئیچ‌ها در خط فرمان', link: '/fa/wa/command_line_switches' },\n              ],\n            },\n            {\n              text: 'جزئیات فنی',\n              collapsed: true,\n              items: [\n                { text: 'ویندوز ۱۰ بعد از پایان پشتیبانی', link: '/fa/wa/windows10_eol' },\n                { text: 'حذف بدافزارها', link: '/fa/wa/remove_malware' },\n                { text: 'نصب تمیز و اصولی ویندوز', link: '/fa/wa/clean_install_windows' },\n                { text: 'لایسنس آفیس اصل نیست', link: '/fa/wa/office-license-is-not-genuine' },\n                { text: 'مشکل سرورهای لایسنس', link: '/fa/wa/licensing-servers-issue' },\n                {\n                  text: 'مشکلات ناشی از اسپوفرهای گیم',\n                  link: '/fa/wa/issues_due_to_gaming_spoofers',\n                },\n                { text: 'مشکلات تغییر نسخه', link: '/fa/wa/change_edition_issues' },\n                { text: 'نسخه‌های ارزیابی', link: '/fa/wa/evaluation_editions' },\n                { text: 'رفع مشکل پاورشل', link: '/fa/wa/fix_powershell' },\n                { text: 'رفع مشکل سرویس‌های ویندوز', link: '/fa/wa/fix_service' },\n                { text: 'رفع مشکل رجیستری WPA', link: '/fa/wa/fix-wpa-registry' },\n                { text: 'آپگرید تعمیری در محل', link: '/fa/wa/in-place_repair_upgrade' },\n                { text: 'نصب سفارشی Office c2r', link: '/fa/wa/office_c2r' },\n              ],\n            },\n            {\n              text: 'راهنمای فعال‌سازی دستی',\n              collapsed: true,\n              items: [\n                { text: 'نصب دستی HWID', link: '/fa/wa/manual_hwid_activation' },\n                { text: 'نصب دستی Ohook', link: '/fa/wa/manual_ohook_activation' },\n                { text: 'نصب دستی KMS38', link: '/fa/wa/manual_kms38_activation' },\n              ],\n            },\n            {\n              text: 'پشتیبانی',\n              collapsed: true,\n              items: [\n                { text: 'گزارش مشکلات', link: '/fa/wa/troubleshoot' },\n                { text: 'سوالات متداول', link: '/fa/wa/faq' },\n                { text: 'منابع', link: '/fa/wa/credits' },\n              ],\n            },\n          ],\n        },\n        editLink: {\n          pattern: 'https://github.com/NiREvil/windows-activation/edit/main/docs/:path',\n          text: 'این صفحه را در گیت‌هاب ویرایش کنید',\n        },\n        docFooter: { prev: 'صفحه قبلی', next: 'صفحه بعدی' },\n        lastUpdated: { text: 'آخرین بروزرسانی' },\n      },\n    },\n  },\n\n  vite: {\n    optimizeDeps: {\n      exclude: ['video.js'],\n    },\n  },\n});\n"
  },
  {
    "path": "docs/.vitepress/posts.data.js",
    "content": "import { createContentLoader } from 'vitepress'\n\nconst base = '/windows-activation/';\nconst EXCERPT_MAX_LENGTH = 150;\nconst MAX_POSTS_PER_LANG = 5;\nconst MAX_TOTAL_POSTS = 10;\n\nfunction stripHtmlAndTruncate(html, maxLength) {\n  if (!html) return '';\n  let text = html\n    .replace(/<\\/?[^>]+(>|$)/g, \"\")\n    .replace(/&ZeroWidthSpace;|&nbsp;/gi, ' ')\n    .replace(/\\s\\s+/g, ' ')\n    .trim();\n  return text.length > maxLength ? text.substring(0, maxLength) + '...' : text;\n}\n\nfunction formatDate(raw, lang = 'en') {\n  const date = raw ? new Date(raw) : new Date();\n  if (isNaN(date.getTime())) return { time: 0, string: 'N/A' };\n\n  const locale = lang === 'fa' ? 'fa-IR' : 'en-US';\n  const options = {\n    year: 'numeric',\n    month: 'long',\n    day: 'numeric'\n  };\n\n  return {\n    time: +date,\n    string: date.toLocaleDateString(locale, options)\n  };\n}\n\nexport default createContentLoader(['fa/wa/*.md', 'wa/*.md'], {\n  excerpt: true,\n  transform(raw) {\n    const sortedPosts = raw\n      .filter(({ frontmatter }) => frontmatter?.title)\n      .map(({ url, frontmatter, excerpt }) => {\n        const lang = url.includes('/fa/wa/') ? 'fa' : 'en';\n\n        return {\n          title: frontmatter.title,\n          url: `${base}${url.startsWith('/wa') ? url.substring(1) : url}`,\n          excerpt: stripHtmlAndTruncate(frontmatter.description || excerpt, EXCERPT_MAX_LENGTH),\n          date: formatDate(frontmatter.date, lang),\n          lang\n        };\n      })\n      .sort((a, b) => b.date.time - a.date.time);\n\n    const faPosts = sortedPosts.filter(post => post.lang === 'fa').slice(0, MAX_POSTS_PER_LANG);\n    const enPosts = sortedPosts.filter(post => post.lang === 'en').slice(0, MAX_POSTS_PER_LANG);\n\n    return [...faPosts, ...enPosts]\n      .sort((a, b) => b.date.time - a.date.time)\n      .slice(0, MAX_TOTAL_POSTS);\n  }\n});\n"
  },
  {
    "path": "docs/.vitepress/theme/index.js",
    "content": "import DefaultTheme from 'vitepress/theme'\nimport './styles.css'\nimport './vars.css'\nimport 'viewerjs/dist/viewer.min.css'\nimport imageViewer from 'vitepress-plugin-image-viewer'\nimport vImageViewer from 'vitepress-plugin-image-viewer/lib/vImageViewer.vue'\nimport { useRoute } from 'vitepress'\nimport { enhanceAppWithTabs } from 'vitepress-plugin-tabs/client'\n\n\nexport default {\n    ...DefaultTheme,\n    enhanceApp(ctx) {\n        DefaultTheme.enhanceApp(ctx)\n        ctx.app.component('vImageViewer', vImageViewer)\n        enhanceAppWithTabs(ctx.app)\n    },\n    setup() {\n        const route = useRoute()\n        imageViewer(route)\n    }\n}\n"
  },
  {
    "path": "docs/.vitepress/theme/styles.css",
    "content": ":root:where(:lang(fa)) {\n  --vp-font-family-base:\n    'Vazirmatn', 'Inter', ui-sans-serif, system-ui, sans-serif,\n    'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';\n}\n\n:root {\n  --vp-home-hero-name-color: transparent;\n  --vp-home-hero-name-background: -webkit-linear-gradient(\n    120deg,\n    #bd34fe 30%,\n    #41d1ff\n  );\n  --vp-home-hero-image-background-image: linear-gradient(\n    -45deg,\n    #bd34fe 50%,\n    #47caff 50%\n  );\n  --vp-home-hero-image-filter: blur(44px);\n}\n\n@media (min-width: 640px) {\n  :root {\n    --vp-home-hero-image-filter: blur(56px);\n  }\n}\n\n@media (min-width: 960px) {\n  :root {\n    --vp-home-hero-image-filter: blur(68px);\n  }\n}\n\n.VPHero .VPImage {\n  filter: drop-shadow(-2px 4px 6px rgba(0, 0, 0, 0.2));\n  padding: 18px;\n}\n\n/* used in reference/default-theme-search */\nimg[src='/search.png'] {\n  width: 100%;\n  aspect-ratio: 1 / 1;\n}\n"
  },
  {
    "path": "docs/.vitepress/theme/vars.css",
    "content": "/**\n * Colors: Solid\n * -------------------------------------------------------------------------- */\n\n:root {\n  --vp-c-white: #ffffff;\n  --vp-c-black: #000000;\n\n  --vp-c-neutral: var(--vp-c-black);\n  --vp-c-neutral-inverse: var(--vp-c-white);\n}\n\n.dark {\n  --vp-c-neutral: var(--vp-c-white);\n  --vp-c-neutral-inverse: var(--vp-c-black);\n}\n\n/**\n * Colors: Palette\n *\n * The primitive colors used for accent colors. These colors are referenced\n * by functional colors such as \"Text\", \"Background\", or \"Brand\".\n *\n * Each colors have exact same color scale system with 3 levels of solid\n * colors with different brightness, and 1 soft color.\n *\n * - `XXX-1`: The most solid color used mainly for colored text. It must\n *   satisfy the contrast ratio against when used on top of `XXX-soft`.\n *\n * - `XXX-2`: The color used mainly for hover state of the button.\n *\n * - `XXX-3`: The color for solid background, such as bg color of the button.\n *    It must satisfy the contrast ratio with pure white (#ffffff) text on\n *    top of it.\n *\n * - `XXX-soft`: The color used for subtle background such as custom container\n *    or badges. It must satisfy the contrast ratio when putting `XXX-1` colors\n *    on top of it.\n *\n *    The soft color must be semi transparent alpha channel. This is crucial\n *    because it allows adding multiple \"soft\" colors on top of each other\n *    to create a accent, such as when having inline code block inside\n *    custom containers.\n * -------------------------------------------------------------------------- */\n\n:root {\n  --vp-c-gray-1: #dddde3;\n  --vp-c-gray-2: #e4e4e9;\n  --vp-c-gray-3: #ebebef;\n  --vp-c-gray-soft: rgba(142, 150, 170, 0.14);\n\n  --vp-c-indigo-1: #3451b2;\n  --vp-c-indigo-2: #3a5ccc;\n  --vp-c-indigo-3: #5672cd;\n  --vp-c-indigo-soft: rgba(100, 108, 255, 0.14);\n\n  --vp-c-purple-1: #6f42c1;\n  --vp-c-purple-2: #7e4cc9;\n  --vp-c-purple-3: #8e5cd9;\n  --vp-c-purple-soft: rgba(159, 122, 234, 0.14);\n\n  --vp-c-green-1: #18794e;\n  --vp-c-green-2: #299764;\n  --vp-c-green-3: #30a46c;\n  --vp-c-green-soft: rgba(16, 185, 129, 0.14);\n\n  --vp-c-yellow-1: #915930;\n  --vp-c-yellow-2: #946300;\n  --vp-c-yellow-3: #9f6a00;\n  --vp-c-yellow-soft: rgba(234, 179, 8, 0.14);\n\n  --vp-c-red-1: #b8272c;\n  --vp-c-red-2: #d5393e;\n  --vp-c-red-3: #e0575b;\n  --vp-c-red-soft: rgba(244, 63, 94, 0.14);\n\n  --vp-c-sponsor: #db2777;\n}\n\n.dark {\n  --vp-c-gray-1: #515c67;\n  --vp-c-gray-2: #414853;\n  --vp-c-gray-3: #32363f;\n  --vp-c-gray-soft: rgba(101, 117, 133, 0.16);\n\n  --vp-c-indigo-1: #a8b1ff;\n  --vp-c-indigo-2: #5c73e7;\n  --vp-c-indigo-3: #3e63dd;\n  --vp-c-indigo-soft: rgba(100, 108, 255, 0.16);\n\n  --vp-c-purple-1: #c8abfa;\n  --vp-c-purple-2: #a879e6;\n  --vp-c-purple-3: #8e5cd9;\n  --vp-c-purple-soft: rgba(159, 122, 234, 0.16);\n\n  --vp-c-green-1: #3dd68c;\n  --vp-c-green-2: #30a46c;\n  --vp-c-green-3: #298459;\n  --vp-c-green-soft: rgba(16, 185, 129, 0.16);\n\n  --vp-c-yellow-1: #f9b44e;\n  --vp-c-yellow-2: #da8b17;\n  --vp-c-yellow-3: #a46a0a;\n  --vp-c-yellow-soft: rgba(234, 179, 8, 0.16);\n\n  --vp-c-red-1: #f66f81;\n  --vp-c-red-2: #f14158;\n  --vp-c-red-3: #b62a3c;\n  --vp-c-red-soft: rgba(244, 63, 94, 0.16);\n}\n\n/**\n * Colors: Background\n *\n * - `bg`: The bg color used for main screen.\n *\n * - `bg-alt`: The alternative bg color used in places such as \"sidebar\",\n *   or \"code block\".\n *\n * - `bg-elv`: The elevated bg color. This is used at parts where it \"floats\",\n *   such as \"dialog\".\n *\n * - `bg-soft`: The bg color to slightly distinguish some components from\n *   the page. Used for things like \"carbon ads\" or \"table\".\n * -------------------------------------------------------------------------- */\n\n:root {\n  --vp-c-bg: #ffffff;\n  --vp-c-bg-alt: #f6f6f7;\n  --vp-c-bg-elv: #ffffff;\n  --vp-c-bg-soft: #f6f6f7;\n}\n\n.dark {\n  --vp-c-bg: #1b1b1f;\n  --vp-c-bg-alt: #161618;\n  --vp-c-bg-elv: #202127;\n  --vp-c-bg-soft: #202127;\n}\n\n/**\n * Colors: Borders\n *\n * - `divider`: This is used for separators. This is used to divide sections\n *   within the same components, such as having separator on \"h2\" heading.\n *\n * - `border`: This is designed for borders on interactive components.\n *   For example this should be used for a button outline.\n *\n * - `gutter`: This is used to divide components in the page. For example\n *   the header and the lest of the page.\n * -------------------------------------------------------------------------- */\n\n:root {\n  --vp-c-border: #c2c2c4;\n  --vp-c-divider: #e2e2e3;\n  --vp-c-gutter: #e2e2e3;\n}\n\n.dark {\n  --vp-c-border: #3c3f44;\n  --vp-c-divider: #2e2e32;\n  --vp-c-gutter: #000000;\n}\n\n/**\n * Colors: Text\n *\n * - `text-1`: Used for primary text.\n *\n * - `text-2`: Used for muted texts, such as \"inactive menu\" or \"info texts\".\n *\n * - `text-3`: Used for subtle texts, such as \"placeholders\" or \"caret icon\".\n * -------------------------------------------------------------------------- */\n\n:root {\n  --vp-c-text-1: #3c3c43;\n  --vp-c-text-2: #67676c;\n  --vp-c-text-3: #929295;\n}\n\n.dark {\n  --vp-c-text-1: #dfdfd6;\n  --vp-c-text-2: #98989f;\n  --vp-c-text-3: #6a6a71;\n}\n\n/**\n * Colors: Function\n *\n * - `default`: The color used purely for subtle indication without any\n *   special meanings attached to it such as bg color for menu hover state.\n *\n * - `brand`: Used for primary brand colors, such as link text, button with\n *   brand theme, etc.\n *\n * - `tip`: Used to indicate useful information. The default theme uses the\n *   brand color for this by default.\n *\n * - `warning`: Used to indicate warning to the users. Used in custom\n *   container, badges, etc.\n *\n * - `danger`: Used to show error, or dangerous message to the users. Used\n *   in custom container, badges, etc.\n *\n * To understand the scaling system, refer to \"Colors: Palette\" section.\n * -------------------------------------------------------------------------- */\n\n:root {\n  --vp-c-default-1: var(--vp-c-gray-1);\n  --vp-c-default-2: var(--vp-c-gray-2);\n  --vp-c-default-3: var(--vp-c-gray-3);\n  --vp-c-default-soft: var(--vp-c-gray-soft);\n\n  --vp-c-brand-1: var(--vp-c-indigo-1);\n  --vp-c-brand-2: var(--vp-c-indigo-2);\n  --vp-c-brand-3: var(--vp-c-indigo-3);\n  --vp-c-brand-soft: var(--vp-c-indigo-soft);\n\n  /* DEPRECATED: Use `--vp-c-brand-1` instead. */\n  --vp-c-brand: var(--vp-c-brand-1);\n\n  --vp-c-tip-1: var(--vp-c-brand-1);\n  --vp-c-tip-2: var(--vp-c-brand-2);\n  --vp-c-tip-3: var(--vp-c-brand-3);\n  --vp-c-tip-soft: var(--vp-c-brand-soft);\n\n  --vp-c-note-1: var(--vp-c-brand-1);\n  --vp-c-note-2: var(--vp-c-brand-2);\n  --vp-c-note-3: var(--vp-c-brand-3);\n  --vp-c-note-soft: var(--vp-c-brand-soft);\n\n  --vp-c-success-1: var(--vp-c-green-1);\n  --vp-c-success-2: var(--vp-c-green-2);\n  --vp-c-success-3: var(--vp-c-green-3);\n  --vp-c-success-soft: var(--vp-c-green-soft);\n\n  --vp-c-important-1: var(--vp-c-purple-1);\n  --vp-c-important-2: var(--vp-c-purple-2);\n  --vp-c-important-3: var(--vp-c-purple-3);\n  --vp-c-important-soft: var(--vp-c-purple-soft);\n\n  --vp-c-warning-1: var(--vp-c-yellow-1);\n  --vp-c-warning-2: var(--vp-c-yellow-2);\n  --vp-c-warning-3: var(--vp-c-yellow-3);\n  --vp-c-warning-soft: var(--vp-c-yellow-soft);\n\n  --vp-c-danger-1: var(--vp-c-red-1);\n  --vp-c-danger-2: var(--vp-c-red-2);\n  --vp-c-danger-3: var(--vp-c-red-3);\n  --vp-c-danger-soft: var(--vp-c-red-soft);\n\n  --vp-c-caution-1: var(--vp-c-red-1);\n  --vp-c-caution-2: var(--vp-c-red-2);\n  --vp-c-caution-3: var(--vp-c-red-3);\n  --vp-c-caution-soft: var(--vp-c-red-soft);\n}\n\n/**\n * Typography\n * -------------------------------------------------------------------------- */\n\n:root {\n  --vp-font-family-base:\n    'Inter', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji',\n    'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';\n  --vp-font-family-mono:\n    ui-monospace, 'Menlo', 'Monaco', 'Consolas', 'Liberation Mono',\n    'Courier New', monospace;\n  font-optical-sizing: auto;\n}\n\n:root:where(:lang(fa)) {\n  --vp-font-family-base:\n    'Vazirmatn', 'Inter', ui-sans-serif, system-ui, sans-serif,\n    'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';\n}\n\n/**\n * Shadows\n * -------------------------------------------------------------------------- */\n\n:root {\n  --vp-shadow-1: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);\n  --vp-shadow-2: 0 3px 12px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.07);\n  --vp-shadow-3: 0 12px 32px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.08);\n  --vp-shadow-4: 0 14px 44px rgba(0, 0, 0, 0.12), 0 3px 9px rgba(0, 0, 0, 0.12);\n  --vp-shadow-5:\n    0 18px 56px rgba(0, 0, 0, 0.16), 0 4px 12px rgba(0, 0, 0, 0.16);\n}\n\n/**\n * Z-indexes\n * -------------------------------------------------------------------------- */\n\n:root {\n  --vp-z-index-footer: 10;\n  --vp-z-index-local-nav: 20;\n  --vp-z-index-nav: 30;\n  --vp-z-index-layout-top: 40;\n  --vp-z-index-backdrop: 50;\n  --vp-z-index-sidebar: 60;\n}\n\n@media (min-width: 960px) {\n  :root {\n    --vp-z-index-sidebar: 25;\n  }\n}\n\n/**\n * Layouts\n * -------------------------------------------------------------------------- */\n\n:root {\n  --vp-layout-max-width: 1440px;\n}\n\n/**\n * Component: Header Anchor\n * -------------------------------------------------------------------------- */\n\n:root {\n  --vp-header-anchor-symbol: '#';\n}\n\n/**\n * Component: Code\n * -------------------------------------------------------------------------- */\n\n:root {\n  --vp-code-line-height: 1.7;\n  --vp-code-font-size: 0.875em;\n  --vp-code-color: var(--vp-c-brand-1);\n  --vp-code-link-color: var(--vp-c-brand-1);\n  --vp-code-link-hover-color: var(--vp-c-brand-2);\n  --vp-code-bg: var(--vp-c-default-soft);\n\n  --vp-code-block-color: var(--vp-c-text-2);\n  --vp-code-block-bg: var(--vp-c-bg-alt);\n  --vp-code-block-divider-color: var(--vp-c-gutter);\n\n  --vp-code-lang-color: var(--vp-c-text-2);\n\n  --vp-code-line-highlight-color: var(--vp-c-default-soft);\n  --vp-code-line-number-color: var(--vp-c-text-2);\n\n  --vp-code-line-diff-add-color: var(--vp-c-success-soft);\n  --vp-code-line-diff-add-symbol-color: var(--vp-c-success-1);\n\n  --vp-code-line-diff-remove-color: var(--vp-c-danger-soft);\n  --vp-code-line-diff-remove-symbol-color: var(--vp-c-danger-1);\n\n  --vp-code-line-warning-color: var(--vp-c-warning-soft);\n  --vp-code-line-error-color: var(--vp-c-danger-soft);\n\n  --vp-code-copy-code-border-color: var(--vp-c-divider);\n  --vp-code-copy-code-bg: var(--vp-c-bg-soft);\n  --vp-code-copy-code-hover-border-color: var(--vp-c-divider);\n  --vp-code-copy-code-hover-bg: var(--vp-c-bg);\n  --vp-code-copy-code-active-text: var(--vp-c-text-2);\n  --vp-code-copy-copied-text-content: 'Copied';\n\n  --vp-code-tab-divider: var(--vp-code-block-divider-color);\n  --vp-code-tab-text-color: var(--vp-c-text-2);\n  --vp-code-tab-bg: var(--vp-code-block-bg);\n  --vp-code-tab-hover-text-color: var(--vp-c-text-1);\n  --vp-code-tab-active-text-color: var(--vp-c-text-1);\n  --vp-code-tab-active-bar-color: var(--vp-c-brand-1);\n}\n\n:lang(es),\n:lang(pt) {\n  --vp-code-copy-copied-text-content: 'Copiado';\n}\n:lang(fa) {\n  --vp-code-copy-copied-text-content: 'کپی شد';\n}\n:lang(ko) {\n  --vp-code-copy-copied-text-content: '복사됨';\n}\n:lang(ru) {\n  --vp-code-copy-copied-text-content: 'Скопировано';\n}\n:lang(zh) {\n  --vp-code-copy-copied-text-content: '已复制';\n}\n\n/**\n * Component: Button\n * -------------------------------------------------------------------------- */\n\n:root {\n  --vp-button-brand-border: transparent;\n  --vp-button-brand-text: var(--vp-c-white);\n  --vp-button-brand-bg: var(--vp-c-brand-3);\n  --vp-button-brand-hover-border: transparent;\n  --vp-button-brand-hover-text: var(--vp-c-white);\n  --vp-button-brand-hover-bg: var(--vp-c-brand-2);\n  --vp-button-brand-active-border: transparent;\n  --vp-button-brand-active-text: var(--vp-c-white);\n  --vp-button-brand-active-bg: var(--vp-c-brand-1);\n\n  --vp-button-alt-border: transparent;\n  --vp-button-alt-text: var(--vp-c-text-1);\n  --vp-button-alt-bg: var(--vp-c-default-3);\n  --vp-button-alt-hover-border: transparent;\n  --vp-button-alt-hover-text: var(--vp-c-text-1);\n  --vp-button-alt-hover-bg: var(--vp-c-default-2);\n  --vp-button-alt-active-border: transparent;\n  --vp-button-alt-active-text: var(--vp-c-text-1);\n  --vp-button-alt-active-bg: var(--vp-c-default-1);\n\n  --vp-button-sponsor-border: var(--vp-c-text-2);\n  --vp-button-sponsor-text: var(--vp-c-text-2);\n  --vp-button-sponsor-bg: transparent;\n  --vp-button-sponsor-hover-border: var(--vp-c-sponsor);\n  --vp-button-sponsor-hover-text: var(--vp-c-sponsor);\n  --vp-button-sponsor-hover-bg: transparent;\n  --vp-button-sponsor-active-border: var(--vp-c-sponsor);\n  --vp-button-sponsor-active-text: var(--vp-c-sponsor);\n  --vp-button-sponsor-active-bg: transparent;\n}\n\n/**\n * Component: Custom Block\n * -------------------------------------------------------------------------- */\n\n:root {\n  --vp-custom-block-font-size: 14px;\n  --vp-custom-block-code-font-size: 13px;\n\n  --vp-custom-block-info-border: transparent;\n  --vp-custom-block-info-text: var(--vp-c-text-1);\n  --vp-custom-block-info-bg: var(--vp-c-default-soft);\n  --vp-custom-block-info-code-bg: var(--vp-c-default-soft);\n\n  --vp-custom-block-note-border: transparent;\n  --vp-custom-block-note-text: var(--vp-c-text-1);\n  --vp-custom-block-note-bg: var(--vp-c-default-soft);\n  --vp-custom-block-note-code-bg: var(--vp-c-default-soft);\n\n  --vp-custom-block-tip-border: transparent;\n  --vp-custom-block-tip-text: var(--vp-c-text-1);\n  --vp-custom-block-tip-bg: var(--vp-c-tip-soft);\n  --vp-custom-block-tip-code-bg: var(--vp-c-tip-soft);\n\n  --vp-custom-block-important-border: transparent;\n  --vp-custom-block-important-text: var(--vp-c-text-1);\n  --vp-custom-block-important-bg: var(--vp-c-important-soft);\n  --vp-custom-block-important-code-bg: var(--vp-c-important-soft);\n\n  --vp-custom-block-warning-border: transparent;\n  --vp-custom-block-warning-text: var(--vp-c-text-1);\n  --vp-custom-block-warning-bg: var(--vp-c-warning-soft);\n  --vp-custom-block-warning-code-bg: var(--vp-c-warning-soft);\n\n  --vp-custom-block-danger-border: transparent;\n  --vp-custom-block-danger-text: var(--vp-c-text-1);\n  --vp-custom-block-danger-bg: var(--vp-c-danger-soft);\n  --vp-custom-block-danger-code-bg: var(--vp-c-danger-soft);\n\n  --vp-custom-block-caution-border: transparent;\n  --vp-custom-block-caution-text: var(--vp-c-text-1);\n  --vp-custom-block-caution-bg: var(--vp-c-caution-soft);\n  --vp-custom-block-caution-code-bg: var(--vp-c-caution-soft);\n\n  --vp-custom-block-details-border: var(--vp-custom-block-info-border);\n  --vp-custom-block-details-text: var(--vp-custom-block-info-text);\n  --vp-custom-block-details-bg: var(--vp-custom-block-info-bg);\n  --vp-custom-block-details-code-bg: var(--vp-custom-block-info-code-bg);\n}\n\n/**\n * Component: Input\n * -------------------------------------------------------------------------- */\n\n:root {\n  --vp-input-border-color: var(--vp-c-border);\n  --vp-input-bg-color: var(--vp-c-bg-alt);\n\n  --vp-input-switch-bg-color: var(--vp-c-default-soft);\n}\n\n/**\n * Component: Nav\n * -------------------------------------------------------------------------- */\n\n:root {\n  --vp-nav-height: 64px;\n  --vp-nav-bg-color: var(--vp-c-bg);\n  --vp-nav-screen-bg-color: var(--vp-c-bg);\n  --vp-nav-logo-height: 24px;\n}\n\n.hide-nav {\n  --vp-nav-height: 0px;\n}\n\n.hide-nav .VPSidebar {\n  --vp-nav-height: 22px;\n}\n\n/**\n * Component: Local Nav\n * -------------------------------------------------------------------------- */\n\n:root {\n  --vp-local-nav-bg-color: var(--vp-c-bg);\n}\n\n/**\n * Component: Sidebar\n * -------------------------------------------------------------------------- */\n\n:root {\n  --vp-sidebar-width: 272px;\n  --vp-sidebar-bg-color: var(--vp-c-bg-alt);\n}\n\n/**\n * Colors Backdrop\n * -------------------------------------------------------------------------- */\n\n:root {\n  --vp-backdrop-bg-color: rgba(0, 0, 0, 0.6);\n}\n\n/**\n * Component: Home\n * -------------------------------------------------------------------------- */\n\n:root {\n  --vp-home-hero-name-color: var(--vp-c-brand-1);\n  --vp-home-hero-name-background: transparent;\n\n  --vp-home-hero-image-background-image: none;\n  --vp-home-hero-image-filter: none;\n}\n\n/**\n * Component: Badge\n * -------------------------------------------------------------------------- */\n\n:root {\n  --vp-badge-info-border: transparent;\n  --vp-badge-info-text: var(--vp-c-text-2);\n  --vp-badge-info-bg: var(--vp-c-default-soft);\n\n  --vp-badge-tip-border: transparent;\n  --vp-badge-tip-text: var(--vp-c-tip-1);\n  --vp-badge-tip-bg: var(--vp-c-tip-soft);\n\n  --vp-badge-warning-border: transparent;\n  --vp-badge-warning-text: var(--vp-c-warning-1);\n  --vp-badge-warning-bg: var(--vp-c-warning-soft);\n\n  --vp-badge-danger-border: transparent;\n  --vp-badge-danger-text: var(--vp-c-danger-1);\n  --vp-badge-danger-bg: var(--vp-c-danger-soft);\n}\n\n/**\n * Component: Carbon Ads\n * -------------------------------------------------------------------------- */\n\n:root {\n  --vp-carbon-ads-text-color: var(--vp-c-text-1);\n  --vp-carbon-ads-poweredby-color: var(--vp-c-text-2);\n  --vp-carbon-ads-bg-color: var(--vp-c-bg-soft);\n  --vp-carbon-ads-hover-text-color: var(--vp-c-brand-1);\n  --vp-carbon-ads-hover-poweredby-color: var(--vp-c-text-1);\n}\n\n/**\n  * Component: Local Search\n  * -------------------------------------------------------------------------- */\n\n:root {\n  --vp-local-search-bg: var(--vp-c-bg);\n  --vp-local-search-result-bg: var(--vp-c-bg);\n  --vp-local-search-result-border: var(--vp-c-divider);\n  --vp-local-search-result-selected-bg: var(--vp-c-bg);\n  --vp-local-search-result-selected-border: var(--vp-c-brand-1);\n  --vp-local-search-highlight-bg: var(--vp-c-brand-1);\n  --vp-local-search-highlight-text: var(--vp-c-neutral-inverse);\n}\n"
  },
  {
    "path": "docs/fa/index.md",
    "content": "---\n# https://vitepress.dev/reference/default-theme-home-page\nlayout: home\n\nhero:\n  name: 'فعال‌سازی فوری محصولات مایکروسافت'\n  text: ''\n  tagline: \"مجموعه ابزارهای قابل اعتماد و متن‌باز برای فعال‌سازی محصولات ویندوز و آفیس، شامل HWID، KMS، Ohook و بیشتر. فعال‌سازی دائمی در کمتر از ۴۰ ثانیه!\"\n  actions:\n    - theme: brand\n      text: شروع کنید\n      link: /fa/wa/\n    - theme: alt\n      text: مشاهده در گیت‌هاب\n      link: https://github.com/NiREvil/windows-activation\n\nfeatures:\n  - title: '🔐 فعال‌سازی دائمی با  HWID'\n    details: 'یک لایسنس دیجیتال دائمی برای ویندوز ۱۰ و ۱۱ دریافت کنید. این لایسنس به سخت‌افزار شما گره خورده و حتی پس از نصب مجدد ویندوز باقی می‌ماند.'\n  - title: '⚙️ تمدید خودکار با KMS و Online KMS'\n    details: 'ویندوز و آفیس را برای ۱۸۰ روز فعال کنید و با یک تَسک خودکار، تمدید آن را برای همیشه تضمین کنید.'\n  - title: '📦 فعال‌سازی آفلاین با Ohook و TSforge'\n    details: 'یک روش فعال‌سازی دائمی و کاملاً آفلاین برای تمامی نسخه‌های مایکروسافت آفیس روی ویندوز 7 تا 11'\n---\n\n<script setup>\nimport { data as posts } from '../.vitepress/posts.data.js'\n</script>\n\n<div class=\"latest-posts-section\">\n  <h2 class=\"section-title\">مطالب اخیر</h2>\n  <div class=\"posts-grid\" v-if=\"posts && posts.length > 0\">\n    <article v-for=\"post of posts.filter(p => p.lang === 'fa')\" :key=\"post.url\" class=\"post-card\">\n      <div class=\"post-content\">\n        <h3 class=\"post-title\">\n          <a :href=\"post.url\" class=\"post-link\">{{ post.title }}</a>\n        </h3>\n        <p class=\"post-date\"> {{ post.date.string }}</p>\n        <p class=\"post-excerpt\" v-if=\"post.excerpt\">{{ post.excerpt }}</p>\n        <div class=\"post-actions\">\n          <a :href=\"post.url\" class=\"read-more\">← بیشتر بخوانید</a>\n        </div>\n      </div>\n    </article>\n  </div>\n  <div v-else class=\"no-posts\">\n    <p>در حال حاضر هیچ مطلبی در دسترس نیست.</p>\n  </div>\n</div>\n\n<style scoped>\n.latest-posts-section {\n  max-width: 1152px;\n  margin: 3rem auto 0;\n  padding: 0 24px;\n}\n\n.section-title {\n  font-size: 2rem;\n  font-weight: 700;\n  color: var(--vp-c-text-1);\n  margin-bottom: 2rem;\n  text-align: center;\n  position: relative;\n}\n\n.section-title::after {\n  content: '';\n  position: absolute;\n  bottom: -8px;\n  left: 50%;\n  transform: translateX(-50%);\n  width: 60px;\n  height: 3px;\n  background: linear-gradient(90deg, var(--vp-c-brand-1), var(--vp-c-brand-2));\n  border-radius: 2px;\n}\n\n.posts-grid {\n  display: grid;\n  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));\n  gap: 2rem;\n  margin-top: 2rem;\n}\n\n.post-card {\n  background: var(--vp-c-bg-soft);\n  border: 1px solid var(--vp-c-divider);\n  border-radius: 12px;\n  overflow: hidden;\n  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);\n  position: relative;\n}\n\n.post-card::before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  height: 3px;\n  background: linear-gradient(90deg, var(--vp-c-brand-1), var(--vp-c-brand-2));\n  transform: scaleX(0);\n  transform-origin: right;\n  transition: transform 0.3s ease;\n}\n\n.post-card:hover {\n  transform: translateY(-4px);\n  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);\n  border-color: var(--vp-c-brand-1);\n}\n\n.post-card:hover::before {\n  transform: scaleX(1);\n}\n\n.post-content {\n  padding: 2rem;\n}\n\n.post-title {\n  margin: 0 0 1rem 0;\n  font-size: 1.25rem;\n  font-weight: 600;\n  line-height: 1.4;\n}\n\n.post-link {\n  color: var(--vp-c-text-1);\n  text-decoration: none;\n  transition: color 0.3s ease;\n}\n\n.post-link:hover {\n  color: var(--vp-c-brand-1);\n}\n\n.post-date {\n  color: var(--vp-c-text-2);\n  font-size: 0.875rem;\n  margin: 0 0 1rem 0;\n  display: flex;\n  align-items: center;\n  gap: 0.5rem;\n}\n\n.post-excerpt {\n  color: var(--vp-c-text-2);\n  line-height: 1.6;\n  margin: 0 0 1.5rem 0;\n  display: -webkit-box;\n  -webkit-line-clamp: 3;\n  -webkit-box-orient: vertical;\n  overflow: hidden;\n}\n\n.post-actions {\n  display: flex;\n  justify-content: flex-start;\n}\n\n.read-more {\n  color: var(--vp-c-brand-1);\n  text-decoration: none;\n  font-weight: 500;\n  font-size: 0.875rem;\n  padding: 0.5rem 1rem;\n  border-radius: 6px;\n  transition: all 0.3s ease;\n  border: 1px solid transparent;\n}\n\n.read-more:hover {\n  background: var(--vp-c-brand-soft);\n  border-color: var(--vp-c-brand-1);\n}\n\n.no-posts {\n  text-align: center;\n  padding: 3rem;\n  color: var(--vp-c-text-2);\n}\n\n@media (max-width: 768px) {\n  .latest-posts-section {\n    padding: 0 16px;\n  }\n\n  .posts-grid {\n    grid-template-columns: 1fr;\n    gap: 1.5rem;\n  }\n\n  .post-content {\n    padding: 1.5rem;\n  }\n\n  .section-title {\n    font-size: 1.75rem;\n  }\n}\n\n@media (prefers-color-scheme: dark) {\n  .post-card {\n    background: var(--vp-c-bg-alt);\n  }\n\n  .post-card:hover {\n    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);\n  }\n}\n</style>\n"
  },
  {
    "path": "docs/fa/wa/change_edition_issues.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'مشکلات تغییر نسخه'\ndescription: 'در حین ارتقاء از نسخه Home به Pro، اسکریپت ممکن است خطاهایی را نشان دهد'\ndate: 2024-04-05\neditLink: true\n---\n\n# مشکلات تغییر نسخه\n\n## خطای 0x80070490\n\n- در حین ارتقاء از نسخه Home به Pro، اسکریپت ممکن است خطای زیر را نشان دهد:\n```\nException calling \"_DismSet Edition\" with \"6\" argument(s): \"Element not found. (Exception from HRESULT: 0x80070490)\"\n```\n- این مشکل اغلب زمانی رخ می‌دهد که NET Framework 3.5. نصب شده باشد.\n- برای حل این مشکل، باید آن را غیرفعال کنید. برای این کار، Command Prompt را به عنوان مدیر باز کنید و دستور زیر را وارد کنید:\n  `DISM /Online /English /Disable-Feature /FeatureName:\"NetFx3\"`\n- پس از انجام این کار، دوباره سعی کنید نسخه را تغییر دهید.\n- پس از تغییر نسخه، می‌توانید دوباره NET 3.5. را فعال کنید:\n  `DISM /Online /English /Enable-Feature /FeatureName:\"NetFx3\"`\n\n---\n\n## خطاهای دیگر\n\n::: danger عیب یابی\n\n- سیستم را مجدداً راه‌اندازی کنید و سپس دوباره سعی کنید نسخه را تغییر دهید.\n- اگر هنوز مشکل حل نشده است، [این راهنما](./in-place_repair_upgrade) را دنبال کنید.\n\n- اگر سوالی دارید، ابتدا بخش [**سوالات متداول**](./faq) را مرور کنید - به احتمال زیاد پاسخ شما در آنجا خواهد بود.\n\n- اگر مشکل شما همچنان ادامه داشت - [**با ما تماس بگیرید**](./troubleshoot).\n\n:::\n\n[1]: https://gravesoft.dev/in-place_repair_upgrade\n"
  },
  {
    "path": "docs/fa/wa/change_office_edition.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'تغییر نسخه آفیس'\ndescription: 'این گزینه در منوی اصلی MAS موجود است. می‌توانید از این اسکریپت با Office C2R نسخه 16.0.9029.2167 و بالاتر برای تغییر، افزودن و حذف نسخه‌ها یا تغییر کانال به‌روزرسانی فعلی آفیس استفاده کنید.'\ndate: 2024-01-05\neditLink: true\n---\n\n# تغییر نسخه آفیس\n\nاین گزینه در منوی اصلی MAS موجود است. می‌توانید از این اسکریپت با Office C2R (نسخه 16.0.9029.2167 و بالاتر) برای تغییر، افزودن و حذف نسخه‌ها یا تغییر کانال به‌روزرسانی فعلی آفیس استفاده کنید.\n\n## چگونه کار می‌کند؟\n\nOffice C2R (Click To Run) یک سیستم نصب یکپارچه دارد، به این معنی که چه یک برنامه واحد مانند Word 2021 را دانلود کنید یا یک بسته کامل مانند ProPlus2021، فایل‌های اصلی نصب شده تقریباً یکسان هستند.\n\nبرنامه مدیریت اصلی برای Office C2R در مسیر زیر قرار دارد:\n`C:\\Program Files\\Common Files\\microsoft shared\\ClickToRun\\OfficeClickToRun.exe`\n\nاین اسکریپت از این برنامه برای افزودن، حذف یا تغییر نسخه‌های آفیس استفاده می‌کند. به دلیل نصب یکپارچه و به‌روزرسانی‌های دلتا در آفیس، افزودن نسخه‌ها یا برنامه‌های جدید به دانلود حجیمی نیاز ندارد.\n\n\n## تغییر کانال به‌روزرسانی آفیس\n\nاین اسکریپت همچنین می‌تواند کانال به‌روزرسانی فعلی آفیس را تغییر دهد.\n\n```\n5440FD1F-7ECB-4221-8110-145EFAA6372F  -  Insider Fast [Beta]  -  Insiders::DevMain\n64256AFE-F5D9-4F86-8936-8840A6A4F5BE  -  Monthly Preview      -  Insiders::CC\n492350F6-3A01-4F97-B9C0-C7C6DDF67D60  -  Monthly [Current]    -  Production::CC\n55336B82-A18D-4DD6-B5F6-9E5095C314A6  -  Monthly Enterprise   -  Production::MEC\nB8F9B850-328D-4355-9145-C59439A0C4CF  -  Semi Annual Preview  -  Insiders::FRDC\n7FFBC6BF-BC32-4F92-8982-F9DD17FD3114  -  Semi Annual          -  Production::DC\nEA4A4090-DE26-49D7-93C1-91BFF9E53FC3  -  DevMain Channel      -  Dogfood::DevMain\nB61285DD-D9F7-41F2-9757-8F61CBA4E9C8  -  Microsoft Elite      -  Microsoft::DevMain\nF2E724C1-748F-4B47-8FB8-8E0D210E9208  -  Perpetual2019 VL     -  Production::LTSC\n1D2D2EA6-1680-4C56-AC58-A441C8C24FF9  -  Microsoft2019 VL     -  Microsoft::LTSC\n5030841D-C919-4594-8D2D-84AE4F96E58E  -  Perpetual2021 VL     -  Production::LTSC2021\n86752282-5841-4120-AC80-DB03AE6B5FDB  -  Microsoft2021 VL     -  Microsoft::LTSC2021\n7983BAC0-E531-40CF-BE00-FD24FE66619C  -  Perpetual2024 VL     -  Production::LTSC2024\nC02D8FE6-5242-4DA8-972F-82EE55E00671  -  Microsoft2024 VL     -  Microsoft::LTSC2024\n```\n\n- این اسکریپت لیست بالا را در پایگاه داده خود دارد و فقط ارتقاهای رسمی پشتیبانی شده را ارائه می‌دهد.\n- درباره کانال‌های به‌روزرسانی آفیس بیشتر بدانید: https://learn.microsoft.com/en-us/microsoft-365-apps/updates/overview-update-channels\n- می‌توانید آخرین شماره‌های ساخت آفیس را از اینجا دریافت کنید: https://github.com/ItzLevvie/Office16/blob/master/defconfig\n- این اسکریپت از یک روش رسمی برای تغییر کانال به‌روزرسانی استفاده می‌کند:\nhttps://techcommunity.microsoft.com/t5/office-365-blog/how-to-manage-office-365-proplus-channels-for-it-pros/ba-p/795813\n\n### محدودیت‌های کانال VL (LTSC)\n(قابل اعمال برای نسخه‌های 2019/21/24 VL)\n\nبه طور رسمی، کانال به‌روزرسانی را نمی‌توان به یا از یک کانال VL (LTSC) تغییر داد، بنابراین اگر کانال نصب شده یک کانال VL (LTSC) باشد، فقط آن کانال در اسکریپت ظاهر می‌شود.\nهمچنین، اگر کانال نصب شده یک کانال LTSC نباشد، اسکریپت پیشنهاد تغییر به LTSC را نخواهد داد.\n\n### محدودیت‌های ویندوز 7/8/8.1\n\nOffice C2R دیگر در ویندوز [7][1]، [8][2] و [8.1][3] پشتیبانی نمی‌شود.\nآخرین ساخت موجود ثابت است و هیچ به‌روزرسانی دریافت نخواهد کرد. کانال‌های VL (LTSC) در این نسخه‌های ویندوز پشتیبانی نمی‌شوند، بنابراین در اسکریپت ظاهر نخواهند شد.\n\n---\n\n## عیب یابی\n\n::: danger عیب یابی\n\nاگر سوالی دارید، ابتدا بخش [**سوالات متداول**](./faq) را مرور کنید - به احتمال زیاد پاسخ شما در آنجا خواهد بود.\n\nاگر مشکل شما همچنان ادامه داشت - [**با ما تماس بگیرید**](./troubleshoot).\n\n:::\n\n\n[1]: https://learn.microsoft.com/en-us/microsoft-365-apps/end-of-support/windows-7-support\n[2]: https://learn.microsoft.com/en-us/microsoft-365-apps/end-of-support/windows-8-support\n[3]: https://learn.microsoft.com/en-us/microsoft-365-apps/end-of-support/windows-81-support\n"
  },
  {
    "path": "docs/fa/wa/change_windows_edition.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'تغییر نسخه ویندوز'\ndescription: 'این گزینه را می‌توان در منوی اصلی MAS یافت، این اسکریپت می‌تواند نسخه‌های ویندوز 7 تا 11 و نسخه‌های سرور معادل را تغییر دهد.'\ndate: 2024-06-05\neditLink: true\n---\n\n# تغییر نسخه ویندوز\n\n- این گزینه را می‌توان در منوی اصلی MAS یافت.\n- این اسکریپت می‌تواند نسخه‌های ویندوز 7 تا 11 و نسخه‌های سرور معادل را تغییر دهد.\n- اسکریپت شامل چهار روش برای تغییر نسخه است:\n    - روش May's DISM Api - در تغییر نسخه از Core به Non-Core در ویندوز 10/11 استفاده می‌شود.\n    - [روش slmgr /ipk][1] - برای نسخه‌های مجازی ویندوز 10/11 استفاده می‌شود.\n    - [روش DISM][2] - در سرور 2016 و نسخه‌های بعدی سرور استفاده می‌شود.\n    - [روش ارتقاء CBS][3] - در نسخه‌های ویندوز قبل از 10 استفاده می‌شود.\n- اسکریپت نسخه‌های موجود را از طریق هر یک از چهار روش نشان می‌دهد.\n- اسکریپت آینده‌نگر است، به این معنی که با انتشار نسخه‌های جدید نیازی به به‌روزرسانی نخواهد داشت زیرا می‌تواند کلید محصول مورد نیاز را از خود سیستم دریافت کند.\n- اسکریپت تغییر به نسخه‌های CountrySpecific و ServerRdsh و به/از نسخه‌های CloudEdition را مسدود می‌کند زیرا این کار به طور رسمی پشتیبانی نمی‌شود و ممکن است باعث ایجاد مشکل شود.\n- اسکریپت نمی‌تواند موارد زیر را تغییر دهد:\n    - نسخه‌های Non-Core به نسخه‌های Core. (به عنوان مثال، Pro به Home در دسترس نیست.)\n    - نسخه‌های GAC به نسخه‌های LTSC. (به عنوان مثال، Enterprise به Enterprise LTSC در دسترس نیست.)\n\n\n## تغییر نسخه دستی\n\nاگر می‌خواهید به جای استفاده از اسکریپت، نسخه را به صورت دستی تغییر دهید، لطفاً مراحل زیر را دنبال کنید.\n\n### ویندوز 10/11\n\n- برای مشاهده لیست نسخه‌های موجود، command prompt را به عنوان مدیر باز کنید و دستور زیر را وارد کنید:\n\n```reg\ndism /online /english /Get-TargetEditions\n```\n\n- یک کلید برای نسخه مورد نظر از [اینجا](./hwid#محصولات-پشتیبانی-شده) دریافت کنید.\n- اگر از نسخه Home به Pro ارتقا می‌دهید، قبل از انجام ارتقا باید اینترنت را غیرفعال کنید.\n- اکنون آن کلید محصول را با این دستور وارد کنید، `<product_key>` را با کلید واقعی جایگزین کنید.\n  `changepk.exe /ProductKey <product_key>`\n- در ارتقاء از Home به Pro، ممکن است خطایی نشان دهد، به هر حال سیستم را مجدداً راه‌اندازی کنید. (اگر هنوز کار نمی‌کند از اسکریپت استفاده کنید)\n- نسخه تغییر یافته را با MAS فعال کنید، همین.\n\n### ویندوز سرور 2016 و بالاتر\n\n- [راهنمای رسمی مایکروسافت][2] را دنبال کنید. می‌توانید کلیدهای مورد نیاز را از [اینجا](./kms38#محصولات-پشتیبانی-شده) دریافت کنید.\n\n::: danger عیب یابی\n\n[اینجا](./change_edition_issues) را بررسی کنید.\n\nاگر مشکل شما همچنان ادامه داشت - [**با ما تماس بگیرید**](./troubleshoot).\n\n:::\n\n\n[1]: https://learn.microsoft.com/en-us/windows/deployment/upgrade/windows-edition-upgrades#upgrade-using-a-command-line-tool\n[2]: https://learn.microsoft.com/en-us/windows-server/get-started/upgrade-conversion-options\n[3]: https://github.com/asdcorp/Set-WindowsCbsEdition\n"
  },
  {
    "path": "docs/fa/wa/chart.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'نمودار روش‌های فعال‌سازی'\ndescription: 'نمودار کلی از روش های فعال‌سازی که مایکروسافت برای محصولات خود ارائه کرده است.'\ndate: 2025-02-06\neditLink: true\nhead:\n  - - meta\n    - name: keywords\n      content: chart, چارت فعال‌سازی ,انواع روش‌ها,  hwid or kms, kms, hwid, tsforge\n---\n\n## جدول روش‌های فعال‌سازی\n\n> در جدول‌های زیر، مقایسه‌ای از روش‌های فعال‌سازی ارائه شده توسط اسکریپت‌های فعال‌سازی مایکروسافت ارائه شده است.\n\n\n## اصول پایه\n\n|                                                                      | HWID | Ohook | KMS38  | Online KMS | ZeroCID[^1] | StaticCID[^1] | KMS4k[^1] |\n| -------------------------------------------------------------------- | :--: | :---: | :----: | :--------: | :---------: | :-----------: | :-------: |\n| بدون اینترنت کار میکند                                                        |  🔴  |  🟢   |   🟢   |     🔴     |     🟢      |      🔴       |    🟢     |\n| فعال‌سازی دائمی است                                              |  🟢  |  🟢   | 🟢[^2] |   🟢[^3]   |     🟢      |      🟢       |  🟢[^4]   |\n| هیچ فایلی در سیستم برای حفظ وضعیت فعال‌سازی نمی‌گذارد |  🟢  |  🔴   |   🟢   |     🔴     |     🟢      |      🟢       |    🟢     |\n\n## پایداری\n\n|                                                           | HWID | Ohook | KMS38 | Online KMS | ZeroCID[^1] | StaticCID[^1] | KMS4k[^1] |\n| --------------------------------------------------------- | :--: | :---: | :---: | :--------: | :---------: | :-----------: | :-------: |\n| پایداری بین تغییرات سخت‌افزاری                         |  🔴  |  🟢   |  🔴   |     🟢     |     🟢      |      🔴       |    🟢     |\n| پایداری پس از نصب مجدد ویندوز بدون تغییر دادن سخت‌افزار |  🟢  |  🔴   |  🔴   |     🔴     |     🔴      |      🔴       |    🔴     |\n| پایداری بین بروزرسانی‌های گسترده در ویندوز 10 / 11         |  🟢  |  🟢   |  🟢   |     🟢     |     🔴      |      🔴       |    🔴     |\n\n## پشتیبانی\n\n|                                   | HWID | Ohook | KMS38  | Online KMS | ZeroCID[^1] | StaticCID[^1] |  KMS4k[^1]  |\n| --------------------------------- | :--: | :---: | :----: | :--------: | :---------: | :-----------: | :---------: |\n| ویندوز / 7                 |  🔴  |  🔴   |   🔴   |   🟢[^5]   |     🟢      |      🔴       |   🟢[^5]    |\n| ویندوز 8 / 8.1                   |  🔴  |  🔴   |   🔴   |   🟢[^5]   |     🟢      |      🟢       |   🟢[^5]    |\n| ویندوز 10 / 11                   |  🟢  |  🔴   | 🟢[^5] |   🟢[^5]   |     🟢      |      🟢       |   🟢[^5]    |\n| ویندوز 11 (26100.4188 و بعد) |  🟢  |  🔴   | 🟢[^5] |   🟢[^5]   |     🔴      |      🟢       |   🟢[^5]    |\n| سرور ویندوز 2008 / 2008 R2     |  🔴  |  🔴   |   🔴   |     🟢     |     🟢      |      🔴       |     🟢      |\n| سرور ویندوز 2012 / 2012 R2     |  🔴  |  🔴   |   🔴   |     🟢     |     🟢      |      🟢       |     🟢      |\n| سرور ویندوز 2016 و بعد     |  🔴  |  🔴   |   🟢   |     🟢     |     🟢      |      🟢       |     🟢      |\n| آفیس 2010                       |  🔴  |  🟢   |   🔴   |   🟢[^5]   |     🔴      |      🔴       |     🔴      |\n| آفیس 2013 و بالاتر              |  🔴  |  🟢   |   🔴   |   🟢[^5]   |   🟢[^6]    |    🟢[^6]     | 🟢[^5] [^6] |\n| ویندوز / آفیس KMS هاست         |  🔴  |  🔴   |   🔴   |     🔴     |     🟢      |      🟢       |     🔴      |\n| بروزرسانی‌های امنیتی گسترده‌ی ویندوز |  🔴  |  🔴   |   🔴   |     🔴     |     🟢      |      🟢       |     🔴      |\n| OCUR / RP / APPXLOB addons        |  🔴  |  🔴   |   🔴   |     🔴     |     🟢      |      🟢       |     🔴      |\n\n\n\n\n[^1]: ارائه شده توسط [TSforge](./tsforge).\n\n[^2]: تا سال 2038 معتبر است.\n\n[^3]: به طور پیش‌فرض برای 180 روز معتبر است. با نصب وظیفه‌ی تجدید دائم است.\n\n[^4]: برای 4083 سال معتبر است.\n\n[^5]: فقط ویرایش‌های capable of volume activation.\n\n[^6]: فقط در ویندوز 8 و بعدی پشتیبانی می‌شود؛ ویرایش‌های اشتراکی پشتیبانی نمی‌شوند.\n"
  },
  {
    "path": "docs/fa/wa/clean_install_windows.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'نصب تمیز ویندوز'\ndescription: 'راهنمای پشتیبان‌گیری از اطلاعات و نصب تمیز ویندوز.'\ndate: 2025-03-01\neditLink: true\nhead:\n  - - meta\n    - name: keywords\n      content: نصب تمیز, ویندوز, نصب مجدد برنامه‌ها، بکاپ گیری از اطلاعات\n---\n\n## پیش‌نیازها\n\n- یک فایل ISO اصلی ویندوز، می‌توانید از لینک‌های زیر دانلود کنید:\n  -   از [Dear Gravesoft][1]\n  -   یا مستقیماً از [Microsoft][2]\n- آخرین نسخه Rufus از [rufus][3]\n- یک درایو USB با حداقل حجم 8 گیگابایت\n- اگر فکر می‌کنید سیستم شما دارای بدافزار است، قبل از ساخت USB قابل بوت، این [راهنمای حذف بدافزار](./remove_malware) را دنبال کنید.\n\n::: details یک سیستم تمیز دیگر اگر سیستم فعلی شما به بدافزار آلوده شده است\n\n  **چرا؟**\n  زیرا بدافزار آلوده کننده فایل می‌تواند خود را به درایو USB قابل بوتی که برای نصب تمیز می‌سازید، کپی کند.\n  شما باید از یک سیستم تمیز دیگر برای ساخت USB قابل بوت استفاده کنید و آن را فقط زمانی به سیستم آلوده فعلی وصل کنید که ویندوز در حال اجرا نباشد.\n  **چگونه بررسی کنیم که آیا بدافزار آلوده کننده فایل دارید؟**\n  PowerShell را به عنوان مدیر باز کنید و وارد کنید\n  `sc.exe start \"sppsvc\" > $null 2>&1; Write-Host \"Error code: $LASTEXITCODE\"`\n  اگر خروجی 577 یا 225 باشد، به احتمال زیاد سیستم به بدافزار آلوده کننده فایل آلوده شده است.\n\n  **اگر سیستم تمیز دیگری ندارید چه؟**\n  می‌توانید Dr.Web [free.drweb.com/download][4] را برای حذف بدافزار آلوده کننده فایل امتحان کنید. با این حال در برخی موارد، ممکن است همه را حذف نکند، به همین دلیل بهتر است USB قابل بوت را روی یک سیستم تمیز دیگر بسازید.\n\n:::\n\n## پشتیبان‌گیری از اطلاعات شما\n\nفرآیند نصب تمیز، درایو C را که ویندوز در آن نصب شده است، فرمت می‌کند؛ اگر اطلاعاتی در درایو C دارید، باید از آن پشتیبان تهیه کنید.\n\nاگر چندین پارتیشن روی درایوهای خود دارید، مانند `C:\\ D:\\`\n- می‌توانید اطلاعات خود را از درایو C کپی کرده و در پارتیشن‌های دیگر جای‌گذاری کنید.\n- اطلاعات شما معمولاً در مکان زیر در درایو C قرار دارد،\n  - به این پوشه بروید `C:\\Users` و سپس حساب کاربری که از آن استفاده می‌کنید را انتخاب کنید.\n  - اطلاعات شما در پوشه‌های Desktop، Documents، Downloads، Music، Pictures و Videos ذخیره شده است.\n  - این پوشه‌ها را برای پشتیبان‌گیری در پارتیشن دیگری ذخیره کنید.\n\nاگر فقط `درایو C:\\` دارید\n- اطلاعات شما معمولاً در مکان زیر در درایو C قرار دارد،\n  - به این پوشه بروید `C:\\Users` و سپس حساب کاربری که از آن استفاده می‌کنید را انتخاب کنید.\n  - اطلاعات شما در پوشه‌های Desktop، Documents، Downloads، Music، Pictures و Videos ذخیره شده است.\n- اگر **مقدار کمی اطلاعات** برای پشتیبان‌گیری دارید، آن را در درایوهای آنلاین لیست شده در زیر یا درایو USB پس از قابل بوت کردن با Rufus ذخیره کنید.\n- اگر **مقدار زیادی اطلاعات** دارید که نمی‌توانید آن را در درایو خارجی یا درایو آنلاین ذخیره کنید،\n  - با استفاده از این [راهنما][5] یک پارتیشن دیگر ایجاد کنید\n  - اطلاعات خود را در آن پارتیشن تازه ایجاد شده ذخیره کنید.\n\n::: danger بسیار توصیه می‌شود\n\nتوصیه می‌شود که از اطلاعات حیاتی خود در برخی از درایوهای آنلاین نیز پشتیبان تهیه کنید، به عنوان مثال،\n\n- [GoogleDrive][6] → 15 گیگابایت رایگان\n- [OneDrive][7] → 5 گیگابایت رایگان\n- [Mega][8] → 20 گیگابایت رایگان\n- [Filen][9] → 10 گیگابایت رایگان\n\n:::\n\n<br/>\n\n## ایجاد یک USB قابل بوت با Rufus {#بووت}\n\n- درایو USB خود را به سیستم وصل کنید. (اطلاعات آن حذف خواهد شد.)\n- Rufus را که قبلاً دانلود کرده‌اید، اجرا کنید.\n- در منوی کشویی \"Device\"، درایو فلش USB خود را انتخاب کنید.\n- انتخاب بوت:\n  - روی \"SELECT\" کلیک کرده و فایل ISO ویندوز خود را انتخاب کنید. Rufus به طور خودکار تنظیمات بهینه را پیکربندی می‌کند.\n- روی \"START\" کلیک کنید.\n- منتظر بمانید تا Rufus USB قابل بوت را ایجاد کند. ممکن است چند دقیقه طول بکشد. پس از اتمام، \"READY\" را خواهید دید.\n\n## ویندوز 11 روی سخت‌افزار پشتیبانی نشده {#پشتیبانی-نشده}\n\n::: details Rufus می‌تواند به شما کمک کند\n\n- Rufus می‌تواند به شما در نصب ویندوز 11 روی سخت‌افزار پشتیبانی نشده کمک کند، اما با به‌روزرسانی‌های ویژگی‌های آینده با مشکل مواجه خواهید شد زیرا مایکروسافت اجازه این کار را روی چنین سخت‌افزاری نمی‌دهد.\n- برای حل این مشکل، باید نسخه IoT Enterprise 24H2 (2024) را نصب کنید که به طور [رسمی پشتیبانی می‌شود][10] روی سخت‌افزار پشتیبانی نشده. نگران نباشید که این یک نسخه غیرمعمول است؛ از نظر باینری با سایر نسخه‌ها یکسان است و تفاوت اصلی در مجوز است.\n- این نسخه IoT Enterprise در 2 طعم ارائه می‌شود،\n  - IoT Enterprise (GAC، کانال در دسترس بودن عمومی)\n  - IoT Enterprise (LTSC، کانال سرویس‌دهی بلندمدت)\n- سوال بعدی، چگونه این نسخه را نصب کنیم؟\n  - برای نسخه GAC، نیازی به ISO IoT Enterprise ندارید، می‌توانید به سادگی از ISO مصرف‌کننده (لینک شده در بالا) یا تجاری معمولی ویندوز 11 24H2 استفاده کنید.\n  - برای نسخه LTSC، باید نسخه کامل ISO LTSC را دانلود کنید (از eval استفاده نکنید)، لازم نیست ISO IoT باشد، می‌توانید یک ISO LTSC معمولی را به زبان خود دانلود کنید.\n  - پس از فلش کردن ISO مورد نیاز با استفاده از Rufus، به پوشه `\\sources\\` در درایو USB بروید و یک فایل به نام `PID.txt` ایجاد کنید (اطمینان حاصل کنید که پسوند فایل صحیح است). این فایل را با Notepad باز کرده و متن زیر را وارد کنید.\n    - برای نسخه GAC\n\n```reg\n  [PID]\n  Value=XQQYW-NFFMW-XJPBH-K8732-CKFFD\n```\n\n    - برای نسخه LTSC\n\n```reg\n  [PID]\n  Value=CGK42-GYN6Y-VD22B-BX98W-J8JXD\n```\n\n- هنگام نصب ویندوز، مطمئن شوید که از نسخه قدیمی نصب‌کننده استفاده نمی‌کنید.\n- همین. نصب به طور خودکار نسخه IoT Enterprise را انتخاب می‌کند.\n\nدر غیر این صورت، اگر نمی‌خواهید این کار را انجام دهید، می‌توانید ویندوز را به طور معمول نصب کرده و بعداً نسخه را به IoT Enterprise تغییر دهید.\n\n:::\n\n<br/>\n\n## لیست نسخه‌ها در حین نصب ویندوز\n\n::: details اگر سیستم شما دارای مجوز OEM است\n\n- اگر سیستم شما دارای مجوز OEM است که توسط سازنده روی مادربرد نصب شده است، نصب ویندوز لیست نسخه‌ها را نشان نمی‌دهد و به طور خودکار نسخه را بر اساس مجوز روی مادربرد انتخاب می‌کند.\n- اگر چنین سخت‌افزاری دارید و می‌خواهید لیست نسخه‌های موجود برای نصب ویندوز را مشاهده کنید، مراحل زیر را دنبال کنید.\n- پس از فلش کردن ISO مورد نیاز با استفاده از Rufus، به پوشه `\\sources\\` در درایو USB بروید و یک فایل به نام `ei.cfg` ایجاد کنید (اطمینان حاصل کنید که پسوند فایل صحیح است). این فایل را با Notepad باز کرده و متن زیر را وارد کنید.\n\n```reg\n[Channel]\nNoKeyChannel\n```\n\n- اکنون می‌توانید لیست نسخه‌ها را مشاهده کرده و نسخه مورد نظر خود را از ویندوز ویستا تا ویندوز 11 انتخاب کنید. همچنین به شما کمک می‌کند تا از نصب کلید در نصب ویندوز 8/8.1 که در آن نمی‌توان از نصب کلید صرف‌نظر کرد، جلوگیری کنید.\n- در ویندوز 11 24H2، نصب‌کننده جدید از این پشتیبانی نمی‌کند، بنابراین باید گزینه \"نصب‌کننده قدیمی\" را هنگام شروع نصب انتخاب کنید.\n- اگر از PID.txt استفاده می‌کنید، لطفاً توجه داشته باشید که بر ei.cfg اولویت دارد.\n\n:::\n\n## نصب تمیز ویندوز {#تمیز}\n\n- تمام درایوهای خارجی یا داخلی غیر بوتی را برای کاهش خطرات نصب، قطع کنید.\n- کامپیوتر خود را مجدداً راه‌اندازی کرده و از درایو فلش USB بوت کنید، که معمولاً با فشار دادن F11 یا F12 در هنگام راه‌اندازی قابل دسترسی است. اگر برای شما کار نمی‌کند، نوع دستگاهی را که دارید و به دنبال آن \"کلید منوی بوت\" را در گوگل جستجو کنید، به عنوان مثال، \"کلید منوی بوت Asus Zephyrus G14\" و نتایج مربوط به شماره مدل خود را پیدا کنید.\n- دستورالعمل‌های روی صفحه را دنبال کنید.\n  - برای نصب تمیز، \"Custom: Install Windows only (advanced)\" را انتخاب کنید.\n  - تمام پارتیشن‌های روی درایو بوت را حذف کنید، یا اگر می‌خواهید پارتیشن‌های داده را ذخیره کنید، فقط درایو C و سایر پارتیشن‌های کوچک سیستم را حذف کرده و فضای تخصیص نیافته ایجاد شده را انتخاب کنید.\n  - برای شروع نصب روی \"Next\" کلیک کنید. ویندوز به طور خودکار پارتیشن‌های لازم را ایجاد می‌کند.\n\n## رفع مشکلات\n\nاگر سوالی دارید، ابتدا صفحه [**سوالات پرتکرار**](./faq) را مرور کنید — به احتمال زیاد جواب‌تان اینجاست.\n\nاگر همچنان مشکل پابرجا بود با ما [**در تماس**](./troubleshoot) باشید.\n\n\n[1]: https://msdl.gravesoft.dev/\n[2]: https://www.microsoft.com/en-us/software-download\n[3]: https://rufus.ie/\n[4]: https://free.drweb.com/download+cureit/gr\n[5]: https://youtu.be/_HgjasKuOBw\n[6]: https://drive.google.com/\n[7]: https://onedrive.live.com/\n[8]: https://mega.io/\n[9]: https://filen.io/\n[10]: https://learn.microsoft.com/en-us/windows/iot/iot-enterprise/Hardware/System_Requirements?tabs=Windows11LTSC#optional-minimum-requirements\n[11]: https://github.com/NiREvil/windows-activation/discussions/new/choose\n"
  },
  {
    "path": "docs/fa/wa/command_line_switches.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'سوئیچ‌های خط فرمان'\ndescription: 'می‌توانید از سوئیچ‌ها در MAS AIO، نسخه فایل‌های جداگانه و در یک خطی پاورشل برای اجرا در حالت بدون نظارت استفاده کنید.'\ndate: 2023-02-06\neditLink: true\n---\n\n# سوئیچ‌های خط فرمان\n\n::: info نکته\n\n- می‌توانید از سوئیچ‌های زیر در MAS AIO، نسخه فایل‌های جداگانه و در یک خطی پاورشل برای اجرا در حالت بدون نظارت استفاده کنید.\n\n- اگر می‌خواهید از MAS برای پیش‌فعال‌سازی ویندوز استفاده کنید، برای جزئیات بیشتر صفحه [oem-folder](./oem-folder) را بررسی کنید.\n\n:::\n\n<br/> \n\n### HWID\n\n| سوئیچ‌ها                | معنی                                                                                                                                                                                   |\n| ----------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `/HWID`                 | فعال‌سازی با HWID                                                                                                                                                                        |\n| `/HWID-NoEditionChange` | برخی از نسخه‌ها از HWID پشتیبانی نمی‌کنند، بنابراین به طور پیش‌فرض اسکریپت نسخه را به نزدیک‌ترین نسخه موجود برای فعال‌سازی تغییر می‌دهد. این سوئیچ HWID را بدون اجازه تغییر نسخه اجرا می‌کند. |\n\n<br/> \n\n### Ohook\n\n| سوئیچ‌ها           | معنی                          |\n| ------------------ | -------------------------------- |\n| `/Ohook`           | نصب Ohook برای فعال‌سازی آفیس |\n| `/Ohook-Uninstall` | حذف Ohook                  |\n\n<br/> \n\n### TSforge\n\n| سوئیچ‌ها                     | معنی                                                                                                                                                                                               |\n| ---------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `/Z-Windows`                 | فعال‌سازی فقط ویندوز با TSforge                                                                                                                                                                    |\n| `/Z-ESU`                     | فعال‌سازی فقط ESU با TSforge                                                                                                                                                                        |\n| `/Z-Office`                  | فعال‌سازی فقط آفیس با TSforge                                                                                                                                                                     |\n| `/Z-ProjectVisio`            | فعال‌سازی فقط Project/Visio با TSforge                                                                                                                                                              |\n| `/Z-WindowsESUOffice`        | فعال‌سازی همه ویندوز / ESU / آفیس با TSforge                                                                                                                                                      |\n| `/Z-WinHost`                 | فعال‌سازی فقط میزبان KMS ویندوز با TSforge                                                                                                                                                           |\n| `/Z-OffHost`                 | فعال‌سازی فقط میزبان KMS آفیس با TSforge                                                                                                                                                            |\n| `/Z-APPX`                    | فعال‌سازی فقط 8/8.1 APPXLOB با TSforge                                                                                                                                                              |\n| `/Z-ID-ActivationIdGoesHere` | برای مشخص کردن یک شناسه فعال‌سازی برای فعال‌سازی، که در آن ActivationIdGoesHere باید برای شناسه فعال‌سازی ویرایش شود. اگر می‌خواهید چندین مورد را از طریق پارامترها اضافه کنید، هر کدام را در پارامترهای جداگانه ارسال کنید |\n| `/Z-Reset`                   | بازنشانی شمارنده rearm، دوره ارزیابی و پاک کردن حالت دستکاری، قفل کلید                                                                                                                           |\n\n**تغییر روش فعال‌سازی:**\n\nبرای بیلدهای 19041 و بالاتر، اسکریپت به طور خودکار StaticCID را انتخاب می‌کند (نیاز به اتصال به اینترنت دارد). اگر اتصال به اینترنت شناسایی نشود، به طور خودکار به روش KMS4k تغییر می‌کند.\nبرای بیلدهای قبل از 19041، اسکریپت به طور خودکار ZeroCID را انتخاب می‌کند.\n\nبرای لغو این انتخاب خودکار و استفاده از یک روش فعال‌سازی خاص، می‌توانید سوئیچ‌های زیر را در ترکیب با سوئیچ‌های ذکر شده در بالا اعمال کنید.\n\n<br/>\n\n| سوئیچ‌ها   | معنی                                                                                                                                                          |\n| ---------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `/Z-SCID`  | استفاده اجباری از روش فعال‌سازی StaticCID. به اینترنت نیاز دارد و روی ویندوز 7 و نسخه‌های قدیمی‌تر کار نمی‌کند.                                                      |\n| `/Z-ZCID`  | استفاده اجباری از روش فعال‌سازی ZeroCID. روی بیلدهای زیر 19041 به طور قابل اعتماد کار می‌کند، ممکن است روی بیلدهای بین 19041-26100 خراب شود و روی بیلدهای بالای 26100.4188 کار نمی‌کند. |\n| `/Z-KMS4k` | فقط مجوزهای حجمی. برای بیش از 4000 سال فعال می‌شود.                                                                                                                 |\n\nb<br/>\n\n### KMS38\n\n| سوئیچ‌ها                  | معنی                                                                                                                                                                                     |\n| ------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `/KMS38`                  | فعال‌سازی با KMS38                                                                                                                                                                         |\n| `/KMS38-NoEditionChange`  | برخی از نسخه‌ها از KMS38 پشتیبانی نمی‌کنند، بنابراین به طور پیش‌فرض اسکریپت نسخه را به نزدیک‌ترین نسخه موجود برای فعال‌سازی تغییر می‌دهد. این سوئیچ KMS38 را بدون اجازه تغییر نسخه اجرا می‌کند. |\n| `/KMS38-RemoveProtection` | حذف حفاظت KMS38                                                                                                                                                                     |\n\n### آنلاین KMS\n\n| سوئیچ‌ها                      | معنی                                                                                                                                                       |\n| ----------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `/K-Windows`                  | فعال‌سازی فقط ویندوز با آنلاین KMS                                                                                                                         |\n| `/K-Office`                   | فعال‌سازی فقط آفیس با آنلاین KMS                                                                                                                          |\n| `/K-ProjectVisio`             | فعال‌سازی فقط Project/Visio با آنلاین KMS                                                                                                                   |\n| `/K-WindowsOffice`            | فعال‌سازی همه ویندوز و آفیس با آنلاین KMS                                                                                                               |\n| `/K-NoEditionChange`          | برخی از نسخه‌ها از KMS پشتیبانی نمی‌کنند، اسکریپت به طور پیش‌فرض نسخه را به نزدیک‌ترین نسخه موجود برای فعال‌سازی KMS تغییر می‌دهد. از این سوئیچ می‌توان برای متوقف کردن این تغییر استفاده کرد. |\n| `/K-NoRenewalTask`            | هر زمان که هرگونه فعال‌سازی را اجرا می‌کنید، اسکریپت به طور پیش‌فرض وظیفه تمدید خودکار را نصب می‌کند. برای عدم نصب خودکار وظیفه تمدید با فعال‌سازی، از این سوئیچ استفاده کنید.     |\n| `/K-Uninstall`                | حذف آنلاین KMS شامل وظایف تمدید                                                                                                                  |\n| `/K-Server-YOURKMSSERVERNAME` | برای مشخص کردن یک آدرس سرور برای فعال‌سازی، که در آن YOURKMSSERVERNAME باید برای نام سرور ویرایش شود                                                        |\n| `/K-Port-YOURPORTNAME`        | برای مشخص کردن یک پورت برای فعال‌سازی، که در آن YOURPORTNAME باید برای آدرس پورت ویرایش شود                                                                      |\n\n```\n/S\nعملیات را در حالت بی‌صدا اجرا کنید (بدون خروجی اما پنجره CMD همچنان ظاهر می‌شود)\n```\n\n<br/>\n\n## استفاده در یک خطی پاورشل\n\n```reg\n& ([ScriptBlock]::Create((irm https://get.activated.win))) /para\n```\n\n- `/para` را در این دستور با سوئیچ‌های جدول بالا جایگزین کنید. همچنین می‌توانید از چندین سوئیچ استفاده کنید. به عنوان مثال، `/HWID /Ohook`\n- این یک خطی پاورشل فقط روی ویندوز 8.1 و بالاتر کار می‌کند.\n- برای تغییر نسخه از طریق خط فرمان، [اینجا](./change_windows_edition#تغییر-نسخه-دستی) را بررسی کنید. ما آن را در MAS خودکار نکردیم زیرا در برخی موارد نیاز به راه‌اندازی مجدد دارد.\n\n## قوانین\n\n- اسکریپت در صورت استفاده از هر سوئیچ در حالت بدون نظارت اجرا می‌شود.\n- سوئیچ `/S` در اسکریپت‌های نسخه فایل‌های جداگانه MAS قابل استفاده نیست.\n- همه سوئیچ‌ها به حروف بزرگ و کوچک حساس نیستند و به هر ترتیبی کار می‌کنند، اما باید با فاصله از هم جدا شوند.\n- سوئیچ حذف KMS بر سایر سوئیچ‌های KMS اولویت دارد.\n- سوئیچ حذف حفاظت KMS38 بر فعال‌سازی KMS38 اولویت دارد.\n\n::: danger رفع مشکلات\n\nاگر سوالی دارید، ابتدا صفحه [**سوالات متداول**](./faq) را مرور کنید — به احتمال زیاد جواب‌تان اینجاست.\nاگر همچنان مشکل پابرجا بود — با ما [**در ارتباط**](./troubleshoot) باشید.\n:::\n"
  },
  {
    "path": "docs/fa/wa/credits.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'قدردانی'\ndescription: 'این پروژه بدون کمک مهربانانه و استفاده از ابزارها و اسکریپت‌های توسعه‌دهندگان محترم دیگر امکان‌پذیر نبود'\ndate: 2022-02-02\neditLink: true\n---\n# قدردانی\n\nپروژه MAS بدون کمک مهربانانه و استفاده از ابزارها و اسکریپت‌های توسعه‌دهندگان محترم دیگر امکان‌پذیر نبود. من می‌خواهم از همه آن افراد و پروژه‌های فوق‌العاده تشکر کنم.\n\n### مشارکت‌های روش‌های فعال‌سازی\n\n| روش‌های فعال‌سازی | مشارکت‌کنندگان                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |\n|--------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| HWID               | [**asdcorp**](https://github.com/asdcorp) - [روش اصلی HWID](https://nsaneforums.com/topic/316668-microsoft-activation-scripts/page/29/#comment-1497887)، ابداع مجدد HWID پس از [مسدود شدن ارتقاء رایگان](https://devicepartner.microsoft.com/en-us/communications/comm-windows-ends-installation-path-for-free-windows-7-8-upgrade)، [GamersOsState](https://github.com/asdcorp/GamersOsState)، [Integrated_Patcher](https://github.com/asdcorp/Integrated_Patcher_3)  <br /> [**May**](https://github.com/ave9858) - بلیط جهانی برای HWID <br /> [**vyvojar**](https://github.com/vyvojar) - [slshim](https://app.box.com/s/y71tpcamofcg6zv6k7by6gaex6om3q4d) (دیگر استفاده نمی‌شود) <br /> [**sponpa, leitek8**](https://nsaneforums.com/topic/316668-microsoft-activation-scripts/page/21/?tab=comments#comment-1431257) - بهبودهای slc.dll (دیگر استفاده نمی‌شود)                                                                                                                                   |\n| Ohook              | [**asdcorp**](https://github.com/asdcorp/ohook)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |\n| TSforge            | **تحقیق و توسعه اصلی** <br /> [**WitherOrNot**](https://github.com/WitherOrNot) - رهبری توسعه ابزار، مهندسی معکوس، آزمایش <br /> [**asdcorp**](https://github.com/asdcorp) - نمایش‌های اولیه، مهندسی معکوس، توسعه ابزار، آزمایش <br /> [**abbodi1406**](https://github.com/abbodi1406) - مهندسی معکوس، توسعه، آزمایش <br /> [**Lyssa**](https://github.com/thecatontheceiling) - مهندسی معکوس، توسعه ابزار، آزمایش <br /> <br /> **سایر مشارکت‌ها** <br /> [**Emma (IPG)**](https://github.com/InvoxiPlayGames) - [SPSys IOCTLs](https://github.com/InvoxiPlayGames/vistaspctl) ویستا و فرمت ذخیره فیزیکی <br /> [**May**](https://github.com/ave9858) - قالب‌بندی کد، راه‌اندازی ساخت <br /><br /> **تشکر ویژه** <br /> [**BetaWiki**](https://betawiki.net/) - مستندسازی بیلدهای بتا مورد استفاده برای مهندسی معکوس <br /> [**Rairii**](https://github.com/Wack0) - کمک در تلاش‌های اولیه مهندسی معکوس |\n| KMS38              | [**asdcorp**](https://github.com/asdcorp) - روش اصلی KMS38 <br />  [**May**](https://github.com/ave9858) - بلیط جهانی برای KMS38                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |\n| آنلاین KMS         | [**WindowsAddict**](https://github.com/WindowsAddict) - فورک شده از [KMS_VL_ALL](https://github.com/abbodi1406/KMS_VL_ALL_AIO) [abbodi1406](https://github.com/abbodi1406) <br /><br /> **تقدیر و تشکر** <br /> [**انجمن‌های MDL**](https://forums.mydigitallife.net/forums/51/) - خانه شبیه‌سازهای KMS <br /> [**Hotbird64**](https://forums.mydigitallife.net/threads/50234/) - ابزار پرکاربرد vlmcsd و توسعه منبع KMSEmulator                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |\n\n### تحقیق و توسعه MASSGRAVE\n\n| موجودیت                                         | مشارکت                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |\n|------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| [asdcorp](https://github.com/asdcorp)          | [[HWID/KMS38](https://nsaneforums.com/topic/316668-microsoft-activation-scripts/page/29/#comment-1497887)] [ابداع مجدد HWID پس از [مسدود شدن ارتقاء رایگان](https://devicepartner.microsoft.com/en-us/communications/comm-windows-ends-installation-path-for-free-windows-7-8-upgrade)] [[TSforge](https://github.com/massgravel/TSforge)] [[GamersOsState](https://github.com/asdcorp/GamersOsState)] [[Integrated_Patcher](https://github.com/asdcorp/Integrated_Patcher_3)] [[Rearm](https://github.com/asdcorp/rearm)] [[Set-WindowsCbsEdition](https://github.com/asdcorp/Set-WindowsCbsEdition)] [[clic](https://github.com/asdcorp/clic)] [مهندسی معکوس و توسعه ابزار] [مواد برندینگ] [کمک بزرگ] |\n| [WitherOrNot](https://github.com/WitherOrNot)  | [[TSforge](https://github.com/massgravel/TSforge)] [[winkeycheck](https://github.com/WitherOrNot/winkeycheck)] [[Keyhole](https://massgrave.dev/blog/keyhole)] [[warbird-docs](https://github.com/WitherOrNot/warbird-docs)] [[TSPKgen](https://gist.github.com/WitherOrNot/c34c4c7b893e89ab849ce04e007d89a9)]  [مهندسی معکوس و توسعه ابزار]                                                                                                                                                                                                                                                                                                                                                                                                                                                  |\n| [abbodi1406](https://github.com/abbodi1406)    | [[TSforge](https://github.com/massgravel/TSforge)] [[CAS](https://gravesoft.dev/cas)] [[KMS_VL_ALL](https://github.com/abbodi1406/KMS_VL_ALL_AIO) (آنلاین KMS فورکی از آن است)] [مهندسی معکوس و توسعه ابزار] [کمک و حل مشکلات فراوان]                                                                                                                                                                                                                                                                                                                                                                                                                                                           |\n| [awuctl](https://github.com/awuctl)            | [[hwid-stuff](https://github.com/massgravel/hwid-stuff)] [[licensing-stuff](https://github.com/awuctl/licensing-stuff)] [[info](https://github.com/massgravel/activation)] [[MVS Dump](https://github.com/awuctl/mvs)] [مهندسی معکوس و توسعه ابزار] (در حال حاضر بازنشسته)                                                                                                                                                                                                                                                                                                                                                                                                                                    |\n| [Lyssa](https://github.com/thecatontheceiling) | [مسکات رسمی] [[TSforge](https://github.com/massgravel/TSforge)] [[LyssaRDSGen](https://github.com/thecatontheceiling/LyssaRDSGen)] [مهندسی معکوس و توسعه ابزار]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |\n| [May](https://github.com/ave9858)              | [بلیط جهانی برای HWID/KMS38] [روش DISM Api برای تغییر نسخه ویندوز] [[CleanOffice.ps1](https://gist.github.com/ave9858/9fff6af726ba3ddc646285d1bbf37e71)] [[Keyhole](https://massgrave.dev/blog/keyhole)] [مهندسی معکوس و توسعه ابزار] [کمک بزرگ]                                                                                                                                                                                                                                                                                                                                                                                                                                              |\n| [WindowsAddict](https://github.com/WindowsAddict)                           | نویسنده MAS\n\n### سایر مشارکت‌ها\n\n| موجودیت                                                                      | مشارکت                                         |\n|-----------------------------------------------------------------------------|------------------------------------------------------|\n| [Enthousiast](https://forums.mydigitallife.net/members/enthousiast.104688/) | آپلودهای ISO                                          |\n| [BetaWiki](https://betawiki.net/)                                           | مستندسازی بیلدهای بتا مورد استفاده برای مهندسی معکوس |\n| [انجمن‌های MDL](https://forums.mydigitallife.net/forums/51/)                   | منابع مفید                                    |\n\nو همچنین از کاربران عزیز برای علاقه، بازخورد و کمک‌هایشان قدردانی و تشکر می‌کنیم. 🤍\n"
  },
  {
    "path": "docs/fa/wa/evaluation_editions.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'نسخه‌های ارزیابی ویندوز'\ndescription: 'راهنمای جامع نسخه‌های ارزیابی ویندوز برای متخصصان IT و ترجمه فارسی'\ndate: 2023-02-5\neditLink: true\n---\n\n# نسخه‌های ارزیابی ویندوز\n\n::: danger نسخه‌های اریابی\n\n**نسخه‌های ارزیابی یا Evaluation Editions**\n\n- نسخه‌های آزمایشی و رسمی از سیستم‌عامل ویندوز هستند\n- توسط مایکروسافت منتشر می‌شوند\n-  این نسخه‌ها برای تست امکانات، سازگاری و آشنایی با ویژگی‌های ویندوز (نسخه اینترپرایز و سرور) پیش از خرید نهایی مناسب‌اند\n\n- **دریافت:** [مرکز ارزیابی مایکروسافت][1]\n- **در دسترس:** Windows 10/11 Enterprise و تمامی نسخه‌های Server\n\n:::\n\n::: tip نکته مهم\n\nپس از پایان دوره آزمایشی، امکان فعال‌سازی این نسخه‌ها وجود ندارد. اگر نیاز به استفاده بلندمدت دارید، حتماً [نسخه اصلی](./genuine-installation-media) را نصب کنید.\n\n:::\n\n### تفاوت نسخه کامل و ارزیابی\n\n- **دوره آزمایشی:** ۹۰ روز برای اینترپرایز، ۱۸۰ روز برای سرور\n- **فعال‌سازی:** پس از پایان دوره، هیچ کلید یا لایسنس دیجیتال/کی‌ام‌اس کار نمی‌کند\n- **پس از اتمام دوره:** هشدار فعال‌سازی نمایش داده می‌شود و سیستم ممکن است به صورت خودکار ری‌استارت شود\n- **فعال‌سازی دائم:** روی نسخه‌های ارزیابی پشتیبانی نمی‌شود\n\n### تبدیل نسخه ارزیابی به نسخه کامل\n\n> ویندوز 10/11 اینترپرایز\n\nتبدیل مستقیم پشتیبانی نمی‌شود، اما با ارتقاء از طریق ISO و تغییر رجیستری ممکن است:\n\n:::tabs\n\n== Enterprise LTSC\n\nFor **Enterprise LTSC editions**\n\n۱. فایل ISO مربوط به نسخه LTSC و زبان/معماری همان ویندوز را [از اینجا][2] دانلود کنید  \n۲. روی فایل ISO راست‌کلیک و گزینه Open with Windows Explorer را انتخاب کنید  \n۳. خط فرمان را با دسترسی ادمین باز کنید و دستور زیر را بزنید:\n\n```reg\nreg add \"HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\" /v EditionID /d EnterpriseS /f\n```\n\n**(برای ویندوز ۱۱ روی سخت‌افزار ناسازگار، به جای `EnterpriseS` از `IoTEnterpriseS` استفاده کنید)**\n\n۴. از درایو مجازی، فایل setup.exe را اجرا کنید و گزینه \"نگه داشتن فایل‌ها و برنامه‌ها\" را انتخاب کنید  \n۵. مراحل ارتقاء را کامل کنید\n\n== Enterprise GAC\n\n**Enterprise GAC**\n\n۱. فایل ISO نسخه عادی را از [MSDL][3] دانلود کنید.  \n۲. آن را مانت کنید.  \n۳. خط فرمان (CMD) را با مجوز ادمین اجرا و دستور زیر را اجرا کنید:\n\n```reg\nreg add \"HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\" /v EditionID /d Enterprise /f\n```\n\n**(برای ویندوز ۱۱ روی سخت‌افزار ناسازگار، از `IoTEnterprise` استفاده کنید)**\n\n۴. فایل setup.exe را اجرا و در صورت نیاز کلید `NPPR9-FWDCX-D2C8J-H872K-2YT43` را وارد کنید  \n۵. مطمئن شوید گزینه \"نگه داشتن فایل‌ها و برنامه‌ها\" انتخاب شده است\n\n:::\n\n#### ویندوز سرور\n\nتبدیل رسمی پشتیبانی می‌شود. [راهنمای مایکروسافت][4] را ببینید یا از [اسکریپت MAS](./intro#مرحله-۲) استفاده کنید.\n\n### افزایش دوره ارزیابی\n\n- **پیش‌فرض:** ۹۰ روز (Enterprise)، قابل تمدید تا ۲۷۰ روز با دستور\n\n```reg\nslmgr /rearm\n```\n  \n- **روش دیگر:** استفاده از گزینه TSforge در MAS یا ریست رجیستری [gravesoft.dev](./fix-wpa-registry)\n\n### پرهیز از تغییر فایل لایسنس\n\nجایگزینی فایل لایسنس نسخه کامل روی نسخه ارزیابی توصیه نمی‌شود، ممکن است به روزرسانی‌ها، شناسایی نسخه و ... را مختل کند.  \nهمیشه از روش‌های رسمی برای ارتقاء یا تمدید استفاده کنید.\n\n::: tip نکته\n\n- فعال‌سازی نسخه LTSC 2021 ممکن است به خاطر کلید نادرست خطا دهد — برای رفع مشکل از [TSforge](./tsforge) کمک بگیرید.\n\n:::\n\n::: danger رفع مشکلات\n\nاگر سوالی دارید، ابتدا صفحه [**سوالات پرتکرار**](./faq) را مرور کنید — به احتمال زیاد جواب‌تان اینجاست.\nاگر همچنان مشکل پابرجا بود — با ما [**در ارتباط**](./troubleshoot) باشید.\n\n:::\n\n\n[1]: https://www.microsoft.com/en-us/evalcenter\n[2]: https://massgrave.dev/windows_ltsc_links\n[3]: https://msdl.gravesoft.dev/\n[4]: https://learn.microsoft.com/en-us/windows-server/get-started/upgrade-conversion-options\n[5]: https://gravesoft.dev/fix-wpa-registry\n[6]: https://github.com/NiREvil/windows-activation/discussions\n"
  },
  {
    "path": "docs/fa/wa/faq.md",
    "content": "---\nlayout: doc\noutline: deep\nlang: fa-IR\ndir: rtl\ntitle: 'سوالات متداول'\ndescription: 'پاسخ به سوالات پرتکرار کاربران'\ndate: 2025-07-04\neditLink: true\n---\n\n# سوالات متداول (FAQ)\n\nبه بخش سوالات متداول MAS خوش آمدید! اگر سوالی دارید، ابتدا همین صفحه رو مرور کنید — به احتمال زیاد جواب‌تان اینجاست. اگر هنوز سوالی داشتید، با ما [در تماس باشید](#مشکلات) تا راهنمایی‌تان کنیم.\n\n<br/>\n\n## شروع به کار با **MAS**\n\n> **`Microsoft Activation Scripts`**\n\n### چطور از MAS استفاده کنم؟\n\nبرای راه‌اندازی دائمی ویندوز با HWID، راهنمای [فعالسازی دائمی با HWID](./index#مرحله-۲) را بخوانید.\n\n<br/>\n\n### فعال‌سازی دائمی ویندوز چگونه انجام می‌شود؟\n\nدر فعال‌ساز، گزینه `HWID` را انتخاب کنید.\n\n<br/>\n\n### دانلود و نصب آفیس به چه صورت است؟\n\nراهنمای [نصب نسخه های اصیل آفیس](./genuine-installation-media) را دنبال کنید.\n\n<br/>\n\n### فعال‌سازی دائمی آفیس چطور انجام می‌شود؟\n\nدر فعال‌ساز، گزینه `Ohook` را انتخاب کنید.\n\n<br/>\n\n## مشکلات رایج و راه‌حل‌ها\n\n### اگر فعال‌سازی با خطا مواجه شد، چه کنم؟\n\nراهنمای [عیب‌یابی](./troubleshoot) را ببینید.\n\n<br/>\n\n### آیا MAS امن است؟ چطور مطمئن شوم که آلوده به بدافزار نیست؟\n\nپروژه کاملاً اوپن سورس هست و بیش از ۱۲۵ هزار استار در [GitHub][1] داره و میلیون‌ها کاربر از اون استفاده می‌کنن.  \nشما می‌تونید [کد پروژه][8] رو با Notepad ویندوز یا MT Manager موبایل یا با کمک هوش‌های مصنوعی زیر یا هرکدوم دیگه تحلیل و بررسی کنید.   \n[Gemini] - [Jules] - [Claude] - [ChatGPT] - [Grok] - [Perplexity] - [Qwen] - [GenSpark]\n\nاگر مایل بودید، فعال‌سازی دستی رو مطابق [این راهنما](./manual_hwid_activation) انجام بدید.\n\n<br/>\n\n### چطور فعال‌سازی HWID، Ohook، TSforge، KMS38 یا Online KMS را حذف کنم؟\n\nاسکریپت MAS از روش‌های فعال‌سازی مختلفی استفاده می‌کند، برای دستورالعمل‌های حذف هر کدام به لینک مربوط به آن مراجعه کنید:\n\n[❌حذف HWID](./hwid#چگونه-hwid-را-حذف-کنیم)\n\n[❌حذف Ohook](./ohook#چگونه-ohook-را-حذف-کنیم)\n\n[❌حذف TSforge](./tsforge#چگونه-tsforge-را-حذف-کنیم)\n\n[❌حذف KMS38](./kms38#چگونه-kms38-را-حذف-کنیم)\n\n[❌حذف Online KMS](./online_kms#چگونه-آنلاین-kms-را-حذف-کنیم)\n\n<br/> \n\n::: danger نکات تکمیلی\n\n::: details راهنمای حذف یا لغو اشتراک‌ها\n\n- **HWID:** لایسنس دیجیتال روی سرورهای مایکروسافت ذخیره شده و به سخت‌افزار شما متصل است. این نمی‌تواند به معنای سنتی `حذف` شود. تغییر عمده سخت‌افزار (مانند مادربرد) آن را `باطل` می‌کند. برای بازگشت به حالت غیرفعال، می‌توانید یک کلید عمومی [KMS](./kms38#چگونه-kms38-را-حذف-کنیم) نصب کنید. [جزئیات تکمیلی hwid](./hwid#چگونه-hwid-را-حذف-کنیم)\n\n\n- **Online KMS / Ohook / KMS38:** از گزینه متناظر `Uninstall` یا `Remove` در منوی اسکریپت [MAS](#مرحله-۲) استفاده کنید، سپس گزینه \"Fix Licensing\" را از منوی Troubleshoot اجرا کنید. [جزئیات KMS آنلاین](./online_kms#چگونه-آنلاین-kms-را-حذف-کنیم) و [جزئیات KMS38](./kms38#چگونه-kms38-را-حذف-کنیم)\n\n\n- **TSforge:** این روش فقط داده‌ها را اضافه می‌کند و فایلی نصب نمی‌کند. برای بازنشانی آن، کافی است گزینه `Fix Licensing` را از منوی Troubleshoot در اسکریپت MAS اجرا کنید. [جزئیات TSforge](./tsforge#چگونه-tsforge-را-حذف-کنیم) و [جزئیات Ohook](./ohook#چگونه-ohook-را-حذف-کنیم)\n\n:::\n\n<br/>\n\n### چگونه به‌روزرسانی‌های امنیتی ویندوز ۱۰ رو پس از اکتبر ۲۰۲۵ دریافت کنیم؟\n\nشما می‌توانید از [گزینه TSforge در MAS](index#مرحله-۲) برای فعال‌سازی ESU سه ساله (اکتبر ۲۰۲۵ تا اکتبر ۲۰۲۸) استفاده کنید. [اطلاعات بیشتر](./windows10_eol).\n\n## سوالات مربوط به ویندوز و آفیس\n\n### چطور نسخه کامل Windows 10/11 Enterprise LTSC رو دانلود کنم؟\n\nراهنمای [دریافت فایل‌های رسمی](./genuine-installation-media) را ببینید.\n\n<br/> \n\n### آیا میتونم نسخه ویندوز رو از Home به Pro تغییر بدم؟\n\nبله، در فعال‌ساز، گزینه `Change Windows Edition` را انتخاب کنید.\n\n<br/>\n\n### آیا با تغییر نسخه ویندوز (مثلاً از Home به Pro) اطلاعاتم حذف میشه؟\n\nخیر، اطلاعات شما حذف نمی‌شود.\n\n<br/>\n\n### بعد از تغییر نسخه ویندوز، غیر فعال شده است؛ چه کنم؟\n\nکافیست فعال‌سازی `HWID` را برای نسخه جدید انجام دهید؛ هر نسخه نیاز به فعال‌سازی مجزا دارد.\n\n<br/>\n\n### آیا می‌توانم اکانت مایکروسافت را با MAS فعال نگه دارم؟\n\nبله، این کار بدون مشکل و امن است.\n\n<br/>\n\n### آیا بعد از فعال‌سازی، ویندوز و آفیس آپدیت می‌شوند؟\n\nبله، به‌روزرسانی‌ها بدون مشکل ادامه پیدا می‌کنند.\n\n<br/>\n\n## سوالات ویژه آفیس\n\n### من در روسیه هستم و آفیس دانلود نمی‌شود؛ راه‌حل چیست؟\n\nراهنمای [دور زدن محدودیت][2] را مطالعه کنید.\n\n<br/>\n\n### آیا می‌توانم Office 365 را فعال کنم؟\n\nبله؛ از گزینه `Ohook` استفاده کنید. توجه داشته باشید برخی قابلیت‌های سروری (مانند ۱ ترابایت OneDrive) فقط برای مشترکین رسمی فعال است، اما اکثر امکانات و ۵ گیگابایت فضای رایگان فعال می‌شود.\n\n<br/>\n\n### آیا می‌توانم Copilot را در آفیس داشته باشم؟\n\nخیر؛ [Copilot][3] یک سرویس اضافه برای مشترکین رسمی مایکروسافت ۳۶۵ است.\n\n<br/>\n\n### آیا امکان استفاده از Python در Excel با MAS هست؟\n\nخیر؛ [Python در Excel][4] فقط برای حساب‌های رسمی مایکروسافت ۳۶۵ فعال است.\n\n<br/>\n\n### اگر پیام \"Office is not genuine\" دریافت کردم چه کنم؟\n\nروش جدید [Ohook](./ohook) را امتحان کنید.\n\n<br/>\n\n## سوالات متفرقه\n\n### آیا بعد از فعال‌سازی می‌توانم پوشه MAS را حذف کنم؟\n\nبله، پس از فعال‌سازی مشکلی نیست.\n\n<br/>\n\n### چطور فعال‌سازی توسط MAS کار می‌کند؟\n\nتوضیحات دقیق‌تر در بخش مستندات (Docs) آمده است؛ برای اطلاعات بیشتر به آن مراجعه کنید.\n\n<br/>\n\n### آیا MAS برای ویندوز ویستا/۷/۸.۱ کار می‌کند؟\n\nبله، گزینه‌های [TSforge](./tsforge)، [Ohook](./ohook) و [Online KMS](./online_kms) روی ویندوز‌های ۷ و ۸ و ویستا هم قابل استفاده است.\n\n<br/>\n\n### چگونه می‌توانم به پروژه کمک مالی یا مشارکت کنم؟\nاین پروژه کمک مالی نمی‌پذیرد و کاملاً رایگان است. ما از کمک‌های مالی، تبلیغات یا هیچ منبع دیگری درآمد کسب نمی‌کنیم و متعهد هستیم که آن را به همین شکل حفظ کنیم.\n\nبه این دلیل که این یک پروژه اجتماعی است و مشارکت‌کنندگان زیادی را درگیر می‌کند، تقسیم کمک‌های مالی عملی نیست و همچنین به این دلیل که سود بردن از دزدی خوب نیست.\n\n\n::: details برای اطلاعات بیشتر اینجا کلیک کنید\n\nبا این حال، اگر مایل به حمایت و مشارکت از ما هستید، می‌توانید این کار را به روش‌های غیرمالی انجام دهید.\n\n**کدنویسی**\nدر حال حاضر، ما به هیچ کمکی در زمینه کدنویسی نیاز نداریم.\n\n[این لیست را در صورت نیاز در آینده به‌روزرسانی خواهیم کرد.][7]\n\n:::\n\n### مشکلات\n\n::: tip رفع مشکلات\n\nاگر سوالی دارید که پاسخش در این صفحه نیست — با ما [**در ارتباط**](./troubleshoot) باشید.\n\n:::\n\n[1]: https://github.com/massgravel/Microsoft-Activation-Scripts\n[2]: https://gravesoft.dev/bypass-russian-geoblock\n[3]: https://www.microsoft.com/en-us/microsoft-365/microsoft-copilot\n[4]: https://support.microsoft.com/en-us/office/introduction-to-python-in-excel-55643c2e-ff56-4168-b1ce-9428c8308545\n[5]: https://github.com/NiREvil/windows-activation/discussions\n[6]: mailto:dianashariati.cl@gmail.com\n[7]: https://massgrave.dev/contribute\n[8]: https://github.com/massgravel/Microsoft-Activation-Scripts/blob/master/MAS/All-In-One-Version-KL/MAS_AIO.cmd\n[Gemini]: https://aistudio.google.com/prompt\n[Jules]: https://jules.google/\n[Claude]: https://claude.ai/chat/\n[ChatGPT]: https://chat.openai.com/auth/login\n[Grok]: https://grok.com\n[GenSpark]: https://www.genspark.ai/\n[Perplexity]: http://perplexity.ai/\n[Qwen]: https://chat.qwen.ai/\n[rainbow]: https://github.com/NiREvil/vless/assets/126243832/1aca7f5d-6495-44b7-aced-072bae52f256\n"
  },
  {
    "path": "docs/fa/wa/fix-wpa-registry.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'تعمیر رجیستری WPA'\ndescription: 'تعمیر کلیدهای رجیستری WPA خراب که می‌تواند باعث عدم کارکرد فعال‌سازی شود.'\ndate: 2025-01-07\neditLink: true\nhead:\n  - - meta\n    - name: keywords\n      content: رجیستری سیستم خراب, sppsvc, wpa\n---\n\n## تعمیر رجیستری wpa سیستم خراب\n\n\nدر برخی موارد، سیستم ممکن است دارای کلیدهای رجیستری WPA خراب در `HKEY_LOCAL_MACHINE\\SYSTEM\\WPA` باشد که می‌تواند باعث عدم کارکرد `sppsvc` و شکست فعال‌سازی شود، همچنین می‌تواند باعث استفاده زیاد از CPU در سرویس `sppsvc` شود.\nاین کلید رجیستری توسط هسته محافظت می‌شود و به طور معمول قابل حذف نیست. به همین دلیل باید مراحل زیر را برای پاک کردن آن دنبال کنیم.\n\n## مراحل تعمیر رجیستری WPA\n\n- ابتدا این فایل زیپ را دانلود کنید:\n- [github.com/archive/principalis.zip][1]\n-   فایل را از حالت فشرده را خارج کنید.\n-   فایل `rearm.cmd` را در ریشه درایو C کپی کنید، مانند `C:\\rearm.cmd`\n-   خط فرمان را به عنوان مدیر باز کنید و دستور زیر را وارد کنید\n    `Shutdown /f /r /o /t 0`\n-   پس از راه‌اندازی مجدد سیستم، Troubleshoot > Advanced Options > Command Prompt را انتخاب کنید.\n-   دستور زیر را وارد کنید\n    `C:\\rearm.cmd`\n-   اگر می‌گوید دستور شناسایی نشده است، وارد کنید\n    `bcdedit | find \"osdevice\"`\n-   این به شما حرف درایو سیستم عامل را نشان می‌دهد. از آن حرف درایو در دستور استفاده کنید، به عنوان مثال،\n    `E:\\rearm.cmd`\n-   منتظر بمانید تا تمام شود. وقتی تمام شد، می‌توانید در خط فرمان تایپ کنید، اگر نه، منتظر بمانید.\n-   پس از اتمام، خارج شوید و سپس به طور معمول وارد ویندوز شوید.\n\n## آموزش ویدیویی\n\n\n<video class=\"video-js vjs-default-skin vjs-fluid\" controls preload=\"auto\" data-setup='{}'>\n  <source src=\"/Fix_WPA_Registry.mp4\" type=\"video/mp4\" />\n  <p class=\"vjs-no-js\"></p>\n</video>\n\n[1]: https://github.com/asdcorp/rearm/archive/refs/heads/principalis.zip\n"
  },
  {
    "path": "docs/fa/wa/fix_powershell.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'رفع مشکلات Powershell'\ndescription: 'اسکریپت‌ها ممکن است خطایی مربوط به عدم کارکرد پاورشل نشان دهند.'\ndate: 2024-04-12\neditelink: true\n---\n\n# رفع مشکل PowerShell\n\n\n### اسکریپت‌ها اغلب ممکن است خطایی مربوط به عدم کارکرد پاورشل نشان دهند.\n\n<br><br/>\n\n## حالت زبان محدود شده\n\n-  اکر اسکریپت در خروجی خطای مذکور را نشان داد: `ConstrainedLanguage`\n-  خط فرمان <Badge type=\"danger\" text=\"Command Prompt\" /> را در حالت <Badge type=\"info\" text=\"Administrator\" /> اجرا کرده و سپس دستور زیر را وارد کنید:\n\n```reg\n\nreg delete \"HKLM\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Environment\" /v \"__PSLockdownPolicy\" /f\n\n```\n\n-  در صورت لزوم دستور را چندبار تکرار کنید، خطا باید رفع شود\n\n::: danger رفع مشکلات\n\nاگر سوالی دارید، ابتدا صفحه [**سوالات پرتکرار**](./faq) را مرور کنید — به احتمال زیاد جواب‌تان اینجاست.\nاگر همچنان مشکل پابرجا بود — با ما [**در ارتباط**](./troubleshoot) باشید.\n\n:::\n"
  },
  {
    "path": "docs/fa/wa/fix_service.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'تعمیر سرویس‌های ویندوز'\ndescription: 'اگر اسکریپت نشان داد که سرویس -sppsvc- خراب است، مراحل را دنبال کنید'\ndate: 2024-02-05\neditLink: true\n---\n\n# تعمیر سرویس‌های ویندوز\n\n### سرویس خراب - sppsvc\n\n- مراحل زیر را فقط در صورتی دنبال کنید که اسکریپت نشان دهد سرویس `sppsvc` خراب است. در غیر این صورت دنبال نکنید.\n- فایل فشرده رجیستری `sppsvc` را برای [ویندوز 10][1] / [ویندوز 11][2] دانلود و استخراج کنید.\n- مراقب باشید، این فایل‌ها را فقط در صورتی اجرا کنید که با نسخه ویندوز شما مطابقت داشته باشند، در غیر این صورت از [اینجا](./troubleshoot) کمک بخواهید.\n- فایل را اجرا کنید، سیستم را مجدداً راه‌اندازی کنید (با استفاده از دکمه restart) و دوباره اسکریپت فعال‌سازی را امتحان کنید.\n- اگر مشکل همچنان ادامه داشت، از [اینجا](./troubleshoot) با ما تماس بگیرید.\n\n\n## سرویس خراب\n\n::: danger - Null\n\n- اسکریپت ممکن است نشان دهد که `سرویس Null در حال اجرا نیست، اسکریپت ممکن است از کار بیفتد...`\n- این مراحل را فقط در صورتی دنبال کنید که اسکریپت پس از آن از کار بیفتد.\n- این فایل فشرده رجیستری سرویس Null را [دانلود][3] و استخراج کنید.\n- فایل را اجرا کنید، سیستم را مجدداً راه‌اندازی کنید (با استفاده از دکمه restart) و دوباره اسکریپت فعال‌سازی را امتحان کنید.\n- اگر مشکل همچنان ادامه داشت، بررسی کنید که آیا از `آنتی ویروس Comodo` یا هر نوع نرم‌افزار امنیتی `sandboxing` استفاده می‌کنید. اگر چنین است، آن را به طور موقت غیرفعال کنید و دوباره اسکریپت را اجرا کنید.\n- اگر مشکل همچنان ادامه داشت، از [اینجا](./troubleshoot) با ما تماس بگیرید.\n\n:::\n\n[1]: https://app.box.com/s/016qsq922nt3kgg744l07y115k9wph4b\n[2]: https://app.box.com/s/zq70tlbuo3iwxjd76ly26sz0gs2b98n0\n[3]: https://app.box.com/s/eczou3mvn6atronnd3nad2sqtb66h0lw\n"
  },
  {
    "path": "docs/fa/wa/genuine-installation-media.md",
    "content": "---\nlayout: doc\noutline: deep\nlang: fa-IR\ndir: rtl\ntitle: 'دانلود ویندوز – آفیس'\ndescription: 'تمام لینک‌های دانلود موجود در وب‌سایت ما فقط به فایل‌های اصلی منتهی می‌شوند'\ndate: 2025-08-05\neditLink: true\n---\n\n# دانلود ویندوز / آفیس\n\n::: info نکته\n\nتمام لینک‌های دانلود موجود در وب‌سایت ما فقط به فایل‌های اصلی منتهی می‌شوند.\n\n:::\n\n## دانلود ویندوز\n-  [ویندوز 11](./windows_11_links)\n-  [ویندوز 10](./windows_10_links)\n-  [ویندوز 10 / 11 Enterprise **LTSC**](./windows_ltsc_links)\n-  [ویندوز ARM64](./windows_arm_links)\n-  [ویندوز 8.1](./windows_8.1_links)\n-  [ویندوز 7](./windows_7_links)\n-  [ویندوز ویستا][winvist]\n-  [ویندوز XP](./windows_xp_links)\n-  [ویندوز سرور][winserv]\n-  ویندوز اینسایدر [10-11][1] - [سرور][2] / برای دانلود نیاز به [ثبت نام][3] است.\n\n## دانلود آفیس\n\nپس از نصب آفیس، فعال‌سازی با [MAS](./index#مرحله-۲) مورد نیاز است.\n\n-  [نصب کننده‌های Office C2R][4] 🤍 (O365 / 2024 / 2021 / 2019 / 2016 / 2013)\n-  [نصب سفارشی Office C2R][5] (O365 / 2024 / 2021 / 2019 / 2016)\n-  [Office MSI VL (نسخه‌های قدیمی)][winmsi] (2016 / 2013 / 2010 / 2007)\n-  [آفیس برای **مک**][winmac]\n\n<br/>\n\n## سوالات متداول\n\n### راهنماها\n\n- [نصب تمیز ویندوز](./clean_install_windows)\n- [ارتقاء تعمیری درجا (حفظ فایل‌ها و برنامه‌ها)](./in-place_repair_upgrade)\n- [ویندوز 11 روی سخت‌افزار پشتیبانی‌نشده](./clean_install_windows#ویندوز-11-روی-سختافزار-پشتیبانی-نشده#پشتیبانی-نشده)\n- [لیست نسخه‌ها در حین نصب ویندوز](./clean_install_windows#لیست-نسخهها-در-حین-نصب-ویندوز)\n- [به‌روزرسانی‌های ویندوز 10 پس از پایان عمر](./windows10_eol)\n\n### چرا فایل‌ها را روی سرور خود میزبانی می‌کنیم در حالی که می‌توانیم آنها را از مایکروسافت دانلود کنیم؟\n\n::: details برای اطلاعات بیشتر اینجا کلیک کنید\n\nمایکروسافت ISOهای مصرف‌کننده را به صورت رایگان در [سایت][6] خود ارائه می‌دهد، اما ISOهای تجاری، سازمانی و قدیمی‌تر پشت دیوارهای پرداخت مانند [MVS][7] و [مرکز مدیریت M365][8] قرار دارند. به همین دلیل است که ما نیاز به میزبانی فایل‌ها روی سرورهای خود داریم.\n\n:::\n\n### چگونه از اصالت این فایل‌ها اطمینان حاصل کنیم؟\n\n::: details برای مشاهده توضیحات بیشتر اینجا کلیک کنید\n\nمی‌توانید [از اینجا](./genuine-installation-media#چگونه-از-اصالت-این-فایلها-اطمینان-حاصل-کنیم) نحوه اطمینان از اصالت فایل‌ها را با تأیید چک‌سام موجود در وب‌سایت رسمی مایکروسافت بررسی کنید.\n\n:::\n\n#### در اینجا هم ISOهای مصرف‌کننده و هم تجاری لیست شده‌اند. تفاوت بین آنها چیست؟\n\n::: details برای مشاهده توضیحات بیشتر اینجا کلیک کنید\n\nبرای نسخه‌های کانال دسترسی عمومی (GAC) ویندوز 10/11 (یعنی Home و Pro)، مایکروسافت دو نوع فایل ISO تولید می‌کند: مصرف‌کننده و تجاری.\n\nISO مصرف‌کننده شامل تمام نسخه‌ها مانند Home، Pro و Education است، اما نسخه Enterprise را شامل نمی‌شود. در مقابل، ISO تجاری شامل تمام نسخه‌ها به جز نسخه‌های سطح Home است و این فایل‌های ISO به طور پیش‌فرض با یک کلید KMS از پیش نصب شده (فعال نشده) ارائه می‌شوند.\n\n:::\n\n#### چگونه می‌توانم یک ISO رسمی مایکروسافت را که در اینجا موجود نیست، تهیه کنم؟\n\n::: details برای مشاهده توضیحات بیشتر اینجا کلیک کنید\n\nمی‌توانید فایل را در [Discord][9] درخواست کنید.\n\n:::\n\n\n## تأیید اصالت فایل‌ها\n\nمی‌توانید از [روش هش کردن فایل][10] برای تأیید اصالت یک فایل استفاده کنید. این کار را می‌توان با استفاده از ابزارهایی مانند [7-Zip][11] انجام داد (پس از نصب 7-Zip، روی فایل ISO راست کلیک کرده و به 7-Zip > CRC SHA بروید).\n\nمکان‌های زیادی وجود دارد که می‌توانید این چک‌سام‌ها را برای تأیید پیدا کنید. نمونه‌ها را می‌توانید در زیر پیدا کنید.\n\n- [files.rg-adguard][12] (کامل‌ترین مجموعه)\n- [MVS dump][13]\n- [genuine-iso-verifier][14]\n- [msdn.rg-adguard][15]\n- [sha1.rg-adguard][16]\n- گوگل\n\nلینک‌های رسمی رایگان مایکروسافت برای چک‌سام‌ها:\n\n- [MVS][17]\n- [ویندوز 11][18]\n- [ویندوز 10][19]\n\n\n::: details اطلاعات بیشتر در مورد لینک‌های رسمی!\n\n**MVS**  \nدر MVS، باید وارد شوید و روی دکمه 'All Downloads' کلیک کنید و سپس نام محصول را جستجو کنید.\n\n**محدودیت‌های MVS:**\n - آنها قبلاً فقط SHA-1 را منتشر می‌کردند، اما بعداً شروع به انتشار هم SHA-1 و هم SHA-256 کردند و از سال 2022 اکنون فقط SHA-256 را منتشر می‌کنند.\n - با این حال، آنها تمام داده‌های SHA-1 را حذف کردند و در نتیجه، چک‌سام‌های فایل‌های قدیمی به سادگی در سایت MVS موجود نیستند.\n - همچنین، در حدود زمانی که هم SHA-1 و هم SHA-256 را منتشر می‌کردند، برخی از داده‌های SHA-256 را به هم ریختند، به عنوان مثال\n\n```\n\tمثال SHA-256 نادرست\n\tSHA256: BDB3D0C5C933B201ECE736A172FB604AA5D7D0705DD75681F9FCC4B1EE79FAC8\n\tنام فایل: en-uk_windows_10_enterprise_ltsc_2019_x64_dvd_723dfbc1.iso\n```\n\n - بنابراین فقط برای آخرین فایل‌ها مفید است.\n\n**ویندوز 11**\nلیست SHA-256 در صورتی ظاهر می‌شود که فایل ISO را دانلود کنید.\n\n**ویندوز 10**\nمایکروسافت به شما اجازه نمی‌دهد فایل ISO را مستقیماً دانلود کنید اگر عامل کاربری مرورگر سیستم عامل ویندوز باشد. بنابراین باید آن را به چیز دیگری مانند Android یا IOS تغییر دهید و سپس فایل ISO را دانلود کنید تا لیست را ببینید.\n\n:::\n\n#### آموزش ویدیویی\n\n<video class=\"video-js vjs-default-skin vjs-fluid\" controls preload=\"auto\" data-setup='{}'>\n  <source src=\"/how_to_verify_files.mp4\" type=\"video/mp4\" />\n  <p class=\"vjs-no-js\"></p>\n</video>\n\n<br/>\n\n::: danger رفع مشکلات\n\nاگر سوالی دارید، ابتدا صفحه [**سوالات متداول**](./faq) را مرور کنید — به احتمال زیاد جواب‌تان اینجاست.  \n\nاگر همچنان مشکل پابرجا بود — با ما [**در ارتباط**](./troubleshoot) باشید.\n\n::: \n\n\n[1]: https://www.microsoft.com/en-us/software-download/windowsinsiderpreviewiso\n[2]: https://www.microsoft.com/en-us/software-download/windowsinsiderpreviewserver\n[3]: https://www.microsoft.com/en-us/windowsinsider/getting-started\n[4]: https://gravesoft.dev/office_c2r_links\n[5]: https://gravesoft.dev/office_c2r_custom\n[6]: https://www.microsoft.com/en-us/software-download\n[7]: https://visualstudio.microsoft.com/subscriptions/\n[8]: https://learn.microsoft.com/en-us/licensing/vlsc-faqs-home-page\n[9]: https://discord.gg/FajfGaH3nD\n[10]: https://en.wikipedia.org/wiki/File_verification\n[11]: https://7-zip.org/\n[12]: https://files.rg-adguard.net/search\n[13]: https://awuctl.github.io/mvs/\n[14]: https://genuine-iso-verifier.weebly.com/\n[15]: https://msdn.rg-adguard.net/\n[16]: https://sha1.rg-adguard.net/\n[17]: https://my.visualstudio.com/Downloads\n[18]: https://www.microsoft.com/en-us/software-download/windows11\n[19]: https://www.microsoft.com/en-us/software-download/windows10\n[win11]: https://massgrave.dev/windows_11_links\n[win10]: https://massgrave.dev/windows_10_links\n[winen]: https://massgrave.dev/windows_ltsc_links\n[winarm]: https://massgrave.dev/windows_arm_links\n[win8]: https://massgrave.dev/windows_8.1_links\n[win7]: https://massgrave.dev/windows_7_links\n[winvist]: https://massgrave.dev/windows_vista__links\n[winxp]: https://massgrave.dev/windows_xp_links\n[winserv]: https://massgrave.dev/windows_server_links\n[winmsi]: https://massgrave.dev/office_msi_links\n[winmac]: https://massgrave.dev/office_for_mac\n"
  },
  {
    "path": "docs/fa/wa/guide_links.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'لینک‌های راهنما'\ndescription: 'اگر با خطایی مواجه شدید، اسکریپت باید به شما بگوید که کدام راهنما را باید دنبال کنید'\ndate: 2024-06-09\n---\n\n# راهنماها\n\n::: danger اگر با خطایی مواجه شدید\n\nاسکریپت باید به شما بگوید که کدام راهنما را باید دنبال کنید. اگر مطمئن نیستید، پیشنهاد می‌کنیم به جای دنبال کردن کورکورانه راهنماها، از [اینجا](./troubleshoot) کمک بگیرید.\n\n:::\n\n- [به‌روزرسانی‌های ویندوز 10 پس از پایان عمر](./windows10_eol)\n- [لایسنس آفیس اصلی نیست](./office-license-is-not-genuine)\n- [دور زدن محدودیت جغرافیایی روسیه][1]\n- [تعمیر رجیستری WPA](./fix-wpa-registry)\n- [مشکل سرورهای لایسنس](./licensing-servers-issue)\n- [مشکلات ناشی از اسپوفرهای بازی](./issues_due_to_gaming_spoofers)\n- [تعمیر سرویس‌های ویندوز](./fix_service)\n- [مشکلات تغییر نسخه](./change_edition_issues)\n- [نسخه‌های ارزیابی ویندوز](./evaluation_editions)\n- [تعمیر پاورشل](./fix_powershell)\n- [ارتقاء تعمیری درجا](./in-place_repair_upgrade)\n- [حذف بدافزار](./remove_malware)\n- [نصب تمیز ویندوز](./clean_install_windows)\n\n<hr/>\n\n[1]: https://gravesoft.dev/bypass-russian-geoblock\n"
  },
  {
    "path": "docs/fa/wa/hwid.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'HWID (مجوز دیجیتال): راهنمای فعال‌سازی ویندوز'\ndescription: 'راهنمای جامع منبع باز برای فعال‌سازی ایمن ویندوز 10/11 با استفاده از HWID در کمتر از 40 ثانیه. شامل نکات عیب‌یابی و مقایسه‌های دقیق.'\ndate: 2025-05-04\neditLink: true\nhead:\n  - - meta\n    - name: description\n      content: ویندوز 10/11 را با استفاده از روش‌های رسمی منبع باز مانند HWID به صورت ایمن فعال کنید. شامل گزینه‌های دائمی و قابل تمدید با راهنماهای کامل.\n  - - meta\n    - name: keywords\n      content: تولید مجوز دیجیتال بدون kms، فعال‌سازی ویندوز، فعال‌سازی آفیس، hwid، فعال‌سازی ویندوز 11، فعال‌سازی آفیس 2021، ابزارهای منبع باز\n  - - meta\n    - property: og:title\n      content: فعال‌سازی ایمن و دائمی برای ویندوز\n  - - meta\n    - property: og:description\n      content: راهنمای کامل منبع باز برای فعال‌سازی ویندوز 10/11 با استفاده از ابزارهای قابل اعتماد مانند HWID\n---\n\n# فعال‌سازی HWID\n\n## بررسی اجمالی\n\n- چگونه از آن استفاده کنیم؟ لطفاً دستورالعمل‌ها را [اینجا](./index#مرحله-۲) پیدا کنید.\n- این روش فعال‌سازی فقط از ویندوز 10/11 پشتیبانی می‌کند.\n- این روش فعال‌سازی هیچ فایلی را در سیستم شما ذخیره یا تغییر نمی‌دهد.\n- این روش فعال‌سازی به شما فعال‌سازی دائمی ویندوز را برای سخت‌افزار سیستم شما می‌دهد.\n- تمام فعال‌سازی‌ها می‌توانند بدون هیچ مشکلی به یک حساب مایکروسافت مرتبط شوند.\n- پس از فعال شدن سیستم، این فعال‌سازی قابل حذف نیست زیرا مجوز در سرورهای مایکروسافت ذخیره می‌شود، نه در سیستم کاربر. مایکروسافت شناسه سخت‌افزار (HWID) را بررسی می‌کند و اگر مجوزی در پایگاه داده خود پیدا شود، سیستم به طور خودکار فعال می‌شود. این روش کارکرد تمام مجوزهای دیجیتال است.\n- هرگونه تغییر قابل توجه در سخت‌افزار (مانند مادربرد) ممکن است سیستم را غیرفعال کند. امکان فعال‌سازی مجدد سیستمی که به دلیل تغییرات قابل توجه سخت‌افزاری غیرفعال شده است، وجود دارد، اگر فعال‌سازی شما به یک حساب آنلاین مایکروسافت مرتبط شده باشد.\n- برای موفقیت فعال‌سازی، اتصال به اینترنت باید فعال باشد. اگر در تلاش برای فعال‌سازی بدون این شرایط هستید، سیستم بعداً هنگامی که شرایط فراهم شود، به طور خودکار فعال می‌شود.\n- موارد زیر برای فعال‌سازی مجدد ویندوز پس از نصب مجدد ویندوز مورد نیاز است:\n  - اتصال به اینترنت مورد نیاز است. (فقط در زمان فعال‌سازی)\n  - سیستم تنها در صورتی به طور خودکار فعال می‌شود که از رسانه Retail (مصرف‌کننده) برای نصب ویندوز استفاده شده باشد.\n  - سیستم در صورتی که از رسانه VL (تجاری) برای نصب استفاده شده باشد، به طور خودکار فعال نمی‌شود. در این حالت، کاربر باید کلید عمومی Retail/OEM مربوط به نسخه ویندوز در حال اجرا را برای فعال‌سازی وارد کند، اگر کاربر نمی‌خواهد دوباره از اسکریپت استفاده کند. (این کلیدها را می‌توان در پایین این صفحه یافت)\n\n## تاریخچه HWID\n\n## چگونه کار می‌کند؟\n\n### HWID 1 (اکنون منسوخ شده) (تابستان 2018 - 26 سپتامبر 2023)\n\n- در فرآیند ارتقاء رسمی از ویندوز 7 به ویندوز 10، اگر نسخه ویندوز 7 شما فعال شده بود، مایکروسافت یک مجوز دیجیتال برای ویندوز 10 بدون هیچ هزینه‌ای ارائه می‌کرد.\n- در پس‌زمینه، فرآیند ارتقاء فایلی به نام gatherosstate.exe (موجود در ISO ویندوز 10/11) را اجرا می‌کند و مجوز نصب فعلی ویندوز را بررسی می‌کند. اگر تشخیص دهد که فعال شده است، یک **بلیط** GenuineTicket.xml معتبر تولید می‌کند که به مایکروسافت ارسال می‌شود و در مقابل، مایکروسافت یک مجوز را تأیید می‌کند.\n- بنابراین، اگر بتوانیم فایل gatherosstate.exe را متقاعد کنیم که شرایط برای تولید بلیط با فریب آن فراهم شده است، یک بلیط معتبر تولید می‌کند که می‌توان از آن برای دریافت مجوز دیجیتال معتبر استفاده کرد.\n- چگونه gatherosstate.exe را متقاعد کنیم که ویندوز فعال شده است؟\n  دو روش برای آن وجود دارد.\n  **1-** قرار دادن یک فایل [slc.dll سفارشی][1] در کنار gatherosstate.exe:\n  gatherosstate.exe از فایل `C:\\Windows\\System32\\slc.dll` سیستم برای جمع‌آوری اطلاعات سیستم استفاده می‌کند. اگر یک فایل slc.dll سفارشی را در کنار gatherosstate.exe قرار دهیم، می‌تواند داده‌های بیهوده به آن ارسال کند، سپس به سادگی آن را می‌پذیرد و یک بلیط معتبر تولید می‌کند.\n  **2-** [تغییر][2] مستقیم فایل gatherosstate.exe به طوری که اصلاً وضعیت فعال‌سازی سیستم را بررسی نکند و یک بلیط معتبر ایجاد کند.\n- می‌توانید عملکرد این روش قدیمی را در اینجا پیدا کنید: [MAS-Legacy-Methods][3]\n- مایکروسافت تغییرات سمت سرور را در سرورهای صدور مجوز خود برای [مسدود کردن][4] ارتقاء رایگان اعمال کرد و با این تغییر سمت سرور، این روش از کار افتاد. برای روشن شدن، فقط درخواست‌های فعال‌سازی جدید از سخت‌افزارهای جدید مسدود شدند، مجوزهای دیجیتال قبلاً ایجاد شده با این روش خوب هستند.\n\n#### HWID 2 (در حال حاضر کار می‌کند) (3 اکتبر 2023 - اکنون)\n\n- هنگامی که مایکروسافت ارتقاء رایگان را متوقف کرد، شروع به نیاز به یک کلید معتبر و اصلی در بلیط برای تأیید مجوز دیجیتال کرد. در روش جدید، ما از شناسه نصب یک کلید اصلی و معتبر استفاده می‌کنیم. این توسط سرور پذیرفته می‌شود و به ما امکان می‌دهد یک مجوز دیجیتال را به صورت رایگان دریافت کنیم. برای اطلاع از نحوه ساخت بلیط‌های جهانی کارآمد، فرآیند فعال‌سازی دستی را در بخش زیر بررسی کنید.\n\n\nحالا یک سوال، آیا مایکروسافت می‌تواند درخواست‌های جدید را مسدود کند یا مجوزهای دیجیتال قبلاً ایجاد شده را لغو کند؟\n\n- لغو مجوزها بسیار افراطی خواهد بود و با عوارض بسیاری روبرو خواهد شد و خطر باطل کردن مجوزهای معتبر را ایجاد می‌کند. با این حال، آنها می‌توانند به راحتی درخواست‌های فعال‌سازی جدید برای سخت‌افزارهای جدید را که از روش‌های ذکر شده در اینجا می‌آیند، مسدود کنند.\n\n## محصولات پشتیبانی شده\n\n| نام محصول ویندوز 10/11           | EditionID                | کلید عمومی Retail/OEM/MAK    |\n| ------------------------------------- | ------------------------ | ----------------------------- |\n| Education                             | Education                | YNMGQ-8RYV3-4PGQ3-C8XTP-7CFBY |\n| Education N                           | EducationN               | 84NGF-MHBT6-FXBX8-QWJK7-DRR8H |\n| Enterprise                            | Enterprise               | XGVPP-NMH47-7TTHJ-W3FW7-8HV2C |\n| Enterprise N                          | EnterpriseN              | 3V6Q6-NQXCX-V8YXR-9QCYV-QPFCT |\n| Enterprise LTSB 2015                  | EnterpriseS              | FWN7H-PF93Q-4GGP8-M8RF3-MDWWW |\n| Enterprise LTSB 2016                  | EnterpriseS              | NK96Y-D9CD8-W44CQ-R8YTK-DYJWX |\n| Enterprise LTSC 2019                  | EnterpriseS              | 43TBQ-NH92J-XKTM7-KT3KK-P39PB |\n| Enterprise N LTSB 2015                | EnterpriseSN             | NTX6B-BRYC2-K6786-F6MVQ-M7V2X |\n| Enterprise N LTSB 2016                | EnterpriseSN             | 2DBW3-N2PJG-MVHW3-G7TDK-9HKR4 |\n| Home                                  | Core                     | YTMG3-N6DKC-DKB77-7M9GH-8HVX7 |\n| Home N                                | CoreN                    | 4CPRK-NM3K3-X6XXQ-RXX86-WXCHW |\n| Home China                            | CoreCountrySpecific      | N2434-X9D7W-8PF6X-8DV9T-8TYMD |\n| Home Single Language                  | CoreSingleLanguage       | BT79Q-G7N6G-PGBYW-4YWX6-6F4BT |\n| IoT Enterprise                        | IoTEnterprise            | XQQYW-NFFMW-XJPBH-K8732-CKFFD |\n| IoT Enterprise Subscription           | IoTEnterpriseK           | P8Q7T-WNK7X-PMFXY-VXHBG-RRK69 |\n| IoT Enterprise LTSC 2021              | IoTEnterpriseS           | QPM6N-7J2WJ-P88HH-P3YRH-YY74H |\n| IoT Enterprise LTSC 2024              | IoTEnterpriseS           | CGK42-GYN6Y-VD22B-BX98W-J8JXD |\n| IoT Enterprise LTSC Subscription 2024 | IoTEnterpriseSK          | N979K-XWD77-YW3GB-HBGH6-D32MH |\n| Pro                                   | Professional             | VK7JG-NPHTM-C97JM-9MPGT-3V66T |\n| Pro N                                 | ProfessionalN            | 2B87N-8KFHP-DKV6R-Y2C8J-PKCKT |\n| Pro Education                         | ProfessionalEducation    | 8PTT6-RNW4C-6V7J2-C2D3X-MHBPB |\n| Pro Education N                       | ProfessionalEducationN   | GJTYN-HDMQY-FRR76-HVGC7-QPF8P |\n| Pro for Workstations                  | ProfessionalWorkstation  | DXG7C-N36C4-C4HTG-X4T3X-2YV77 |\n| Pro N for Workstations                | ProfessionalWorkstationN | WYPNQ-8C467-V2W6J-TX4WX-WT2RQ |\n| S                                     | Cloud                    | V3WVW-N2PV2-CGWC3-34QGF-VMJ2C |\n| S N                                   | CloudN                   | NH9J3-68WK7-6FB93-4K3DF-DJ4F6 |\n| SE                                    | CloudEdition             | KY7PN-VR6RX-83W6Y-6DDYQ-T6R4W |\n| SE N                                  | CloudEditionN            | K9VKN-3BGWV-Y624W-MCRMQ-BHDCD |\n| Team                                  | PPIPro                   | XKCNC-J26Q9-KFHD2-FKTHY-KD72Y |\n\n<br/>\n\n::: tip اطلاعات\n\n- سیستم‌ها در تمام معماری‌ها (x86، x64 و arm64) پشتیبانی می‌شوند.\n- هر نسخه ارزیابی ویندوز (یعنی 'EVAL' LTSB/C) [نمی‌تواند فراتر از دوره ارزیابی فعال شود](./evaluation_editions). می‌توانید از گزینه TSforge در MAS برای بازنشانی فعال‌سازی در هر زمان معین استفاده کنید.\n- کلید IoTEnterpriseS (LTSC) 2021 برای فعال‌سازی نسخه پشتیبانی نشده EnterpriseS (LTSC) 2021 استفاده خواهد شد.\n- کلید IoTEnterpriseS (LTSC) 2024 برای فعال‌سازی نسخه پشتیبانی نشده EnterpriseS (LTSC) 2024 استفاده خواهد شد.\n- ویندوز سرور از فعال‌سازی HWID پشتیبانی نمی‌کند.\n- نسخه Enterprise multi-session (ServerRdsh) فقط با کلید NJCF7-PW8QT-3324D-688JX-2YV66 قابل فعال‌سازی است، اما از فعال‌سازی مجوز دیجیتال واقعی پشتیبانی نمی‌کند.\n\n:::\n\n## چگونه HWID را حذف کنیم\n\n- **فعال‌سازی HWID (مجوز دیجیتال) قابل حذف نیست** زیرا مجوز در سرورهای مایکروسافت ذخیره می‌شود و نه در سیستم کاربر.\n- مایکروسافت شناسه سخت‌افزار (HWID) را بررسی می‌کند و اگر مجوزی در پایگاه داده خود پیدا شود، سیستم به طور خودکار فعال می‌شود. این روش کارکرد فرآیند رسمی فعال‌سازی مجوز دیجیتال است.\n\n**اگر هنوز می‌خواهید آن را حذف کنید چه؟**\n\n- همانطور که در بالا توضیح داده شد، شما نمی‌توانید آن را برای سخت‌افزار خود حذف کنید، فقط تغییرات عمده سخت‌افزاری مانند CPU، مادربرد می‌تواند فعال‌سازی را حذف کند.\n\n**اگر فقط می‌خواهید ویندوز را در مرحله غیرفعال نگه دارید چه؟**\n\n- برای انجام این کار، می‌توانید [کلید KMS](./kms38#محصولات-پشتیبانی-شده) را در صفحه فعال‌سازی تنظیمات ویندوز نصب کنید\n  یا\n- نسخه را با استفاده از گزینه تغییر نسخه ویندوز در MAS تغییر دهید.\n- **توجه:**\n  - تنظیمات ویندوز فوراً نشان می‌دهد که ویندوز فعال نیست اما معمولاً 3 ساعت طول می‌کشد تا واترمارک فعال‌سازی ظاهر شود.\n  - این گزینه‌ها به سادگی فعال‌سازی HWID را پنهان می‌کنند. اگر ویندوز را با همان نسخه دوباره نصب کنید یا کلیدهای عمومی Retail/OEM پیش‌فرض را بازیابی کنید، سیستم در صورت یافتن اتصال به اینترنت به طور خودکار دوباره فعال می‌شود.\n\n### سوئیچ‌های خط فرمان\n\n- [اینجا را بررسی کنید - سوئیچ‌های خط فرمان](./command_line_switches).\n\n\n### فعال‌سازی دستی\n\n- [اینجا را بررسی کنید - فعال‌سازی دستی hwid](./manual_hwid_activation).\n\n### تولید دستی بلیط\n\nاین راهنما برای ایجاد دستی همان نوع بلیط‌هایی است که در اسکریپت MAS استفاده می‌شود.\n\n- فایل .cab را از لینک رسمی مایکروسافت زیر دانلود کنید:\n  https://download.microsoft.com/download/9/A/E/9AE69DD5-BA93-44E0-864E-180F5E700AB4/adk/Installers/14f4df8a2a7fc82a4f415cf6a341415d.cab\n- فایل با نام `filf8377e82b29deadca67bc4858ed3fba9` (اندازه: 330 کیلوبایت) را پیدا کرده و نام آن را به `gatherosstate.exe` تغییر دهید.\n- یک پوشه به نام `Files` در ریشه درایو C: (`C:\\Files`) ایجاد کرده و فایل `gatherosstate.exe` را در آن پوشه کپی کنید.\n- مطمئن شوید که اتصال به اینترنت کار می‌کند.\n- ویندوز پاورشل را به عنوان مدیر باز کرده و دستورات زیر را وارد کنید.\n- کل بلوک کد زیر را کپی کرده و در پاورشل وارد کنید تا فایل `gatherosstate.exe` را پچ کنید. پچ‌ها بر اساس [GamersOsState][5] هستند.\n\n```reg\n$bytes  = [System.IO.File]::ReadAllBytes(\"C:\\Files\\gatherosstate.exe\")\n$bytes[320] = 0xf8\n$bytes[321] = 0xfb\n$bytes[322] = 0x05\n$bytes[324] = 0x03\n$bytes[13672] = 0x25\n$bytes[13674] = 0x73\n$bytes[13676] = 0x3b\n$bytes[13678] = 0x00\n$bytes[13680] = 0x00\n$bytes[13682] = 0x00\n$bytes[13684] = 0x00\n$bytes[32748] = 0xe9\n$bytes[32749] = 0x9e\n$bytes[32750] = 0x00\n$bytes[32751] = 0x00\n$bytes[32752] = 0x00\n$bytes[32894] = 0x8b\n$bytes[32895] = 0x44\n$bytes[32897] = 0x64\n$bytes[32898] = 0x85\n$bytes[32899] = 0xc0\n$bytes[32900] = 0x0f\n$bytes[32901] = 0x85\n$bytes[32902] = 0x1c\n$bytes[32903] = 0x02\n$bytes[32904] = 0x00\n$bytes[32906] = 0xe9\n$bytes[32907] = 0x3c\n$bytes[32908] = 0x01\n$bytes[32909] = 0x00\n$bytes[32910] = 0x00\n$bytes[32911] = 0x85\n$bytes[32912] = 0xdb\n$bytes[32913] = 0x75\n$bytes[32914] = 0xeb\n$bytes[32915] = 0xe9\n$bytes[32916] = 0x69\n$bytes[32917] = 0xff\n$bytes[32918] = 0xff\n$bytes[32919] = 0xff\n$bytes[33094] = 0xe9\n$bytes[33095] = 0x80\n$bytes[33096] = 0x00\n$bytes[33097] = 0x00\n$bytes[33098] = 0x00\n$bytes[33449] = 0x64\n$bytes[33576] = 0x8d\n$bytes[33577] = 0x54\n$bytes[33579] = 0x24\n$bytes[33580] = 0xe9\n$bytes[33581] = 0x55\n$bytes[33582] = 0x01\n$bytes[33583] = 0x00\n$bytes[33584] = 0x00\n$bytes[33978] = 0xc3\n$bytes[34189] = 0x59\n$bytes[34190] = 0xeb\n$bytes[34191] = 0x28\n$bytes[34238] = 0xe9\n$bytes[34239] = 0x4f\n$bytes[34240] = 0x00\n$bytes[34241] = 0x00\n$bytes[34242] = 0x00\n$bytes[34346] = 0x24\n$bytes[34376] = 0xeb\n$bytes[34377] = 0x63\n[System.IO.File]::WriteAllBytes(\"C:\\Files\\gatherosstatemodified.exe\", $bytes)\n```\n\n- روی فایل تازه ایجاد شده، `gatherosstatemodified.exe`، کلیک راست کرده، گزینه \"Properties\" را کلیک کرده و حالت سازگاری را روی Windows XP SP3 تنظیم کنید.\n- برای تولید بلیط با استفاده از `gatherosstate.exe` تغییر یافته ما، این دستورات را اجرا کنید:\n\n```\n$value = (Get-ItemProperty HKLM:\\SYSTEM\\CurrentControlSet\\Control\\ProductOptions).OSProductPfn\n\nC:\\Files\\gatherosstatemodified.exe /c Pfn=$value`;PKeyIID=465145217131314304264339481117862266242033457260311819664735280\n```\n\n- یک فایل GenuineTicket.xml باید در پوشه `C:\\Files\\` ایجاد شود.\n\n**یادداشت‌ها:**\n\n- دو نوع بلیط وجود دارد: Lockbox و Downlevel. اگر سیستم قبلاً فعال شده باشد، بلیط ایجاد شده یک بلیط Lockbox خواهد بود. در غیر این صورت، یک بلیط Downlevel خواهد بود.\n- برای ساخت بلیط دقیق مورد استفاده توسط اسکریپت MAS برای فعال‌سازی HWID، مطمئن شوید که سیستم قبلاً فعال شده است و زمان را با دستور پاورشل زیر تغییر دهید. سپس، فرآیند تولید بلیط را مطابق با مراحل بالا شروع کنید.\n  `Set-TimeZone -Id \"UTC\"; $date=[datetime]\"2022/10/11 12:00\";while($true){set-date $date; start-sleep -milliseconds 10}`\n\n## تنظیم پیش‌فعال‌سازی\n\n- گزینه Extract OEM را در بخش `Extras` MAS بررسی کنید اگر می‌خواهید نصب ویندوز پیش‌فعال‌شده داشته باشید.\n- بیشتر، [اینجا را بخوانید - پوشه OEM](./oem-folder).\n\n::: danger رفع مشکلات\n\nاگر سوالی دارید، ابتدا صفحه [**سوالات پرتکرار**](./faq) را مرور کنید — به احتمال زیاد جواب‌تان اینجاست.\nاگر همچنان مشکل پابرجا بود — با ما [**در ارتباط**](./troubleshoot) باشید.\n\n:::\n\n[1]: https://github.com/asdcorp/Integrated_Patcher_3\n[2]: https://github.com/asdcorp/GamersOsState\n[3]: https://github.com/massgravel/MAS-Legacy-Methods\n[4]: https://devicepartner.microsoft.com/en-us/communications/comm-windows-ends-installation-path-for-free-windows-7-8-upgrade\n[5]: https://github.com/asdcorp/GamersOsState\n"
  },
  {
    "path": "docs/fa/wa/in-place_repair_upgrade.md",
    "content": "# ارتقاء تعمیری درجا\n\n\nارتقاء تعمیری درجا با استفاده از فایل ISO ویندوز راه خوبی برای رفع خطاهای سیستم است. در اینجا نحوه انجام آن آمده است.\n\n\n\n- فایل ISO ویندوز را ترجیحاً از [MSDL][1] با **همان زبان و معماری ویندوز** دانلود کنید.\n\n    - برای بررسی معماری ویندوز نصب شده، Powershell را به عنوان مدیر باز کنید و دستور زیر را وارد کنید،\n\n        ```\n\n\t\t(Get-ItemProperty \"HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Environment\").PROCESSOR_ARCHITECTURE\n\n\t\t```\n\n        AMD64/x64 به معنای 64 بیتی، x86 به معنای 32 بیتی است.\n\n    - برای بررسی زبان ویندوز نصب شده، این دستور را وارد کنید،\n\n        ```\n\n\t\tdism /english /online /get-intl | find /i \"Default system UI language\"\n\n\t\t```\n\n\t\tاز طرف دیگر، می‌توانید از این دستور استفاده کنید،\n\n\t\t```\n\n\t\t[Globalization.CultureInfo]::GetCultureInfo([Convert]::ToInt32((Get-ItemProperty \"HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Nls\\Language\").InstallLanguage, 16)).Name\n\n\t\t```\n\n    - توجه: اگر از نسخه Enterprise LTSC استفاده می‌کنید، باید فایل ISO آن نسخه را دانلود کنید. نسخه Evaluation را دانلود نکنید، آن قابل فعال‌سازی نیست.\n\n- روی فایل ISO دانلود شده راست کلیک کنید، Open With > Windows Explorer را انتخاب کنید.\n\n- یک درایو DVD جدید در Windows Explorer ظاهر می‌شود، که به این معنی است که ایمیج نصب با موفقیت مونت شده است.\n\n::: details برای اطلاعات بیشتر اینجا کلیک کنید: ویندوز 11 روی سخت‌افزار پشتیبانی‌نشده\n\n- اگر از ویندوز 11 استفاده می‌کنید یا از ویندوز 10 ارتقا می‌دهید، ممکن است به دلیل سخت‌افزار پشتیبانی‌نشده با خطا مواجه شوید.\n\n- برای حل این مشکل، باید نسخه IoT Enterprise 24H2 (2024) را که به طور [رسمی روی سخت‌افزار پشتیبانی‌نشده پشتیبانی می‌شود][2] نصب کنید.\n\n  - برای انجام این کار، command prompt را به عنوان مدیر باز کنید و،\n\n  - اگر از ISO معمولی ویندوز 11 24H2 استفاده می‌کنید، دستور زیر را وارد کنید:\n\n`reg add \"HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\" /v EditionID /d IoTEnterprise /f`\n\n  - اگر از ISO ویندوز 11 LTSC 2024 استفاده می‌کنید، دستور زیر را وارد کنید:\n\n`reg add \"HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\" /v EditionID /d IoTEnterpriseS /f`\n\n- اکنون به سرعت setup.exe را همانطور که در زیر توضیح داده شده است اجرا کنید.\n\n:::\n\n- وارد آن درایو DVD شوید و setup.exe را اجرا کنید، فقط تا زمانی که به صفحه تأیید نهایی برسید ادامه دهید.\n\n- مطمئن شوید که در صفحه نهایی عبارت **«Keep personal files and apps»** را می‌بینید. سپس می‌توانید فرآیند را ادامه دهید و منتظر بمانید تا تمام شود.\n\n<br/>\n\n::: danger عیب یابی\n\n- اگر در این مورد به کمکی نیاز دارید، ابتدا بخش [**سوالات متداول**](./faq) را مرور کنید — به احتمال زیاد پاسخ شما در آنجا خواهد بود.\n\n- اگر گزینه حفظ فایل‌ها و برنامه‌ها را دریافت نمی‌کنید، یا نصب خطایی نشان می‌دهد — می‌توانید [**با ما تماس بگیرید**](./troubleshoot).\n\n:::\n\n[1]: https://msdl.gravesoft.dev/\n[2]: https://learn.microsoft.com/en-us/windows/iot/iot-enterprise/Hardware/System_Requirements?tabs=Windows11LTSC#optional-minimum-requirements\n"
  },
  {
    "path": "docs/fa/wa/index.md",
    "content": "---\nlayout: doc\noutline: deep\nlang: fa-IR\ndir: rtl\ntitle: 'راهنمای جامع فعال‌سازی ویندوز با روش‌های رسمی'\ndescription: 'یک جعبه ابزار متن‌باز و ایمن حاوی آموزش گام‌به‌گام فعال‌سازی دائم ویندوز ۱۰/۱۱. بررسی تفاوت روش‌ها، حل مشکلات احتمالی، و روش‌های حذف فعال‌سازی نیز پوشش داده شده است'\ndate: 2025-09-07\neditLink: true\nhead:\n  - - meta\n    - name: description\n      content: راهنمای کامل و مطمئن برای فعال‌سازی ویندوز ۱۰/۱۱ و آفیس با روش‌های متن‌باز مانند HWID, KMS, TSforge و Ohook, شامل روش‌های دائمی و قابل تمدید\n  - - meta\n    - name: keywords\n      content: فعال سازی ویندوز, فعال‌سازی آفیس, فعال سازی قانونی ویندوز, فعال‌سازی دائم, HWID, KMS, TSforge, Ohook, فعال‌سازی ویندوز ۱۱, لایسنس دیجیتال\n  - - meta\n    - property: og:title\n      content: آموزش فعال‌سازی ایمن و دائمی ویندوز و آفیس\n  - - meta\n    - property: og:description\n      content: فعال‌سازی قانونی ویندوز و آفیس با ابزارهای مطمئن و متن‌باز, مناسب برای ویندوز ۱۰, ویندوز ۱۱, و نسخه‌های مختلف آفیس\n---\n\n# راهنمای جامع فعال‌سازی ویندوز و آفیس با روش‌های رسمی\n\n> در این راهنما، با روش‌های متن‌باز و قابل اطمینانی مانند HWID، KMS، TSforge و سایر ابزارهای رسمی آشنا می‌شوید که امکان فعال‌سازی سریع، ایمن و بدون دردسر را برای ویندوز و آفیس فراهم می‌کنند.\n\n<br/> \n\n## خلاصه‌ روش‌های فعال‌‌سازی {#جدول}\n\nبرای یک نمای کلی، در ادامه خلاصه‌ای از روش‌های فعال‌سازی موجود آمده است:\n\n| نوع فعال‌سازی  | محصولات پشتیبانی شده |       مدت زمان فعال‌سازی       |      نیاز به اینترنت؟      |       اطلاعات بیشتر       |\n| :------------: | :------------------: | :----------------------------: | :------------------------: | :-----------------------: |\n|    **HWID**    |     ویندوز ۱۰-۱۱     |             دائمی              |            بله             |    [جزئیات](./hwid)    |\n|    **KMS**     |     ویندوز ۱۰-۱۱     |         ۱۸۰ روز (دستی)         |            بله             |    [جزئیات](./kms)     |\n|   **Ohook**    |         آفیس         |             دائمی              |            خیر             |             [جزئیات](./ohook)             |\n|  **TSforge**   | ویندوز / ESU / آفیس  |             دائمی              | بله (در بیلد ۱۹۰۴۱ به بعد) |  [جزئیات](./tsforge)   |\n|   **KMS38**    | ویندوز ۱۰-۱۱-Server  |          تا سال ۲۰۳۸           |            خیر             |   [جزئیات](./kms38)    |\n| **Online KMS** |    ویندوز / آفیس     | ۱۸۰ روز (مادام‌العمر با تمدید) |            بله             | [جزئیات](./online_kms) |\n\n<p style=\"text-align: center;\">\n  برای مقایسه دقیق تمام روش‌ها، به <a href=\"./chart\">جدول مقایسه روش‌های فعال‌سازی</a> مراجعه کنید. </p>\n\n<br/><br/>\n\n# روش 1. فعال‌سازی دائمی با HWID\n\nبرای اکثر کاربران، روش HWID <Badge type=\"info\" text=\"Hardware ID\" /> ساده‌ترین راه برای دریافت لایسنس دیجیتال برای ویندوز ۱۰ و ۱۱ است.\n\n<br/>\n\n## مرحله ۱. باز کردن PowerShell به عنوان مدیر\n\n### روش الف: استفاده از نوار جستجو <Badge type=\"tip\" text=\"پیشنهادی\" />\n\n1. روی دکمه \"Start\" یا آیکون \"Search\" در نوار وظیف کلیک کنید\n2. تایپ کنید: `powershell`\n3. در نهایت روی `Run as administrator` کلیک کنید\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/9b27cd4b-21d8-4970-98bb-3c97010e09bf\" alt=\"اجرای-پاورشل-با-حالت-ادمین\" width=\"840px\" />\n</p>\n\n<p style=\"text-align: center;\">\n  برای بزرگنمایی تصویر بر روی آن کلیک کنید </p>\n\n<br/>\n\n::: tip به منظور اجرای Powershell\n\n::: details برای مشاهده روش‌های جایگزین، لطفاً اینجا کلیک کنید.\n\n### روش ب: استفاده از Run Box\n\n1. پنجره Run را باز کنید: کلیدهای `Win (⊞) + R` را همزمان فشار دهید\n2. تایپ کنید: `powershell`\n3. برای اجرا به عنوان مدیر، `Ctrl + Shift + Enter` را فشار دهید\n4. اگر پیغام User Account Control ظاهر شد، `Yes` را کلیک کنید\n\n<br/>\n\n### روش ج: استفاده از Power User Menu\n\n1. روی منوی \"Start\" کلیک راست کنید یا `Win (⊞) + X` را فشار دهید\n2. در ویندوز ۱۱ \"Windows Terminal (Admin)\" یا در ویندوز ۱۰ \"Windows PowerShell (Admin)\" را انتخاب کنید\n\n<br/>\n\nهمچنین می‌توانید از توضیحات داخل [این لینک][1] برای اجرای **Powershell** به 10 روش مختلف و از [این لینک][2] برای اجرای CMD به 8 روش مختلف در ویندوز استفاده کنید.\n\n:::\n\n<br/>\n\n## مرحله ۲. اجرای اسکریپت فعال‌سازی {#مرحله-۲}\n\nدستور زیر را کپی کرده و، در پنجره PowerShell جای‌گذاری (با راست-کلیک) و سپس کلید \"Enter\" را فشار دهید.\n\n::: code-group\n\n```powershell [برای‌ ویندوز ۸ - ۱۰ - ۱۱]\nirm https://get.activated.win | iex\n```\n\n```powershell [برای ویندوز ۷ و قبل‌تر]\niex ((New-Object Net.WebClient).DownloadString('https://get.activated.win'))\n```\n\n```powershell [در صورت بالا نیامدن اسکریپت]\niex (curl.exe -s --doh-url https://1.1.1.1/dns-query https://get.activated.win | Out-String)\n```\n\n:::\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/6b72787e-f5ad-47a2-ab2b-ae93de9f70bc\" alt=\"جای‌گذاری-دستور-در-PowerShell\" width=\"840px\" />\n</p>\n\n<br/>\n\n## مرحله ۳. انتخاب روش HWID\n\nدر منوی ظاهر شده. عدد `1` را فشار دهید تاHWID\" Activation\" انتخاب شود، سپس چند لحظه منتظر بمانید تا فرآیند کامل شود.\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/8b119e05-d506-4c42-91cb-ac58c9a2f189\" alt=\"انتخاب-متود-hwid\" width=\"880px\" />\n</p>\n\nتبریک 🎉\n \nویندوز شما اکنون با لایسنس دیجیتال به صورت دائمی فعال شده است.\n\nبرای بررسی وضعیت فعال‌سازی `ویندوز ۱۰` از این طریق اقدام کنید:  \nSettings > Update & Security > Activation [^1]\n\nبرای بررسی وضعیت فعال‌سازی `ویندوز ۱۱`، از این طریق اقدام کنید:  \nSettings > System > Activation [^2]\n\n<br/>\n\n::: info چند نکته\n\n::: details برای مشاهده توضیحات بیشتر کلیک کنید\n\n- **برای ویندوز:** شخصاً از روش `KMS` ([راهنمای kms](./kms)) و یا [[Online KMS](./online_kms)برای فعال‌سازی ویندوز 10 / 11 خودم استفاده می‌کنم. این روش رسمی است، هیچ فایلی روی سیستم ذخیره نمی‌کند و کمتر از 3 دقیقه زمان می‌برد. اگر به هر دلیلی این روش کار نکرد و ناموفق بود، انتخاب بعدی من HWID است، زیرا آن هم رسمی و بدون ذخیره داده‌ای در لوکال سیستم ما است.\n- **برای آفیس:** من از Ohook، TSforge یاOnline KMS استفاده می‌کنم. تفاوت‌های جزئی بین آن‌ها وجود دارد که در [جدول فوق 👆🏿](#جدول) ذکر شده است.\n\n:::\n\n::: info نکات مهم\n\n::: details برای مشاهده توضیحات بیشتر کلیک کنید\n\n- دستور IRM در PowerShell یک اسکریپت را از یک URL مشخص دانلود می‌کند و دستور IEX آن را اجرا می‌کند.\n- همیشه قبل از اجرای دستور، URL را دوباره بررسی کنید و هنگام دانلود دستی فایل‌ها، از قابل اعتماد بودن منبع اطمینان حاصل کنید.\n- محتاط باشید، زیرا برخی با تغییر URL در دستور IRM، بدافزار را در قالب MAS منتشر می‌کنند.\n\n  :::\n\n<br/>\n\n ## چگونه فعال‌سازی را حذف کنیم\n\n::: danger راهنمای حذف یا لغو اشتراک‌ها\n\n- **HWID:** لایسنس دیجیتال روی سرورهای مایکروسافت ذخیره شده و به سخت‌افزار شما متصل است. این نمی‌تواند به معنای سنتی `حذف` شود. تغییر عمده سخت‌افزار (مانند مادربرد) آن را `باطل` می‌کند. برای بازگشت به حالت غیرفعال، می‌توانید یک کلید عمومی [KMS](./kms38#چگونه-kms38-را-حذف-کنیم) نصب کنید. [جزئیات تکمیلی hwid](./hwid#چگونه-hwid-را-حذف-کنیم)\n\n- **Online KMS / Ohook / KMS38:** از گزینه متناظر `Uninstall` یا `Remove` در منوی اسکریپت [MAS](#مرحله-۲) استفاده کنید، سپس گزینه \"Fix Licensing\" را از منوی Troubleshoot اجرا کنید. [جزئیات KMS آنلاین](./online_kms#چگونه-آنلاین-kms-را-حذف-کنیم) و [جزئیات KMS38](./kms38#چگونه-kms38-را-حذف-کنیم)\n\n- **TSforge:** این روش فقط داده‌ها را اضافه می‌کند و فایلی نصب نمی‌کند. برای بازنشانی آن، کافی است گزینه `Fix Licensing` را از منوی Troubleshoot در اسکریپت MAS اجرا کنید. [جزئیات TSforge](./tsforge#چگونه-tsforge-را-حذف-کنیم) و [جزئیات Ohook](./ohook#چگونه-ohook-را-حذف-کنیم)\n\n:::\n\n<br/> \n\n::: info محصولات پشتیبانی شده ویندوز ۱۰/۱۱ برای HWID\n\n::: details برای مشاهده محصولات کلیک کنید\n\n|       نام محصولات ویندوز ۱۰/۱۱        |        EditionID         |   کلید عمومی Retail/OEM/MAK   |\n| :-----------------------------------: | :----------------------: | :---------------------------: |\n|               Education               |        Education         | YNMGQ-8RYV3-4PGQ3-C8XTP-7CFBY |\n|              Education N              |        EducationN        | 84NGF-MHBT6-FXBX8-QWJK7-DRR8H |\n|              Enterprise               |        Enterprise        | XGVPP-NMH47-7TTHJ-W3FW7-8HV2C |\n|             Enterprise N              |       EnterpriseN        | 3V6Q6-NQXCX-V8YXR-9QCYV-QPFCT |\n|         Enterprise LTSB 2015          |       EnterpriseS        | FWN7H-PF93Q-4GGP8-M8RF3-MDWWW |\n|         Enterprise LTSB 2016          |       EnterpriseS        | NK96Y-D9CD8-W44CQ-R8YTK-DYJWX |\n|         Enterprise LTSC 2019          |       EnterpriseS        | 43TBQ-NH92J-XKTM7-KT3KK-P39PB |\n|        Enterprise N LTSB 2015         |       EnterpriseSN       | NTX6B-BRYC2-K6786-F6MVQ-M7V2X |\n|        Enterprise N LTSB 2016         |       EnterpriseSN       | 2DBW3-N2PJG-MVHW3-G7TDK-9HKR4 |\n|                 Home                  |           Core           | YTMG3-N6DKC-DKB77-7M9GH-8HVX7 |\n|                Home N                 |          CoreN           | 4CPRK-NM3K3-X6XXQ-RXX86-WXCHW |\n|            Home China [^3]            |   CoreCountrySpecific    | N2434-X9D7W-8PF6X-8DV9T-8TYMD |\n|       Home Single Language [^4]       |    CoreSingleLanguage    | BT79Q-G7N6G-PGBYW-4YWX6-6F4BT |\n|            IoT Enterprise             |      IoTEnterprise       | XQQYW-NFFMW-XJPBH-K8732-CKFFD |\n|      IoT Enterprise Subscription      |      IoTEnterpriseK      | P8Q7T-WNK7X-PMFXY-VXHBG-RRK69 |\n|       IoT Enterprise LTSC 2021        |      IoTEnterpriseS      | QPM6N-7J2WJ-P88HH-P3YRH-YY74H |\n|       IoT Enterprise LTSC 2024        |      IoTEnterpriseS      | CGK42-GYN6Y-VD22B-BX98W-J8JXD |\n| IoT Enterprise LTSC Subscription 2024 |     IoTEnterpriseSK      | N979K-XWD77-YW3GB-HBGH6-D32MH |\n|                  Pro                  |       Professional       | VK7JG-NPHTM-C97JM-9MPGT-3V66T |\n|                 Pro N                 |      ProfessionalN       | 2B87N-8KFHP-DKV6R-Y2C8J-PKCKT |\n|             Pro Education             |  ProfessionalEducation   | 8PTT6-RNW4C-6V7J2-C2D3X-MHBPB |\n|            Pro Education N            |  ProfessionalEducationN  | GJTYN-HDMQY-FRR76-HVGC7-QPF8P |\n|       Pro for Workstations [^5]       | ProfessionalWorkstation  | DXG7C-N36C4-C4HTG-X4T3X-2YV77 |\n|      Pro N for Workstations [^6]      | ProfessionalWorkstationN | WYPNQ-8C467-V2W6J-TX4WX-WT2RQ |\n|                   S                   |          Cloud           | V3WVW-N2PV2-CGWC3-34QGF-VMJ2C |\n|                  S N                  |          CloudN          | NH9J3-68WK7-6FB93-4K3DF-DJ4F6 |\n|                  SE                   |       CloudEdition       | KY7PN-VR6RX-83W6Y-6DDYQ-T6R4W |\n|                 SE N                  |      CloudEditionN       | K9VKN-3BGWV-Y624W-MCRMQ-BHDCD |\n|                 Team                  |          PPIPro          | XKCNC-J26Q9-KFHD2-FKTHY-KD72Y |\n\n_کلید عمومی به صورت خودکار توسط اسکریپت در صورت نیاز اعمال می‌شود._\n\n:::\n\n<br/>\n\n::: danger رفع مشکلات\n\nاگر سوالی دارید، ابتدا صفحه [**سوالات متداول**](./faq) را مرور کنید — به احتمال زیاد جواب‌تان اینجاست.\n\nاگر همچنان مشکل پابرجا بود — با ما [**در ارتباط**](./troubleshoot) باشید.\n\n:::\n\n[^1]: برای بررسی وضعیت فعال‌سازی ویندوز ۱۰، به مسیر زیر بروید: <br/> Settings → Update & Security → Activation <br/> وضعیت فعال‌سازی ویندوز در آنجا قابل مشاهده خواهد بود. اگر ویندوز فعال باشد، باید \"Activated\" را با تیک سبز ببینید.\n\n[^2]: برای بررسی وضعیت فعال‌سازی ویندوز ۱۱، به مسیر زیر بروید: <br/> Settings → System → Activation <br/> وضعیت فعال‌سازی و جزئیات روش فعال‌سازی و حساب مایکروسافت و جزئیات مرتبط را مشاهده خواهید کرد.\n\n[^3]: نسخه مخصوص کشور چین.\n\n[^4]: نسخه تک‌زبانه.\n\n[^5]: Professional for Workstations.\n\n[^6]: Professional N for Workstations.\n\n[1]: https://www.minitool.com/news/open-windows-11-powershell.html\n[2]: https://www.minitool.com/news/open-command-prompt-windows-11.html\n[3]: https://github.com/NiREvil/windows-activation/discussions/\n[4]: mailto:dianashariati.cl@gmail.com\n[5]: https://NiREvil.github.io/windows-activation/\n"
  },
  {
    "path": "docs/fa/wa/issues_due_to_gaming_spoofers.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'مشکلات ناشی از اسپوفرهای بازی'\ndescription: 'فعال‌سازی MAS ممکن است خطای مربوط به -Incorrect ModuleId- را نشان دهد. برخی از اسپوفرهای بازی با کلیدهای رجیستری مربوط به فعال‌سازی ویندوز تداخل ایجاد می‌کنند و به همین دلیل ویندوز فعال نمی‌شود.'\ndate: 2021-02-11\neditLink: true\n---\n\n# مشکلات ناشی از اسپوفرهای بازی\n\n## شناسه ماژول نادرست\n\nفعال‌سازی MAS ممکن است خطای مربوط به «شناسه ماژول نادرست» را نشان دهد. برخی از اسپوفرهای بازی با کلیدهای رجیستری مربوط به فعال‌سازی ویندوز تداخل ایجاد می‌کنند و به همین دلیل ویندوز فعال نمی‌شود. برای رفع این مشکل، فقط باید آن کلید رجیستری خراب را با داده‌های پیش‌فرض بازیابی کنید.\n\n\n::: tip نکات\n\n- این فایل رجیستری را [دانلود][1] و اجرا کنید و تمام درخواست‌ها را تأیید کنید.\n- سیستم خود را مجدداً راه‌اندازی کنید.\n- فعال‌سازی را در MAS اجرا کنید و اگر مشکل هنوز حل نشده است، از [اینجا](./troubleshoot) با ما در ارتباط باشید.\n\n:::\n\n[1]: https://app.box.com/s/bwdlhknu66es69fooki1rlno9ppumfph\n"
  },
  {
    "path": "docs/fa/wa/kms.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'فعـال‌سازی ویندوز با روش KMS'\ndescription: 'راهنمای کامل فعال‌سازی قانونی ویندوز با روش رسمی KMS، قابل تمدید هر ۱۸۰ روز'\ndate: 2025-05-09\neditLink: true\nhead:\n  - - meta\n    - name: description\n      content: فعال‌سازی ایمن و قانونی ویندوز ۱۰، ویندوز ۱۱ با روش KMS. قابل تمدید، بدون نیاز به فایل اضافی و مطابق با کانال‌های رسمی مایکروسافت.\n  - - meta\n    - name: keywords\n      content: فعال‌سازی KMS، ویندوز ۱۰، ویندوز ۱۱، فعال‌سازی، روش قانونی، تمدید لایسنس، فعال‌سازی موقت\n  - - meta\n    - property: og:title\n      content: راهنمای فعال‌سازی ویندوز با روش رسمی KMS\n  - - meta\n    - property: og:description\n      content: آموزش کامل و ساده برای فعال‌سازی قانونی و قابل تمدید ویندوز با روش رسمی KMS\n---\n\n# فعال‌سازی ویندوز با روش KMS\n\n> این راهنما نحوه فعال‌سازی موقت و ایمن ویندوز و آفیس را با استفاده از روش رسمی `KMS` توضیح می‌دهد.\n>\n> این روش توسط مایکروسافت برای لایسنس‌های حجمی ارائه شده و به‌مدت `180` روز معتبر است. پس از پایان این دوره، به‌راحتی می‌توان آن را تمدید کرد.\n\n<br/>\n\n::: tip پیش‌نیازها\n\n- اتصال پایدار به اینترنت\n- دسترسی ادمین برای CMD در کامپیوتر\n- اتصال به VPN درصورت اجرا نشدن فرامین — دامنه‌ها فعلاً فیلتر نشده‌اند پس طبیعتاً برای اجرای دستورها نیازی به اتصال به VPN نیست\n\n:::\n\n<br/>\n\n## مرحله ۱. اجرای Command Prompt با مجوز مدیر سیستم\n\n### روش الف: استفاده از نوار جستجو <Badge type=\"tip\" text=\"پیشنهادی\" />\n\n1. روی دکمه \"Start\" یا آیکون \"Search\" در taskbar کلیک کنید\n2. عبارت `cmd` یا `Command Prompt` را تایپ کنید\n3. روی گزینه **Run as administrator** کلیک نمایید\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/4465a2d3-6c93-4ee1-bb63-94ab7b8e06ac\" alt=\"run-cmd-as-admin\" width=\"540px\" />\n</p>\n\n<br/>\n\n::: tip راهنمایی‌ها\n\n::: details برای مشاهده روش‌های جایگزین، لطفاً اینجا کلیک کنید\n\n### روش ب: استفاده از Run Box\n\n1. کلیدهای `Win (⊞) + R` را همزمان فشار دهید\n2. عبارت `cmd` یا `command prompt` را تایپ کنید\n3. برای اجرا به عنوان مدیر، کلیدهای `Ctrl + Shift + Enter` را فشار دهید\n4. اگر پنجره User Account Control ظاهر شد، روی `Yes` کلیک کنید\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/4465a2d3-6c93-4ee1-bb63-94ab7b8e06ac\" alt=\"run-cmd-as-admin\" width=\"540px\" />\n</p>\n\n<br/> \n\n### روش ج: استفاده از Power User Menu\n\n1. روی آیکون \"Windows Start\" در \"Taskbar\" کلیک راست کنید (یا `Win + X` را فشار دهید)\n2. روی گزینه **Windows Terminal (Admin)** در ویندوز ۱۱ یا **Windows PowerShell (Admin)** در ویندوز ۱۰ کلیک کنید\n\n> همچنین می‌توانید از [این لینک][2] برای مشاهده ۸ روش اجرای **cmd** و از [این لینک][1] برای اجرای PowerShell به ۱۰ روش مختلف در ویندوز استفاده کنید.\n\n:::\n\n<br/>\n\n## مرحله ۲. نصب کلید عمومی KMS\n\nدر پنجره Command Prompt، دستور زیر را اجرا کنید. حتماً `Your-License-Key` را با کلید مناسب از جدول زیر که با نسخه ویندوز شما هم‌خوانی دارد جایگزین کنید:\n\n```reg\nslmgr /ipk Your-License-Key\n```\n\n<br/>\n\n::: tip تشخیص نسخه ویندوز شما\n\n::: details برای مشاهده روش‌های مختلف کلیک کنید\n\n### روش الف: استفاده از میانبر کیبورد <Badge type=\"tip\" text=\"پیشنهادی\" />\n\nکلیدهای `Win (⊞) + Pause/Break` را همزمان فشار دهید. این کار بخش **About** را در **Settings** مستقیماً باز می‌کند و شما نسخه ویندوز خود را در زیر **Windows specifications** خواهید دید.\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/647ef16b-9208-4ff3-a94b-825ffa99721f\" alt=\"about-system\" width=\"540px\" />\n</p>\n\n<br/>\n\n### روش ب: استفاده از تنظیمات سیستم\n\n1. روی دکمه `🪟 Start` و سپس روی `⚙️ Settings` کلیک کنید\n2. روی `💻 System` کلیک کنید\n3. به پایین اسکرول کرده و روی `ℹ️ About` کلیک کنید\n4. در زیر `Windows specifications`، نسخه ویندوز شما را خواهید دید\n\n<br/>\n\n### روش ج: استفاده از Run Box\n\n1. کلیدهای `Win (⊞) + R` را فشار دهید تا Run dialog box باز شود\n2. یکی از موارد `ms-settings:about` یا `winver` یا `msinfo32` را تایپ کنید و Enter را فشار دهید\n3. پنجره‌ای ظاهر می‌شود که نسخه ویندوز، Build number و سایر جزئیات را نشان می‌دهد\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/f764797a-e07f-4c58-b932-bfe7b359a7bd\" alt=\"winver-command\" width=\"540px\" />\n</p>\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/4c7edc15-1c02-4d7b-ab5f-df70eaff8ad7\" alt=\"winver-response\" width=\"540px\" />\n</p><br/>\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/a6360712-0ad0-4be4-b0a4-01171d293d83\" alt=\"msinfo32-command\" width=\"540px\" />\n</p>\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/8592c1bd-4a1a-47c1-bd21-0eb17049db31\" alt=\"msinfo32-response\" width=\"540px\" />\n</p><br/>\n\n<br/>\n\n### روش د: استفاده از Command Prompt یا PowerShell\n\n1. ابتدا Command Prompt یا PowerShell را اجرا کنید\n2. یکی از عبارات `systeminfo`  یا  `systeminfo | findstr /B /C:\"OS Name\" /B /C:\"OS Version\"` را تایپ کرده و Enter را فشار دهید\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/16e8f49a-0cec-4836-b841-0cbd9344fbb1\" alt=\"findstr command\" width=\"540px\" />\n</p>\n\n<br/>\n\nهمچنین می‌توانید `slmgr /dlv` را تایپ کنید که اطلاعات مفصل لایسنس را نمایش می‌دهد:\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/86925e56-7cac-4b53-8ccf-6addcd799ece\" alt=\"slmgr-command\" width=\"540px\" />\n</p>\n\n:::\n\n<br/>\n\nلطفاً یکی از **کلیدهای لایسنس** را از لیست زیر که **با نسخه ویندوز شما مطابقت دارد** انتخاب کنید و آن را با عبارت `Your-License-Key` در دستور جایگزین کنید (با راست-کلیک).\n\n<br/>\n\n### کلیدهای لایسنس حجمی <Badge type=\"danger\" text=\"GVLK\" />\n\n\n| نسخه ویندوز      | کلید GVLK                     |\n| :--------------- | :---------------------------- |\n| Home             | TX9XD-98N7V-6WMQ6-BX7FG-H8Q99 |\n| Home N           | 3KHY7-WNT83-DGQKR-F7HPR-844BM |\n| Home SL [^3]     | 7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH |\n| Home CS [^4]     | PVMJN-6DFY6–9CCP6–7BKTT-D3WVR |\n| Pro              | W269N-WFGWX-YVC9B-4J6C9-T83GX |\n| Pro N            | MH37W-N47XK-V7XM9-C7227-GCQG9 |\n| Education        | YNMGQ-8RYV3-4PGQ3-C8XTP-7CFBY |\n| Education N      | 84NGF-MHBT6-FXBX8-QWJK7-DRR8H |\n| Pro Education    | NW6C2-QMPVW-D7KKK-3GKT6-VCFB2 |\n| Pro Education N  | 2WH4N-8QGBV-H22JP-CT43Q-MDWWJ |\n| Pro for W [^5]   | DXG7C-N36C4-C4HTG-X4T3X-2YV77 |\n| Pro N for W [^6] | WYPNQ-8C467-V2W6J-TX4WX-WT2RQ |\n| Enterprise       | NPPR9-FWDCX-D2C8J-H872K-2YT43 |\n| Enterprise N     | DPH2V-TTNVB-4X9Q3-TJR4H-KHJW4 |\n| Team             | XKCNC-J26Q9-KFHD2-FKTHY-KD72Y |\n| S                | V3WVW-N2PV2-CGWC3-34QGF-VMJ2C |\n| SE               | KY7PN-VR6RX-83W6Y-6DDYQ-T6R4W |\n\n<br/>\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/d5d93702-7865-4552-85d0-6916b1331bc0\" alt=\"Install-KMS-Key\" width=\"580px\" />\n</p>\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/50c23cad-7690-49fb-bf1c-d1c7cc66f0fe\" alt=\"install-KMS-keyy\" width=\"580px\" />\n</p>\n\n<br/>\n\n::: details کلیدهای لایسنس جایگزین\n\n|           **کلید**            |    **نسخه**    |\n| :---------------------------: | :------------: |\n| TX9XD-98N7V-6WMQ6-BX7FG-H8Q99 |      Home      |\n| 3KHY7-WNT83-DGQKR-F7HPR-844BM |     Home N     |\n| 7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH |    Home SL     |\n| PVMJN-6DFY6–9CCP6–7BKTT-D3WVR |    Home CS     |\n| W269N-WFGWX-YVC9B-4J6C9-T83GX |  Professional  |\n| MH37W-N47XK-V7XM9-C7227-GCQG9 | Professional N |\n| NW6C2-QMPVW-D7KKK-3GKT6-VCFB2 |   Education    |\n| 2WH4N-8QGBV-H22JP-CT43Q-MDWWJ |  Education N   |\n| NPPR9-FWDCX-D2C8J-H872K-2YT43 |   Enterprise   |\n| DPH2V-TTNVB-4X9Q3-TJR4H-KHJW4 |  Enterprise N  |\n\n:::\n\n<br/>\n\n## مرحله ۳. تنظیم آدرس سرور KMS\n\nسپس، سیستم خود را به یک سرور KMS عمومی متصل کنید. این دستور را اجرا کنید:\n\n```reg\nslmgr /skms kms8.msguides.com\n```\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/edd0835f-c314-4ef8-a87d-a33e29f3f7c0\" alt=\"set-kms-server\" width=\"580px\" />\n</p>\n\n<br/>\n\n## مرحله ۴. فعال‌سازی ویندوز\n\nدر نهایت، با اجرای این دستور فعال‌سازی را انجام دهید:\n\n```reg\nslmgr /ato\n```\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/95e014e5-8946-4036-84ca-77ebb6122b1b\" alt=\"active-windows\" width=\"580px\" />\n</p>\n\n<br/>\n\n## مرحله ۵. بررسی وضعیت فعال‌سازی\n\n**همه چیز آماده است!**\n\n### برای ویندوز ۱۰\n\n**Settings → Update & Security → Activation** [^7]\n\n### برای ویندوز ۱۱\n\n**Settings → System → Activation** [^8]\n\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/da52f1bb-79c9-45db-bade-a0f56cd0a739\" alt=\"activated\" width=\"580px\" />\n</p>\n\n<br/>\n\n### رفع مشکلات\n\n- **خطای 0xC004F074:** معمولاً به این معنی است که اتصال اینترنت شما ناپایدار است یا سرور شلوغ است. مطمئن شوید که آنلاین هستید و دوباره دستور `slmgr /ato` را امتحان کنید.\n\n- **این روش کار نمی‌کند؟** اگر همچنان مشکل دارید، روش **HWID** را از [**راهنمای اصلی**](./index#مرحله-۲) امتحان کنید.\n\n- بد نیست صفحه [**سوالات پرتکرار**](./faq) را مرور کنید — به احتمال زیاد جواب‌تان اینجاست.\n\n- اگر همچنان مشکل پابرجا بود — با ما [**در ارتباط**](./troubleshoot) باشید.\n\n<h3 align=\"center\">کنجکاو باشید 🪐🩶</h3>\n\n<br/>\n\n### درباره کلیدهای میانبر \n\n::: details <Badge type=\"danger\" text=\"فقط برای علاقه‌مندان\" />\n\n**از کلیدهای میانبر** برای باز کردن برنامه‌های پیش‌فرض در منوی Win+X استفاده کنید.\n\n**منوی Power user** یک منوی کوتاه است که برخی از ابزارهای پیشرفته سیستم مانند event viewer، device manager، disk management، computer management، task manager و غیره را فهرست می‌کند.\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/7fa52188-2ac2-4b4d-9600-cf3f92e11d3d\" alt=\"windows-plus-x-menu\" width=\"320px\" />\n</p>\n\n<br/>\n\nبرنامه‌های پیش‌فرض در منوی Power User دارای کلید میانبر متناظر هستند. آشنایی با کلیدهای میانبر برنامه‌های معمول می‌تواند زمان زیادی صرفه‌جویی کند و بهره‌وری را افزایش دهد.  \nبه عنوان مثال:\n\n- فشردن **`Windows + X`** منوی **Power User** (منوی Win+X) را باز می‌کند.\n- فشردن کلید دوم (مثل `F`، `B`، `U`) برنامه متناظر را انتخاب می‌کند.\n- برای گزینه‌های خاموش/راه‌اندازی مجدد، `U` زیرمنو را باز می‌کند، سپس `I`، `S`، `U` هرکدام عمل خاصی را انجام می‌دهند، برای مثال می‌توانید `R` را برای راه‌اندازی مجدد سیستم فشار دهید.\n\n<br/>\n\nدر زیر کلیدهای میانبر متناظر با هر برنامه آمده است:\n\n| میانبر کیبورد               | برنامه                   |\n| --------------------------- | ------------------------ |\n| `Windows + X`, سپس `F`      | Apps and Features        |\n| `Windows + X`, سپس `B`      | Mobility Center          |\n| `Windows + X`, سپس `O`      | Power Options            |\n| `Windows + X`, سپس `V`      | Event Viewer             |\n| `Windows + X`, سپس `Y`      | System                   |\n| `Windows + X`, سپس `M`      | Device Manager           |\n| `Windows + X`, سپس `W`      | Network Connections      |\n| `Windows + X`, سپس `K`      | Disk Management          |\n| `Windows + X`, سپس `G`      | Computer Management      |\n| `Windows + X`, سپس `A`      | Windows Terminal (Admin) |\n| `Windows + X`, سپس `T`      | Task Manager             |\n| `Windows + X`, سپس `N`      | Settings                 |\n| `Windows + X`, سپس `E`      | File Explorer            |\n| `Windows + X`, سپس `S`      | Search                   |\n| `Windows + X`, سپس `R`      | Run                      |\n| `Windows + X`, سپس `U`, `I` | Sign out                 |\n| `Windows + X`, سپس `U`, `S` | Sleep                    |\n| `Windows + X`, سپس `U`, `U` | Shut Down                |\n| `Windows + X`, سپس `U`, `R` | Restart                  |\n| `Windows + X`, سپس `D`      | Desktop                  |\n\n:::\n\n[^1]: ۱۰ روش برای اجرای PowerShell در ویندوز [اینجا بخوانید][1].\n\n[^2]: ساده‌ترین روش دیگر برای اجرای **PowerShell** از طریق **Power User Menu** می‌باشد. <br/> - 1. روی آیکون `Windows Start` در `Taskbar` کلیک راست کنید تا منوی حاوی میانبرهای ابزارهای پرکاربرد باز شود، همچنین می‌توانید این منو را با `Win (⊞) + x` باز کنید.<br/> - 2. سپس بر روی گزینه **Windows Terminal (Admin)** در ویندوز 11 و یا **Windows PowerShell (Admin)** در ویندوز 10 کلیک کنید.\n\n[^3]: نسخه تک زبانه Home.\n\n[^4]: نسخه مخصوص کشور Home.\n\n[^5]: Professional for Workstations.\n\n[^6]: Professional N for Workstations.\n\n[^7]: برای بررسی وضعیت فعال‌سازی ویندوز 10، به این آدرس بروید: \n<br/> Settings → Update & Security → Activation <br/>وضعیت فعال‌سازی شما در آنجا فهرست شده است. اگر ویندوز فعال باشد، باید \"Activated\" را با علامت تیک سبز ببینید.\n\n[^8]: برای بررسی وضعیت فعال‌سازی ویندوز 11، به این آدرس بروید: <br/> Settings → System → Activation <br/>وضعیت فعال‌سازی قابل مشاهده خواهد بود، همراه با جزئیات روش فعال‌سازی و حساب‌های پیوند شده‌ی مایکروسافت.\n\n[1]: https://www.minitool.com/news/open-windows-11-powershell.html\n[2]: https://www.minitool.com/news/open-command-prompt-windows-11.html\n[3]: https://github.com/NiREvil/windows-activation/discussions\n[4]: mailto:diana.clk01@gmail.com\n"
  },
  {
    "path": "docs/fa/wa/kms38.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'فعال‌سازی KMS38'\ndescription: 'فعال‌سازی KMS38 را کشف کنید - یک راه‌حل امن و منبع باز برای فعال‌سازی محصولات ویندوز و آفیس.'\ndate: 2025-03-06\neditLink: true\n---\n\n# فعال‌سازی KMS38\n\n> فعال‌سازی KMS38 را کشف کنید - یک راه‌حل امن و منبع باز برای فعال‌سازی محصولات ویندوز و آفیس\n>\n> KMS38 فعال‌سازی آفلاین برای ویندوز 10/11 و سرور (بیلد 14393+) با اعتبار تا سال 2038 را فراهم می‌کند، بدون اینکه هیچ فایلی در سیستم شما باقی بگذارد.\n>\n> یاد بگیرید که چگونه این روش هوشمندانه فناوری KMS مایکروسافت را برای فعال‌سازی دائمی آفلاین گسترش می‌دهد.\n\n::: tip بررسی اجمالی\n\n- این روش فعال‌سازی ویندوز 10/11 و ویندوز سرور (بیلدهای 14393 و بالاتر) را تا 19 ژانویه 2038، 03:14:07 UTC فعال می‌کند.\n- این روش فعال‌سازی هیچ فایلی را در سیستم ذخیره نمی‌کند.\n- این روش فعال‌سازی به صورت آفلاین کار می‌کند.\n- برخلاف گزینه‌های فعال‌سازی HWID و آنلاین KMS، KMS38 با هیچ روش فعال‌سازی رسمی مطابقت ندارد.\n\n:::\n\n\n## چگونه کار می‌کند؟\n\n- در یک محیط فعال‌سازی [KMS][1] واقعی، فعال‌سازی حداکثر تا 180 روز طول می‌کشد. این کار با استفاده از یک مجوز معتبر و راه‌اندازی سرور انجام می‌شود.\n  - در فرآیند ارتقاء عمده ویندوز، سیستم از `gatherosstate.exe` برای انتقال دوره فعال‌سازی KMS باقی‌مانده استفاده می‌کند. این کار را با ایجاد یک بلیط که می‌تواند به صورت آفلاین استفاده شود، انجام می‌دهد.\n\n- ترفند این است که ما می‌توانیم `gatherosstate.exe` را در مورد دوره فعال‌سازی KMS باقی‌مانده فریب دهیم و به صورت دستی دوره مورد نظر را تا حداکثر 19 ژانویه 2038، 03:14:07 UTC قرار دهیم.\n\n- **چرا تا سال 2038 محدود شده است؟**\n  - این به دلیل [مشکل سال 2038][2] است. این تاریخ (19 ژانویه 2038، 03:14:07 UTC) حداکثر مقداری است که می‌تواند در یک عدد صحیح 32 بیتی علامت‌دار قرار گیرد.\n\n- **چگونه می‌توانیم gatherosstate.exe را متقاعد کنیم؟**\n  - دو روش برای آن وجود دارد.\n    - **1-** قرار دادن یک فایل [slc.dll سفارشی][3] در کنار gatherosstate.exe: gatherosstate.exe از فایل `C:\\Windows\\System32\\slc.dll` سیستم برای جمع‌آوری اطلاعات سیستم استفاده می‌کند. اگر یک فایل slc.dll سفارشی را در کنار gatherosstate.exe قرار دهیم که بتواند داده‌های بیهوده به آن ارسال کند، آنگاه به سادگی آن را می‌پذیرد و یک بلیط معتبر تولید می‌کند که امکان فعال‌سازی تا 19 ژانویه 2038، 03:14:07 UTC را فراهم می‌کند.\n    - **2-** [تغییر][4] خود فایل gatherosstate.exe به طوری که وضعیت فعال‌سازی سیستم را بررسی نکند و ما بتوانیم دوره فعال‌سازی را به دلخواه خود قرار دهیم.\n\n ### مهم\n\n::: important **جهت شفاف سازی**\n\n- ما **هیچ فایل سیستمی روی برد را برای دریافت بلیط تغییر/پچ نمی‌کنیم**.\n- Gatherosstate.exe بخشی از فایل ISO است و در فایل‌های سیستمی درایو C موجود نیست. فایل slc.dll سیستم دست نخورده باقی می‌ماند؛ در عوض، ما از slc.dll سفارشی فقط برای یک لحظه کوتاه تولید بلیط استفاده می‌کنیم.\n  - آخرین نسخه MAS از هیچ یک از این روش‌ها استفاده نمی‌کند؛ در عوض، از بلیط‌های جهانی آماده استفاده می‌کند (برای اطلاعات فعال‌سازی دستی به زیر مراجعه کنید).\n    - **س:** آیا مایکروسافت می‌تواند این نوع فعال‌سازی را مسدود کند؟\n    - **ج:** نه به طور مستقیم. آنها فقط می‌توانند Clipup را به‌روزرسانی کنند تا حداکثر دوره فعال‌سازی 180 روز را مجاز کند. کار زیادی از طرف آنها نمی‌تواند انجام شود. بلیط‌ها اصلاً به مایکروسافت ارسال نمی‌شوند، بنابراین آنها نمی‌توانند آنها را مسدود کنند یا مستقیماً اقدامی انجام دهند.\n\n:::\n\n## محصولات پشتیبانی شده\n\n### ویندوز 10 / 11\n\n|                     نام‌های محصول                     |        EditionID         |  کلید مجوز حجمی عمومی   |\n| :---------------------------------------------------: | :----------------------: | :---------------------------: |\n|                       Education                       |        Education         | NW6C2-QMPVW-D7KKK-3GKT6-VCFB2 |\n|                      Education N                      |        EducationN        | 2WH4N-8QGBV-H22JP-CT43Q-MDWWJ |\n|                      Enterprise                       |        Enterprise        | NPPR9-FWDCX-D2C8J-H872K-2YT43 |\n|                     Enterprise N                      |       EnterpriseN        | DPH2V-TTNVB-4X9Q3-TJR4H-KHJW4 |\n|                     Enterprise G                      |       EnterpriseG        | YYVX9-NTFWV-6MDM3-9PT4T-4M68B |\n|                    Enterprise G N                     |       EnterpriseGN       | 44RPN-FTY23-9VTTB-MP9BX-T84FV |\n|                 Enterprise LTSB 2016                  |       EnterpriseS        | DCPHK-NFMTC-H88MJ-PFHPY-QJ4BJ |\n|                 Enterprise LTSC 2019                  |       EnterpriseS        | M7XTQ-FN8P6-TTKYV-9D4CC-J462D |\n|                 Enterprise LTSC 2021                  |       EnterpriseS        | M7XTQ-FN8P6-TTKYV-9D4CC-J462D |\n|                 Enterprise LTSC 2024                  |       EnterpriseS        | M7XTQ-FN8P6-TTKYV-9D4CC-J462D |\n|                Enterprise N LTSB 2016                 |       EnterpriseSN       | QFFDN-GRT3P-VKWWX-X7T3R-8B639 |\n|                Enterprise N LTSC 2019                 |       EnterpriseSN       | 92NFX-8DJQP-P6BBQ-THF9C-7CG2H |\n|                Enterprise N LTSC 2021                 |       EnterpriseSN       | 92NFX-8DJQP-P6BBQ-THF9C-7CG2H |\n|                Enterprise N LTSC 2024                 |       EnterpriseSN       | 92NFX-8DJQP-P6BBQ-THF9C-7CG2H |\n| IoT Enterprise LTSC 2021 <br/> (19044.2788 و بالاتر) |      IoTEnterpriseS      | KBN8V-HFGQ4-MGXVD-347P6-PDQGT |\n|               IoT Enterprise LTSC 2024                |      IoTEnterpriseS      | KBN8V-HFGQ4-MGXVD-347P6-PDQGT |\n|                         Home                          |           Core           | TX9XD-98N7V-6WMQ6-BX7FG-H8Q99 |\n|                        Home N                         |          CoreN           | 3KHY7-WNT83-DGQKR-F7HPR-844BM |\n|                      Home China                       |   CoreCountrySpecific    | PVMJN-6DFY6-9CCP6-7BKTT-D3WVR |\n|                 Home Single Language                  |    CoreSingleLanguage    | 7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH |\n|                         Lean                          |          CloudE          | NBTWJ-3DR69-3C4V8-C26MC-GQ9M6 |\n|   Enterprise multi-session <br/> (17763 و بالاتر)    |        ServerRdsh        | CPWHC-NT2C7-VYW78-DHDB2-PG3GK |\n|   Enterprise multi-session <br/> (17134 و قبل)   |        ServerRdsh        | 7NBT4-WGBQX-MP4H7-QXFF8-YP3KX |\n|                          Pro                          |       Professional       | W269N-WFGWX-YVC9B-4J6C9-T83GX |\n|                         Pro N                         |      ProfessionalN       | MH37W-N47XK-V7XM9-C7227-GCQG9 |\n|                     Pro Education                     |  ProfessionalEducation   | 6TP4R-GNPTD-KYYHQ-7B7DP-J447Y |\n|                    Pro Education N                    |  ProfessionalEducationN  | YVWGF-BXNMC-HTQYQ-CPQ99-66QFC |\n|                 Pro for Workstations                  | ProfessionalWorkstation  | NRG8B-VKK3Q-CXVCJ-9G2XF-6Q84J |\n|                Pro N for Workstations                 | ProfessionalWorkstationN | 9FNHH-K3HBT-3W4TD-6383H-6XYWF |\n|                          SE                           |       CloudEdition       | 37D7F-N49CB-WQR8W-TBJ73-FM8RX |\n|                         SE N                          |      CloudEditionN       | 6XN7V-PCBDC-BDBRH-8DQY7-G6R44 |\n\n<br/>\n\n### ویندوز سرور 2025 (LTSC)\n\n|            نام‌های محصول             |    EditionID     |  کلید مجوز حجمی عمومی   |\n| :----------------------------------: | :--------------: | :---------------------------: |\n|     Windows Server 2025 Standard     |  ServerStandard  | TVRH6-WHNXV-R9WG3-9XRFY-MY832 |\n|    Windows Server 2025 Datacenter    | ServerDatacenter | D764K-2NDRG-47T6Q-P8T8W-YP6DF |\n|    Windows Server 2025 Azure Core    |  ServerAzureCor  | FCNV3-279Q9-BQB46-FTKXX-9HPRH |\n| Windows Server 2025 Azure Datacenter |  ServerTurbine   | XGN3F-F394H-FD2MY-PP6FD-8MCRC |\n\n<br/>\n\n### ویندوز سرور 2022 (LTSC)\n\n|            نام‌های محصول             |    EditionID     |  کلید مجوز حجمی عمومی   |\n| :----------------------------------: | :--------------: | :---------------------------: |\n|    Windows Server 2022 Datacenter    | ServerDatacenter | WX4NM-KYWYW-QJJR4-XV3QB-6VM33 |\n|     Windows Server 2022 Standard     |  ServerStandard  | VDYBN-27WPP-V4HQT-9VMD4-VMK7H |\n|    Windows Server 2022 Azure Core    |  ServerAzureCor  | 6N379-GGTMK-23C6M-XVVTC-CKFRQ |\n| Windows Server 2022 Azure Datacenter |  ServerTurbine   | NTBV8-9K7Q8-V27C6-M2BTV-KHMXV |\n\n<br/>\n\n### ویندوز سرور 2019 (LTSC)\n\n|         نام‌های محصول          |    EditionID     |  کلید مجوز حجمی عمومی   |\n| :----------------------------: | :--------------: | :---------------------------: |\n| Windows Server 2019 Datacenter | ServerDatacenter | WMDGN-G9PQG-XVVXX-R3X43-63DFG |\n|  Windows Server 2019 Standard  |  ServerStandard  | N69G4-B89J2-4G8F4-WWYCC-J464C |\n| Windows Server 2019 Essentials |  ServerSolution  | WVDHN-86M7X-466P6-VHXV7-YY726 |\n| Windows Server 2019 Azure Core |  ServerAzureCor  | FDNH6-VW9RW-BXPJ7-4XTYG-239TB |\n|   Windows Server 2019 ARM64    |   ServerARM64    | GRFBW-QNDC4-6QBHG-CCK3B-2PR88 |\n\n<br/>\n\n### ویندوز سرور 2016 (LTSC)\n\n| نام‌های محصول                     | EditionID          | کلید مجوز حجمی عمومی    |\n| --------------------------------- | ------------------ | ----------------------------- |\n| Windows Server 2016 ARM64         | ServerARM64        | K9FYF-G6NCK-73M32-XMVPY-F9DRR |\n| Windows Server 2016 Datacenter    | ServerDatacenter   | CB7KF-BWN84-R7R2Y-793K2-8XDDG |\n| Windows Server 2016 Standard      | ServerStandard     | WC2BQ-8NRM3-FDDYY-2BFGV-KHKQY |\n| Windows Server 2016 Essentials    | ServerSolution     | JCKRF-N37P4-C2D82-9YXRT-4M63B |\n| Windows Server 2016 Cloud Storage | ServerCloudStorage | QN4C6-GBJD2-FB422-GHWJK-GJG2R |\n| Windows Server 2016 Azure Core    | ServerAzureCor     | VP34G-4NPPG-79JTQ-864T4-R3MQX |\n\n<br/>\n\n### ویندوز سرور 23H2 (کانال سالانه)\n\n| نام‌های محصول             | EditionID        | کلید مجوز حجمی عمومی    |\n| ------------------------- | ---------------- | ----------------------------- |\n| Windows Server Datacenter | ServerDatacenter | WX4NM-KYWYW-QJJR4-XV3QB-6VM33 |\n\n<br/>\n\n### ویندوز سرور 20H2، 2004، 1909، 1903 و 1809 (کانال نیمه سالانه)\n\n| نام‌های محصول             | EditionID            | کلید مجوز حجمی عمومی    |\n| ------------------------- | -------------------- | ----------------------------- |\n| Windows Server Datacenter | ServerDatacenterACor | 6NMRW-2C8FM-D24W7-TQWMY-CWH2D |\n| Windows Server Standard   | ServerStandardACor   | N2KJX-J94YW-TQVFB-DG9YT-724CC |\n\n<br/>\n\n### ویندوز سرور 1803 (کانال نیمه سالانه)\n\n| نام‌های محصول             | EditionID            | کلید مجوز حجمی عمومی    |\n| ------------------------- | -------------------- | ----------------------------- |\n| Windows Server Datacenter | ServerDatacenterACor | 2HXDN-KRXHB-GPYC7-YCKFJ-7FVDG |\n| Windows Server Standard   | ServerStandardACor   | PTXN8-JFHJM-4WC78-MPCBR-9W4KR |\n\n<br/>\n\n### ویندوز سرور 1709 (کانال نیمه سالانه)\n\n| نام‌های محصول             | EditionID            | کلید مجوز حجمی عمومی    |\n| ------------------------- | -------------------- | ----------------------------- |\n| Windows Server Datacenter | ServerDatacenterACor | 6Y6KB-N82V8-D8CQV-23MJW-BWTG6 |\n| Windows Server Standard   | ServerStandardACor   | DPCNP-XQFKJ-BJF7R-FRC8D-GF6G4 |\n\n<br/>\n\n::: tip توجه\n\n- سیستم‌ها در تمام معماری‌ها (x86، x64 و arm64) پشتیبانی می‌شوند.\n- هر نسخه ارزیابی ویندوز (یعنی 'EVAL' LTSB/C) فراتر از دوره ارزیابی. می‌توانید از گزینه TSforge در MAS برای بازنشانی فعال‌سازی در هر زمان استفاده کنید.\n- KMS38 فقط از نسخه 14393 (1607) و نسخه‌های جدیدتر ویندوز/سرور پشتیبانی می‌کند.\n- نسخه اولیه (19044.1288) Iot LTSC 2021 از مجوز KMS پشتیبانی نمی‌کند و بعداً در به‌روزرسانی 19044.2788 اضافه شد.\n- نسخه Server Azure Datacenter (ServerTurbine) از فعال‌سازی در سیستم‌های غیر azure پشتیبانی نمی‌کند.\n\n:::\n\n<br/>\n\n## چگونه kms38 را حذف کنیم\n\n::: danger چگونه KMS38 را حذف کنیم\n\n- در MAS، به بخش فعال‌سازی KMS38 بروید و گزینه Remove KM38 Protection را اعمال کنید.\n- پس از آن، در MAS، به Troubleshoot بروید و گزینه Fix Licensing را اعمال کنید.\n- انجام شد ✔️\n\n:::\n\n## KMS38 - Server Cor/Acor\n\n- نسخه‌های Windows Server Cor/Acor (بدون رابط کاربری گرافیکی) فایل `clipup.exe` را ندارند.\n- برای فعال‌سازی KMS38 آن، باید فایل `ClipUp.exe` را از این لینک [app.box.com/s/][5] دانلود کنید.\n   `فایل: ClipUp.exe`\n   `SHA-256: 0d6e9f6bbd0321eda149658d96040cb4f79e0bd93ba60061f25b28fecbf4d4ef`\n   این فایل دارای امضای دیجیتالی است که قابل تأیید است. همچنین می‌توانید این فایل را از [ISO رسمی Windows Server 2016 x64 RTM.download][6] دریافت کنید.\n- فایل `ClipUp.exe` را در کنار اسکریپت فعال‌سازی KMS38 قرار دهید. این یا `MAS_AIO.cmd` یا `KMS38_Activation.cmd` خواهد بود\n   اسکریپت فعال‌سازی `ClipUp.exe` را در پوشه فعلی (از جایی که اسکریپت در حال اجرا است) بررسی می‌کند و بر اساس آن از آن استفاده می‌کند.\n\n<br/>\n\n### حفاظت KMS38\n\n- فعال‌سازی KMS38 در برابر جایگزینی ناخواسته توسط یک فعال‌کننده KMS 180 روزه آسیب‌پذیر است.\n- از MAS 1.7، اسکریپت به طور پیش‌فرض حفاظت KMS38 را فعال می‌کند.\n\n- اگر قصد دارید از KMS_VL_ALL توسط abbodi1406 یا [MAS][7] (گزینه آنلاین KMS) برای **فعال‌سازی آفیس** استفاده کنید، می‌توانید این حفاظت را حذف کنید.\n- در زیر توضیح داده شده است که چگونه اسکریپت از KMS38 محافظت می‌کند.\n- در روش فعال‌سازی KMS، ویندوز ابتدا IP KMS ثبت شده به عنوان یک KMS خاص را بررسی می‌کند، و اگر تعریف نشده باشد، سپس IP KMS جهانی را بررسی می‌کند.\n  - واقعیت دیگر این است که اگر Localhost (محدوده IP 127.0.0.0/8) به عنوان IP KMS در ویندوز 8 و سیستم عامل‌های بعدی تعریف شود، ویندوز آن را به عنوان یک IP KMS معتبر نمی‌پذیرد.\n  - این اسکریپت به سادگی از واقعیت‌های فوق برای محافظت از فعال‌سازی KMS38 در برابر بازنویسی توسط هر فعال‌سازی KMS 180 روزه جایگزین و 'عادی' استفاده می‌کند، و در عین حال، آن فعال‌کننده KMS می‌تواند برای فعال‌سازی آفیس استفاده شود.\n  - مراحل اسکریپت\n  - IP KMS خاص نسخه ویندوز را روی Localhost (127.0.0.2) تنظیم کنید\n  - از رجیستری زیر در برابر ویرایش و حذف محافظت کنید\n    `HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\SoftwareProtectionPlatform\\55c92734-d682-4d71-983e-d6ec3f16059f\\XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX\\`\n- انجام شد ✔️\n\n[1]: https://docs.microsoft.com/en-us/previous-versions/tn-archive/ee939272(v=technet.10)?redirectedfrom=MSDN#kms-overview\n[2]: https://en.wikipedia.org/wiki/Year_2038_problem\n[3]: https://github.com/asdcorp/Integrated_Patcher_3\n[4]: https://github.com/asdcorp/GamersOsState\n[5]: https://app.box.com/s/cwoxub9tqyowhnyva6ign6qnogb6vk0o\n[6]: https://download.microsoft.com/download/1/6/F/16FA20E6-4662-482A-920B-1A45CF5AAE3C/14393.0.160715-1616.RS1_RELEASE_SERVER_EVAL_X64FRE_EN-US.ISO\n[7]: https://github.com/NiREvil/windows-activation\n"
  },
  {
    "path": "docs/fa/wa/licensing-servers-issue.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'مشکل سرورهای لایسنس'\ndescription: 'در برخی موارد، فعال‌سازی HWID ممکن است به دلیل عدم اتصال سیستم به سرورهای لایسنس HWID با شکست مواجه شود.'\ndate: 2023-02-11\neditLink: true\n---\n\n# مشکل سرورهای لایسنس\n\nدر برخی موارد، **فعال‌سازی HWID** ممکن است به دلیل عدم اتصال سیستم به سرورهای لایسنس HWID با شکست مواجه شود. اسکریپت فعال‌سازی در این صورت به شما اطلاع خواهد داد.\nپیشنهاد می‌کنیم راهنمای زیر را فقط زمانی دنبال کنید که اسکریپت به شما بگوید.\n\n<hr/><br/>\n\n## بازنشانی شبکه\n\n::: tip نکته\n\n- در ویندوز 10/11، به تنظیمات بروید و بازنشانی شبکه را جستجو کنید، سپس این گزینه را اعمال کنید.\n- سیستم خود را مجدداً راه‌اندازی کنید و فعال‌سازی HWID را امتحان کنید.\n- اگر همان خطای اینترنت را نشان می‌دهد، گزینه زیر را دنبال کنید.\n\n:::\n\n## بازنشانی فایروال / پروکسی\n\n- Powershell را به عنوان مدیر باز کنید و دستورات زیر را وارد کنید:\n\n```shell\nSet-ItemProperty -Path \"HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\" -Name ProxyEnable -Type DWord -Value 0\nSet-ItemProperty -Path \"HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\" -Name ProxyServer -Type String -Value \"\"\n\n$filePath = \"$env:SystemRoot\\System32\\drivers\\etc\\hosts\"\nSet-Content -Path $filePath -Value (Get-Content $filePath | ForEach-Object { $_ -replace '.*licensing.mp.microsoft.com.*', ''}) -force\nSet-Content -Path $filePath -Value (Get-Content $filePath | ForEach-Object { $_ -replace '.*purchase.mp.microsoft.com.*', ''}) -force\nSet-Content -Path $filePath -Value (Get-Content $filePath | ForEach-Object { $_ -replace '.*login.live.com.*', ''}) -force\n\nnetsh int ip reset\nnetsh winsock reset\nnetsh advfirewall reset\nnetsh winhttp reset proxy\nbitsadmin /util /setieproxy localsystem NO_PROXY RESET\nipconfig /flushdns\n```\n\n- سیستم خود را مجدداً راه‌اندازی کنید و فعال‌سازی HWID را امتحان کنید.\n- اگر همان خطای اینترنت را نشان می‌دهد، گزینه زیر را دنبال کنید.\n\n## VPN / اتصال اینترنت دیگر\n\n- VPN Cloudflare WARP را نصب کنید - https://1.1.1.1/\n  VPN را وصل کنید و فعال‌سازی HWID را امتحان کنید.\n\n- اگر کار نمی‌کند، از یک اتصال اینترنت دیگر استفاده کنید یا از اینترنت تلفن همراه خود از طریق اتصال USB استفاده کنید.\n\n\n::: danger عیب یابی\n\n- اگر در این مورد به کمکی نیاز دارید، ابتدا بخش [**سوالات متداول**](./faq) را مرور کنید — به احتمال زیاد پاسخ شما در آنجا خواهد بود.\n\n- اگر فعال‌سازی HWID هنوز کار نمی‌کند — می‌توانید [**با ما تماس بگیرید**](./troubleshoot).\n\n:::\n"
  },
  {
    "path": "docs/fa/wa/manual_hwid_activation.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'فعال‌سازی دستی HWID'\ndescription: 'آموزش فعال‌سازی HWID ویندوز 10/11 بدون نیاز به اسکریپت، ویژه کسانی که ترجیح می‌دهند مراحل را خودشان انجام دهند.'\ndate: 2024-02-11\neditLink: true\n---\n\n# فعال‌سازی دستی HWID ویندوز 10/11\n\nاگر دوست ندارید از ابزار یا اسکریپت آماده برای فعال‌سازی ویندوز استفاده کنید، این راهنما مخصوص شماست. مراحل فعال‌سازی `HWID` را می‌توانید به‌سادگی و به‌صورت دستی انجام دهید.\n\n::: info پشتیبانی\n\nفعال‌سازی HWID فقط روی ویندوز ۱۰ یا ۱۱ پشتیبانی می‌شود.\n\n:::\n\n## مراحل فعال‌سازی دستی\n\n> قبل از انجام هرکاری از **اتصال اینترنت** سیستم خود مطمعن شوید.\n\n### 1. نسخه ویندوز خود را پیدا کنید\n\n::: tip تشخیص نسخه ویندوز شما\n\n::: details برای مشاهده روش‌های مختلف کلیک کنید\n\n### روش الف: استفاده از میانبر کیبورد < Badge type=\"danger\" text=\"پیشنهادی\" /> \n`Win (⊞) + R`\nکلیدهای `Win (⊞) + Pause/Break` را همزمان فشار دهید. این کار بخش **About** را در **Settings** مستقیماً باز می‌کند و شما نسخه ویندوز خود را در زیر **Windows specifications** خواهید دید.\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/647ef16b-9208-4ff3-a94b-825ffa99721f\" alt=\"about-system\" width=\"540px\" />\n</p>\n\n### روش ب: استفاده از تنظیمات سیستم\n\n1. روی دکمه `🪟 Start` و سپس روی `⚙️ Settings` کلیک کنید\n2. روی `💻 System` کلیک کنید\n3. به پایین اسکرول کرده و روی `ℹ️ About` کلیک کنید\n4. در زیر `Windows specifications`، نسخه ویندوز شما را خواهید دید\n\n### روش ج: استفاده از Run Box\n\n1. کلیدهای `Win + R` را فشار دهید تا Run dialog box باز شود\n2. یکی از موارد `ms-settings:about` یا `winver` یا `msinfo32` را تایپ کنید و Enter را فشار دهید\n3. پنجره‌ای ظاهر می‌شود که نسخه ویندوز، Build number و سایر جزئیات را نشان می‌دهد\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/f764797a-e07f-4c58-b932-bfe7b359a7bd\" alt=\"winver-command\" width=\"540px\" />\n</p>\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/4c7edc15-1c02-4d7b-ab5f-df70eaff8ad7\" alt=\"winver-response\" width=\"540px\" />\n</p>\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/a6360712-0ad0-4be4-b0a4-01171d293d83\" alt=\"msinfo32-command\" width=\"540px\" />\n</p>\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/8592c1bd-4a1a-47c1-bd21-0eb17049db31\" alt=\"msinfo32-response\" width=\"540px\" />\n</p>\n\n\n### روش د: استفاده از Command Prompt یا PowerShell [^1]\n\n1. ابتدا Command Prompt یا PowerShell را اجرا کنید\n2. یکی از عبارات `systeminfo`  یا  `systeminfo | findstr /B /C:\"OS Name\" /B /C:\"OS Version\"` را تایپ کرده و Enter را فشار دهید\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/16e8f49a-0cec-4836-b841-0cbd9344fbb1\" alt=\"findstr command\" width=\"540px\" />\n</p>\n\nهمچنین می‌توانید `slmgr /dlv` را تایپ کنید که اطلاعات مفصل لایسنس را نمایش می‌دهد:\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/86925e56-7cac-4b53-8ccf-6addcd799ece\" alt=\"slmgr-command\" width=\"540px\" />\n</p>\n\n:::\n\n### 2. دانلود فایل تیکت \nاز [جدول زیر](#جدول-کلید-و-فایل-تیکت-نسخه‌-های-ویندوز) مطابق با نسخه ویندوز خود، فایل تیکت (Ticket) را دانلود کنید.\n\n### 3. کپی فایل تیکت\nفایل دانلود شده را به آدرس زیر منتقل کنید:  \n`C:\\ProgramData\\Microsoft\\Windows\\ClipSVC\\GenuineTicket`\n\n::: danger نکته مهم\n\nپوشه `ProgramData` پنهان است؛ آدرس را مستقیماً در نوار آدرس اکسپلورر وارد کنید.\n\n:::\n\n### 4. باز کردن تنظیمات بخش فعال‌سازی  \nوارد Settings و سپس وارد بخش Activation شده و روی گزینه `Change product key` کلیک کنید.\n\n### 5. وارد کردن کلید محصول  \nکلید مربوط به نسخه ویندوز را از جدول زیر کپی و در کادر مربوطه وارد کنید.\n\n### 6. اتمام فعال‌سازی  \n  چند لحظه صبر کنید تا ویندوز به صورت خودکار فعال شود.\n\n### 7. بررسی وضعیت فعال‌شدن ویندوز\nبرای بررسی وضعیت فعال‌سازی `ویندوز ۱۰`، از این طریق اقدام کنید:  \nSettings → Update & Security → Activation. [^2]\n\n\nبرای بررسی وضعیت فعال‌سازی `ویندوز ۱۱`، بر روی دکمه `Start` کلیک کرده و سپس از این طریق اقدام کنید: \n\nSettings → System → Activation. [^3]\n\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/da52f1bb-79c9-45db-bade-a0f56cd0a739\" alt=\"activated\" width=\"540px\" />\n</p>\n\n::: info رفع خطا\n\nاگر هنگام وارد کردن کلید خطای `0x803fa067` دریافت کردید، اینترنت را قطع کنید و مجدداً کلید را وارد نمایید.  \nپس از تایید، دوباره به اینترنت وصل شوید تا فعال‌سازی کامل شود.\n\n:::\n\n<br/>\n\n## جدول کلید و فایل تیکت نسخه‌ های ویندوز\n\n| نسخه ویندوز                           | کلید فعال‌سازی                | دانلود فایل تیکت                                                                                                              |\n| ------------------------------------- | ----------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |\n| Education                             | YNMGQ-8RYV3-4PGQ3-C8XTP-7CFBY | [دانلود](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Education.xml)                             |\n| Education N                           | 84NGF-MHBT6-FXBX8-QWJK7-DRR8H | [دانلود](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Education.N.xml)                           |\n| Enterprise                            | XGVPP-NMH47-7TTHJ-W3FW7-8HV2C | [دانلود](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Enterprise.xml)                            |\n| Enterprise N                          | 3V6Q6-NQXCX-V8YXR-9QCYV-QPFCT | [دانلود](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Enterprise.N.xml)                          |\n| Enterprise LTSB 2015                  | FWN7H-PF93Q-4GGP8-M8RF3-MDWWW | [دانلود](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Enterprise.LTSB.2015.xml)                  |\n| Enterprise LTSB 2016                  | NK96Y-D9CD8-W44CQ-R8YTK-DYJWX | [دانلود](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Enterprise.LTSB.2016.xml)                  |\n| Enterprise LTSC 2019                  | 43TBQ-NH92J-XKTM7-KT3KK-P39PB | [دانلود](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Enterprise.LTSC.2019.xml)                  |\n| Enterprise N LTSB 2015                | NTX6B-BRYC2-K6786-F6MVQ-M7V2X | [دانلود](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Enterprise.N.LTSB.2015.xml)                |\n| Enterprise N LTSB 2016                | 2DBW3-N2PJG-MVHW3-G7TDK-9HKR4 | [دانلود](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Enterprise.N.LTSB.2016.xml)                |\n| Home                                  | YTMG3-N6DKC-DKB77-7M9GH-8HVX7 | [دانلود](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Home.xml)                                  |\n| Home N                                | 4CPRK-NM3K3-X6XXQ-RXX86-WXCHW | [دانلود](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Home.N.xml)                                |\n| Home China                            | N2434-X9D7W-8PF6X-8DV9T-8TYMD | [دانلود](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Home.China.xml)                            |\n| Home Single Language                  | BT79Q-G7N6G-PGBYW-4YWX6-6F4BT | [دانلود](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Home.Single.Language.xml)                  |\n| IoT Enterprise                        | XQQYW-NFFMW-XJPBH-K8732-CKFFD | [دانلود](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/IoT.Enterprise.xml)                        |\n| IoT Enterprise Subscription           | P8Q7T-WNK7X-PMFXY-VXHBG-RRK69 | [دانلود](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/IoT.Enterprise.Subscription.xml)           |\n| IoT Enterprise LTSC 2021              | QPM6N-7J2WJ-P88HH-P3YRH-YY74H | [دانلود](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/IoT.Enterprise.LTSC.2021.xml)              |\n| IoT Enterprise LTSC 2024              | CGK42-GYN6Y-VD22B-BX98W-J8JXD | [دانلود](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/IoT.Enterprise.LTSC.2024.xml)              |\n| IoT Enterprise LTSC Subscription 2024 | N979K-XWD77-YW3GB-HBGH6-D32MH | [دانلود](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/IoT.Enterprise.LTSC.Subscription.2024.xml) |\n| Pro                                   | VK7JG-NPHTM-C97JM-9MPGT-3V66T | [دانلود](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Pro.xml)                                   |\n| Pro N                                 | 2B87N-8KFHP-DKV6R-Y2C8J-PKCKT | [دانلود](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Pro.N.xml)                                 |\n| Pro Education                         | 8PTT6-RNW4C-6V7J2-C2D3X-MHBPB | [دانلود](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Pro.Education.xml)                         |\n| Pro Education N                       | GJTYN-HDMQY-FRR76-HVGC7-QPF8P | [دانلود](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Pro.Education.N.xml)                       |\n| Pro for Workstations                  | DXG7C-N36C4-C4HTG-X4T3X-2YV77 | [دانلود](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Pro.for.Workstations.xml)                  |\n| Pro N for Workstations                | WYPNQ-8C467-V2W6J-TX4WX-WT2RQ | [دانلود](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Pro.N.for.Workstations.xml)                |\n| S                                     | V3WVW-N2PV2-CGWC3-34QGF-VMJ2C | [دانلود](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Cloud.S.xml)                               |\n| S N                                   | NH9J3-68WK7-6FB93-4K3DF-DJ4F6 | [دانلود](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Cloud.S.N.xml)                             |\n| SE                                    | KY7PN-VR6RX-83W6Y-6DDYQ-T6R4W | [دانلود](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/CloudEdition.SE.xml)                       |\n| SE N                                  | K9VKN-3BGWV-Y624W-MCRMQ-BHDCD | [دانلود](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/CloudEdition.SE.N.xml)                     |\n| Team                                  | XKCNC-J26Q9-KFHD2-FKTHY-KD72Y | [دانلود](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Team.xml)                                  |\n\n<br/>\n\n::: tip Tip\n\n- اگر به دنبال روش آسان‌تر هستید، می‌توانید از [ابزار فعال‌سازی خودکار](./index) استفاده کنید.\n\n- اگر سوالی دارید، ابتدا صفحه [**سوالات پرتکرار**](./faq) را مرور کنید — به احتمال زیاد جواب‌تان اینجاست.\n- اگر همچنان مشکل پابرجا بود — با ما [**در تماس**](./troubleshoot) باشید.\n\n:::\n\n\n[^1]: ساده‌ترین روش دیگر برای اجرای **PowerShell** از طریق **Power User Menu** می‌باشد. <br/> - 1. روی آیکون `Windows Start` در `Taskbar` کلیک راست کنید تا منوی حاوی میانبرهای ابزارهای پرکاربرد باز شود، همچنین می‌توانید این منو را با `Win (⊞) + x` باز کنید.<br/> - 2. سپس بر روی گزینه **Windows Terminal (Admin)** در ویندوز 11 و یا **Windows PowerShell (Admin)** در ویندوز 10 کلیک کنید.\n\n[^2]: برای بررسی وضعیت فعال‌سازی ویندوز 10، به Settings → Update & Security → Activation بروید. وضعیت فعال‌سازی شما در آنجا فهرست شده است. <br/> اگر ویندوز فعال باشد، باید \"Activated\" را با علامت تیک سبز ببینید.\n\n[^3]: برای بررسی وضعیت فعال‌سازی ویندوز 11، به Settings → System → Activation را انتخاب کنید. <br/> وضعیت فعال‌سازی نمایش داده می‌شود و نشان می‌دهد که آیا ویندوز فعال است یا خیر، همراه با جزئیات روش فعال‌سازی و هر حساب مایکروسافت پیوند شده.\n"
  },
  {
    "path": "docs/fa/wa/manual_kms38_activation.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'فعال‌سازی دستی KMS38'\ndescription: 'این صفحه برای کاربرانی در نظر گرفته شده است که به هر دلیلی نمی‌خواهند از اسکریپت استفاده کنند و ترجیح می‌دهند فرآیند فعال‌سازی KMS38 را خودشان انجام دهند.'\ndate: 2023-03-07\neditLink: true\n---\n\n\n# KMS38\n\nاین صفحه برای کاربرانی در نظر گرفته شده است که به هر دلیلی نمی‌خواهند از اسکریپت استفاده کنند و ترجیح می‌دهند فرآیند فعال‌سازی KMS38 را خودشان انجام دهند. اگر به جای آن می‌خواهید از ابزاری برای این کار استفاده کنید، لطفاً [اینجا](./index#مرحله-۲) را بررسی کنید.\n\n::: info نکته\n\nفعال‌سازی KMS38 فقط در نسخه‌های کلاینت و سرور ویندوز 10/11 پشتیبانی می‌شود.\n\n:::\n\n## فعال‌سازی دستی ویندوز\n\nبرای فعال‌سازی دستی ویندوز، این مراحل را دنبال کنید:\n\n- **مرحله 1:** Windows Powershell را به عنوان مدیر باز کنید و دستورات زیر را وارد کنید.\n::: tip برای اجرای Powershell\n\n::: details برای مشاهده جزئیات اینجا کلیک کنید\n\n### گزینه الف: استفاده از نوار جستجو <Badge type=\"danger\" text=\"توصیه می‌شود\" />\n1. روی دکمه «Start» ویندوز یا نماد «Search» در نوار وظیفه کلیک کنید.\n2. `powershell` را تایپ کنید.\n3. `Run as administrator` را انتخاب کنید. <br/>\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/9b27cd4b-21d8-4970-98bb-3c97010e09bf\" alt=\"open-powershell-as-admin\" width=\"540px\" />\n</p>\n\n### گزینه ب: استفاده از کادر Run\n\n1. کادر محاوره‌ای Run را باز کنید: کلیدهای `Win (⊞) + R` را همزمان فشار دهید.\n2. `powershell` را تایپ کنید.\n3. برای اجرای به عنوان مدیر، `Ctrl + Shift + Enter` را فشار دهید.\n4. اگر توسط کنترل حساب کاربری درخواست شد، روی `Yes` کلیک کنید. <br/>\n\n### گزینه ج: استفاده از منوی Power User\n\n1. روی «Start menu» راست کلیک کنید (یا `Win (⊞) + X` را فشار دهید).\n2. «Windows Terminal (Admin)» را در ویندوز 11 یا «Windows PowerShell (Admin)» را در ویندوز 10 انتخاب کنید.\n\nیا می‌توانید از [این لینک][1] برای دیدن 10 روش برای اجرای **PowerShell** و [این لینک][2] برای اجرای CMD در ویندوز خود بازدید کنید.\n\n:::\n\n- **مرحله 2:** کلید عمومی را که با نسخه ویندوز شما مطابقت دارد نصب کنید:\n\n``` reg\nslmgr /ipk <key>\n```\n\n*(برای کلید مناسب به جدول زیر مراجعه کنید.)*\n\n- **مرحله 3:** [فایل تیکت KMS38][3] را دانلود کنید.\n- **مرحله 4:** فایل تیکت دانلود شده را در ریشه درایو C: کپی کنید.\n- **مرحله 5:** با اجرای دستورات زیر، تیکت را به یک لایسنس منتقل کرده و ویندوز را فعال کنید:\n\n```reg\nclipup -v -o -altto C:\\\n```\n\n- **در نهایت** پس از چند ثانیه انتظار، ویندوز باید فعال شود.\n\n\n::: tip نکات\n\n- برای نسخه‌های Windows Server Cor/Acor، سیستم فایل `clipup.exe` را ندارد.\n    برای فعال‌سازی آن با استفاده از KMS38، فایل گمشده `ClipUp.exe` را از [این لینک][4] دانلود کنید.\n    `File: ClipUp.exe`\n    `SHA-256: 0d6e9f6bbd0321eda149658d96040cb4f79e0bd93ba60061f25b28fecbf4d4ef`\n  این فایل به صورت دیجیتالی امضا شده و قابل تأیید است. همچنین می‌توانید این فایل را از [ISO رسمی Windows Server 2016 x64 RTM][5] دریافت کنید.\n  فایل `ClipUp.exe` را در پوشه `C:\\Windows\\System32` قرار دهید و فرآیند فعال‌سازی KMS38 را انجام دهید. پس از اتمام فعال‌سازی، می‌توانید فایل را حذف کنید.\n\n:::\n\n<br/>\n\n### ویندوز 10 / 11\n| نام محصول                                          | کلید لایسنس حجمی عمومی    |\n|--------------------------------------------------------|-------------------------------|\n| Education                                              | NW6C2-QMPVW-D7KKK-3GKT6-VCFB2 |\n| Education N                                            | 2WH4N-8QGBV-H22JP-CT43Q-MDWWJ |\n| Enterprise                                             | NPPR9-FWDCX-D2C8J-H872K-2YT43 |\n| Enterprise N                                           | DPH2V-TTNVB-4X9Q3-TJR4H-KHJW4 |\n| Enterprise G                                           | YYVX9-NTFWV-6MDM3-9PT4T-4M68B |\n| Enterprise G N                                         | 44RPN-FTY23-9VTTB-MP9BX-T84FV |\n| Enterprise LTSB 2016                                   | DCPHK-NFMTC-H88MJ-PFHPY-QJ4BJ |\n| Enterprise LTSC 2019                                   | M7XTQ-FN8P6-TTKYV-9D4CC-J462D |\n| Enterprise LTSC 2021                                   | M7XTQ-FN8P6-TTKYV-9D4CC-J462D |\n| Enterprise LTSC 2024                                   | M7XTQ-FN8P6-TTKYV-9D4CC-J462D |\n| Enterprise N LTSB 2016                                 | QFFDN-GRT3P-VKWWX-X7T3R-8B639 |\n| Enterprise N LTSC 2019                                 | 92NFX-8DJQP-P6BBQ-THF9C-7CG2H |\n| Enterprise N LTSC 2021                                 | 92NFX-8DJQP-P6BBQ-THF9C-7CG2H |\n| Enterprise N LTSC 2024                                 | 92NFX-8DJQP-P6BBQ-THF9C-7CG2H |\n| IoT Enterprise LTSC 2021 <br /> (19044.2788 و بالاتر) | KBN8V-HFGQ4-MGXVD-347P6-PDQGT |\n| IoT Enterprise LTSC 2024                               | KBN8V-HFGQ4-MGXVD-347P6-PDQGT |\n| Home                                                   | TX9XD-98N7V-6WMQ6-BX7FG-H8Q99 |\n| Home N                                                 | 3KHY7-WNT83-DGQKR-F7HPR-844BM |\n| Home China                                             | PVMJN-6DFY6-9CCP6-7BKTT-D3WVR |\n| Home Single Language                                   | 7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH |\n| Lean                                                   | NBTWJ-3DR69-3C4V8-C26MC-GQ9M6 |\n| Enterprise multi-session <br /> (17763 و بالاتر)      | CPWHC-NT2C7-VYW78-DHDB2-PG3GK |\n| Enterprise multi-session <br /> (17134 و قبل)     | 7NBT4-WGBQX-MP4H7-QXFF8-YP3KX |\n| Pro                                                    | W269N-WFGWX-YVC9B-4J6C9-T83GX |\n| Pro N                                                  | MH37W-N47XK-V7XM9-C7227-GCQG9 |\n| Pro Education                                          | 6TP4R-GNPTD-KYYHQ-7B7DP-J447Y |\n| Pro Education N                                        | YVWGF-BXNMC-HTQYQ-CPQ99-66QFC |\n| Pro for Workstations                                   | NRG8B-VKK3Q-CXVCJ-9G2XF-6Q84J |\n| Pro N for Workstations                                 | 9FNHH-K3HBT-3W4TD-6383H-6XYWF |\n| SE                                                     | 37D7F-N49CB-WQR8W-TBJ73-FM8RX |\n| SE N                                                   | 6XN7V-PCBDC-BDBRH-8DQY7-G6R44 |\n\n<br/>\n\n### ویندوز سرور 2025 (LTSC)\n| نام محصول                        | کلید لایسنس حجمی عمومی    |\n|--------------------------------------|-------------------------------|\n| Windows Server 2025 Standard         | TVRH6-WHNXV-R9WG3-9XRFY-MY832 |\n| Windows Server 2025 Datacenter       | D764K-2NDRG-47T6Q-P8T8W-YP6DF |\n| Windows Server 2025 Azure Core       | FCNV3-279Q9-BQB46-FTKXX-9HPRH |\n| Windows Server 2025 Azure Datacenter | XGN3F-F394H-FD2MY-PP6FD-8MCRC |\n\n<br/>\n\n### ویندوز سرور 2022 (LTSC)\n| نام محصول                        | کلید لایسنس حجمی عمومی    |\n|--------------------------------------|-------------------------------|\n| Windows Server 2022 Datacenter       | WX4NM-KYWYW-QJJR4-XV3QB-6VM33 |\n| Windows Server 2022 Standard         | VDYBN-27WPP-V4HQT-9VMD4-VMK7H |\n| Windows Server 2022 Azure Core       | 6N379-GGTMK-23C6M-XVVTC-CKFRQ |\n| Windows Server 2022 Azure Datacenter | NTBV8-9K7Q8-V27C6-M2BTV-KHMXV |\n\n<br/>\n\n### ویندوز سرور 2019 (LTSC)\n| نام محصول                  | کلید لایسنس حجمی عمومی    |\n|--------------------------------|-------------------------------|\n| Windows Server 2019 Datacenter | WMDGN-G9PQG-XVVXX-R3X43-63DFG |\n| Windows Server 2019 Standard   | N69G4-B89J2-4G8F4-WWYCC-J464C |\n| Windows Server 2019 Essentials | WVDHN-86M7X-466P6-VHXV7-YY726 |\n| Windows Server 2019 Azure Core | FDNH6-VW9RW-BXPJ7-4XTYG-239TB |\n| Windows Server 2019 ARM64      | GRFBW-QNDC4-6QBHG-CCK3B-2PR88 |\n\n<br/>\n\n### ویندوز سرور 2016 (LTSC)\n| نام محصول                     | کلید لایسنس حجمی عمومی    |\n|-----------------------------------|-------------------------------|\n| Windows Server 2016 ARM64         | K9FYF-G6NCK-73M32-XMVPY-F9DRR |\n| Windows Server 2016 Datacenter    | CB7KF-BWN84-R7R2Y-793K2-8XDDG |\n| Windows Server 2016 Standard      | WC2BQ-8NRM3-FDDYY-2BFGV-KHKQY |\n| Windows Server 2016 Essentials    | JCKRF-N37P4-C2D82-9YXRT-4M63B |\n| Windows Server 2016 Cloud Storage | QN4C6-GBJD2-FB422-GHWJK-GJG2R |\n| Windows Server 2016 Azure Core    | VP34G-4NPPG-79JTQ-864T4-R3MQX |\n\n<br/>\n\n### ویندوز سرور 23H2 (کانال سالانه)\n| نام محصول             | کلید لایسنس حجمی عمومی    |\n|---------------------------|-------------------------------|\n| Windows Server Datacenter | WX4NM-KYWYW-QJJR4-XV3QB-6VM33 |\n\n<br/>\n\n### ویندوز سرور 20H2, 2004, 1909, 1903, and 1809 (کانال نیم‌ساله)\n| نام محصول             | کلید لایسنس حجمی عمومی    |\n|---------------------------|-------------------------------|\n| Windows Server Datacenter | 6NMRW-2C8FM-D24W7-TQWMY-CWH2D |\n| Windows Server Standard   | N2KJX-J94YW-TQVFB-DG9YT-724CC |\n\n<br/>\n\n### ویندوز سرور 1803 (کانال نیم‌ساله)\n| نام محصول             | کلید لایسنس حجمی عمومی    |\n|---------------------------|-------------------------------|\n| Windows Server Datacenter | 2HXDN-KRXHB-GPYC7-YCKFJ-7FVDG |\n| Windows Server Standard   | PTXN8-JFHJM-4WC78-MPCBR-9W4KR |\n\n<br/>\n\n### ویندوز سرور 1709 (کانال نیم‌ساله)\n| نام محصول             | کلید لایسنس حجمی عمومی    |\n|---------------------------|-------------------------------|\n| Windows Server Datacenter | 6Y6KB-N82V8-D8CQV-23MJW-BWTG6 |\n| Windows Server Standard   | DPCNP-XQFKJ-BJF7R-FRC8D-GF6G4 |\n\n\n## عیب یابی\n\n::: danger عیب یابی\n\n- اگر در این مورد به کمکی نیاز دارید، ابتدا بخش [**سوالات متداول**](./faq) را مرور کنید — به احتمال زیاد پاسخ شما در آنجا خواهد بود.\n\n- اگر مشکل شما همچنان ادامه داشت — می‌توانید [**با ما تماس بگیرید**](./troubleshoot).\n\n:::\n\n\n[1]: https://www.minitool.com/news/open-windows-11-powershell.html\n[2]: https://www.minitool.com/news/open-command-prompt-windows-11.html\n[3]: https://github.com/massgravel/hwid-kms38-tickets/releases/download/2.0/KMS38.xml\n[4]: https://app.box.com/s/cwoxub9tqyowhnyva6ign6qnogb6vk0o\n[5]: https://download.microsoft.com/download/1/6/F/16FA20E6-4662-482A-920B-1A45CF5AAE3C/14393.0.160715-1616.RS1_RELEASE_SERVER_EVAL_X64FRE_EN-US.ISO\n"
  },
  {
    "path": "docs/fa/wa/manual_ohook_activation.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'فعالسازی دستی Ohook'\ndescription: 'این صفحه برای کاربرانی در نظر گرفته شده است که به هر دلیلی نمی‌خواهند از اسکریپت استفاده کنند و ترجیح می‌دهند خودشان فرآیند فعال‌سازی Ohook را انجام دهند.'\ndate: 2024-02-11\neditLink: true\n---\n\n# Ohook\n\n> این صفحه برای کاربرانی در نظر گرفته شده است که به هر دلیلی نمی‌خواهند از اسکریپت استفاده کنند و ترجیح می‌دهند خودشان فرآیند فعال‌سازی Ohook را انجام دهند. اگر مایل به استفاده از ابزاری برای این کار هستید، لطفاً [اینجا](./index) را بررسی کنید. \n\n::: tip Tip\n\nمراحل زیر فقط برای نسخه‌های ۶۴ بیتی C2R نسخه ۱۶.۰ (۲۰۱۶، ۲۰۱۹، ۲۰۲۱ و ۳۶۵) آفیس که روی دستگاه ویندوز ۸+ نسخه ۶۴ بیتی اجرا می‌شوند، اعمال می‌شود.\nبرای ورژن‌های قدیمی‌تر لطفا [این پروسه](./index#مرحله-۲) را طی کنید.\n\n:::\n\n<br/>\n\n## فعال‌سازی دستی آفیس\n\nبرای فعال کردن دستی آفیس، مراحل زیر را دنبال کنید:\n\n- Download the Ohook sppc.dll files from [here][1] or compile the sppc.dll files yourself using [this guide](./ohook#سفارشی).\n- یک پوشه جدید به نام `ohook` در ریشه درایو C: خود ایجاد کنید و فایل زیپ را در آن استخراج کنید. مسیر پوشه باید `C:\\ohook` باشد.\n- خط فرمان را به عنوان مدیر سیستم باز کنید و دستور زیر را برای ایجاد یک پیوند نمادین از sppc.dll سیستم به عنوان sppcs.dll در فهرست سیستم Office C2R وارد کنید:\n\n```reg\nmklink \"%ProgramFiles%\\Microsoft Office\\root\\vfs\\System\\sppcs.dll\" \"%windir%\\System32\\sppc.dll\"\n```\n\n- دستورات زیر را برای کپی کردن کتابخانه قلاب `sppc64.dll` در دایرکتوری سیستم `Office C2R` وارد کنید:\n\n```reg\ncd /d C:\\ohook\n```\n\n\n```reg\ncopy /y sppc64.dll \"%ProgramFiles%\\Microsoft Office\\root\\vfs\\System\\sppc.dll\"\n```\n\n- برخی از نسخه‌های آفیس ۳۶۵ وضعیت مجوز را بررسی می‌کنند و بنر \"مشکلی در بررسی وضعیت مجوز این دستگاه وجود دارد\" را نمایش می‌دهند. برای جلوگیری از این، دستور زیر را وارد کنید:\n\n```reg\nreg add HKCU\\Software\\Microsoft\\Office\\16.0\\Common\\Licensing\\Resiliency /v \"TimeOfLastHeartbeatFailure\" /t REG_SZ /d \"2040-01-01T00:00:00Z\" /f\n```\n\n- کلید عمومی که با نسخه و ویرایش آفیس شما مطابقت دارد را نصب کنید:  \n\n```reg\nslmgr /ipk <key>\n```\n\n*(برای کلید مناسب به جدول زیر مراجعه کنید.)*\n- آفیس باید الان فعال شود.\n\n<br/>\n\n### Office 365\n\n| Office Product         | Generated Generic Key         |\n|------------------------|-------------------------------|\n| O365AppsBasicRetail    | 3HYJN-9KG99-F8VG9-V3DT8-JFMHV |\n| O365BusinessRetail     | Y9NF9-M2QWD-FF6RJ-QJW36-RRF2T |\n| O365EduCloudRetail     | W62NQ-267QR-RTF74-PF2MH-JQMTH |\n| O365HomePremRetail     | 3NMDC-G7C3W-68RGP-CB4MH-4CXCH |\n| O365ProPlusRetail      | H8DN8-Y2YP3-CR9JT-DHDR9-C7GP3 |\n| O365SmallBusPremRetail | 2QCNB-RMDKJ-GC8PB-7QGQV-7QTQJ |\n\n<br/>\n\n### Office 2016\n\n| Office Product              | Generated Generic Key         |\n|-----------------------------|-------------------------------|\n| AccessRetail                | WHK4N-YQGHB-XWXCC-G3HYC-6JF94 |\n| AccessRuntimeRetail         | RNB7V-P48F4-3FYY6-2P3R3-63BQV |\n| AccessVolume                | JJ2Y4-N8KM3-Y8KY3-Y22FR-R3KVK |\n| ExcelRetail                 | RKJBN-VWTM2-BDKXX-RKQFD-JTYQ2 |\n| ExcelVolume                 | FVGNR-X82B2-6PRJM-YT4W7-8HV36 |\n| HomeBusinessPipcRetail      | 2WQNF-GBK4B-XVG6F-BBMX7-M4F2Y |\n| HomeBusinessRetail          | HM6FM-NVF78-KV9PM-F36B8-D9MXD |\n| HomeStudentARMRetail        | PBQPJ-NC22K-69MXD-KWMRF-WFG77 |\n| HomeStudentPlusARMRetail    | 6F2NY-7RTX4-MD9KM-TJ43H-94TBT |\n| HomeStudentRetail           | PNPRV-F2627-Q8JVC-3DGR9-WTYRK |\n| HomeStudentVNextRetail      | YWD4R-CNKVT-VG8VJ-9333B-RC3B8 |\n| MondoRetail                 | VNWHF-FKFBW-Q2RGD-HYHWF-R3HH2 |\n| MondoVolume                 | FMTQQ-84NR8-2744R-MXF4P-PGYR3 |\n| OneNoteFreeRetail           | XYNTG-R96FY-369HX-YFPHY-F9CPM |\n| OneNoteRetail               | FXF6F-CNC26-W643C-K6KB7-6XXW3 |\n| OneNoteVolume               | 9TYVN-D76HK-BVMWT-Y7G88-9TPPV |\n| OutlookRetail               | 7N4KG-P2QDH-86V9C-DJFVF-369W9 |\n| OutlookVolume               | 7QPNR-3HFDG-YP6T9-JQCKQ-KKXXC |\n| PersonalPipcRetail          | 9CYB3-NFMRW-YFDG6-XC7TF-BY36J |\n| PersonalRetail              | FT7VF-XBN92-HPDJV-RHMBY-6VKBF |\n| PowerPointRetail            | N7GCB-WQT7K-QRHWG-TTPYD-7T9XF |\n| PowerPointVolume            | X3RT9-NDG64-VMK2M-KQ6XY-DPFGV |\n| ProPlusRetail               | GM43N-F742Q-6JDDK-M622J-J8GDV |\n| ProPlusVolume               | FNVK8-8DVCJ-F7X3J-KGVQB-RC2QY |\n| ProfessionalPipcRetail      | CF9DD-6CNW2-BJWJQ-CVCFX-Y7TXD |\n| ProfessionalRetail          | NXFTK-YD9Y7-X9MMJ-9BWM6-J2QVH |\n| ProjectProRetail            | WPY8N-PDPY4-FC7TF-KMP7P-KWYFY |\n| ProjectProVolume            | PKC3N-8F99H-28MVY-J4RYY-CWGDH |\n| ProjectProXVolume           | JBNPH-YF2F7-Q9Y29-86CTG-C9YGV |\n| ProjectStdRetail            | NTHQT-VKK6W-BRB87-HV346-Y96W8 |\n| ProjectStdVolume            | 4TGWV-6N9P6-G2H8Y-2HWKB-B4G93 |\n| ProjectStdXVolume           | N3W2Q-69MBT-27RD9-BH8V3-JT2C8 |\n| PublisherRetail             | WKWND-X6G9G-CDMTV-CPGYJ-6MVBF |\n| PublisherVolume             | 9QVN2-PXXRX-8V4W8-Q7926-TJGD8 |\n| SkypeServiceBypassRetail    | 6MDN4-WF3FV-4WH3Q-W699V-RGCMY |\n| SkypeforBusinessEntryRetail | 4N4D8-3J7Y3-YYW7C-73HD2-V8RHY |\n| SkypeforBusinessRetail      | PBJ79-77NY4-VRGFG-Y8WYC-CKCRC |\n| SkypeforBusinessVolume      | DMTCJ-KNRKR-JV8TQ-V2CR2-VFTFH |\n| StandardRetail              | 2FPWN-4H6CM-KD8QQ-8HCHC-P9XYW |\n| StandardVolume              | WHGMQ-JNMGT-MDQVF-WDR69-KQBWC |\n| VisioProRetail              | NVK2G-2MY4G-7JX2P-7D6F2-VFQBR |\n| VisioProVolume              | NRKT9-C8GP2-XDYXQ-YW72K-MG92B |\n| VisioProXVolume             | G98Q2-B6N77-CFH9J-K824G-XQCC4 |\n| VisioStdRetail              | NCRB7-VP48F-43FYY-62P3R-367WK |\n| VisioStdVolume              | XNCJB-YY883-JRW64-DPXMX-JXCR6 |\n| VisioStdXVolume             | B2HTN-JPH8C-J6Y6V-HCHKB-43MGT |\n| WordRetail                  | P8K82-NQ7GG-JKY8T-6VHVY-88GGD |\n| WordVolume                  | YHMWC-YN6V9-WJPXD-3WQKP-TMVCV |\n\n<br/>\n\n### Office 2019\n\n| Office Product                  | Generated Generic Key         |\n|---------------------------------|-------------------------------|\n| Access2019Retail                | WRYJ6-G3NP7-7VH94-8X7KP-JB7HC |\n| Access2019Volume                | 6FWHX-NKYXK-BW34Q-7XC9F-Q9PX7 |\n| AccessRuntime2019Retail         | FGQNJ-JWJCG-7Q8MG-RMRGJ-9TQVF |\n| Excel2019Retail                 | KBPNW-64CMM-8KWCB-23F44-8B7HM |\n| Excel2019Volume                 | 8NT4X-GQMCK-62X4P-TW6QP-YKPYF |\n| HomeBusiness2019Retail          | QBN2Y-9B284-9KW78-K48PB-R62YT |\n| HomeStudentARM2019Retail        | DJTNY-4HDWM-TDWB2-8PWC2-W2RRT |\n| HomeStudentPlusARM2019Retail    | NM8WT-CFHB2-QBGXK-J8W6J-GVK8F |\n| HomeStudent2019Retail           | XNWPM-32XQC-Y7QJC-QGGBV-YY7JK |\n| Outlook2019Retail               | WR43D-NMWQQ-HCQR2-VKXDR-37B7H |\n| Outlook2019Volume               | RN3QB-GT6D7-YB3VH-F3RPB-3GQYB |\n| Personal2019Retail              | NMBY8-V3CV7-BX6K6-2922Y-43M7T |\n| PowerPoint2019Retail            | HN27K-JHJ8R-7T7KK-WJYC3-FM7MM |\n| PowerPoint2019Volume            | 29GNM-VM33V-WR23K-HG2DT-KTQYR |\n| ProPlus2019Retail               | BN4XJ-R9DYY-96W48-YK8DM-MY7PY |\n| ProPlus2019Volume               | T8YBN-4YV3X-KK24Q-QXBD7-T3C63 |\n| Professional2019Retail          | 9NXDK-MRY98-2VJV8-GF73J-TQ9FK |\n| ProjectPro2019Retail            | JDTNC-PP77T-T9H2W-G4J2J-VH8JK |\n| ProjectPro2019Volume            | TBXBD-FNWKJ-WRHBD-KBPHH-XD9F2 |\n| ProjectStd2019Retail            | R3JNT-8PBDP-MTWCK-VD2V8-HMKF9 |\n| ProjectStd2019Volume            | RBRFX-MQNDJ-4XFHF-7QVDR-JHXGC |\n| Publisher2019Retail             | 4QC36-NW3YH-D2Y9D-RJPC7-VVB9D |\n| Publisher2019Volume             | K8F2D-NBM32-BF26V-YCKFJ-29Y9W |\n| SkypeforBusiness2019Retail      | JBDKF-6NCD6-49K3G-2TV79-BKP73 |\n| SkypeforBusiness2019Volume      | 9MNQ7-YPQ3B-6WJXM-G83T3-CBBDK |\n| SkypeforBusinessEntry2019Retail | N9722-BV9H6-WTJTT-FPB93-978MK |\n| Standard2019Retail              | NDGVM-MD27H-2XHVC-KDDX2-YKP74 |\n| Standard2019Volume              | NT3V6-XMBK7-Q66MF-VMKR4-FC33M |\n| VisioPro2019Retail              | 2NWVW-QGF4T-9CPMB-WYDQ9-7XP79 |\n| VisioPro2019Volume              | 33YF4-GNCQ3-J6GDM-J67P3-FM7QP |\n| VisioStd2019Retail              | 263WK-3N797-7R437-28BKG-3V8M8 |\n| VisioStd2019Volume              | BGNHX-QTPRJ-F9C9G-R8QQG-8T27F |\n| Word2019Retail                  | JXR8H-NJ3MK-X66W8-78CWD-QRVR2 |\n| Word2019Volume                  | 9F36R-PNVHH-3DXGQ-7CD2H-R9D3V |\n\n<br/>\n\n### Office 2021\n\n| Office Product             | Generated Generic Key         |\n|----------------------------|-------------------------------|\n| Access2021Retail           | P286B-N3XYP-36QRQ-29CMP-RVX9M |\n| AccessRuntime2021Retail    | MNX9D-PB834-VCGY2-K2RW2-2DP3D |\n| Access2021Volume           | JBH3N-P97FP-FRTJD-MGK2C-VFWG6 |\n| Excel2021Retail            | V6QFB-7N7G9-PF7W9-M8FQM-MY8G9 |\n| Excel2021Volume            | WNYR4-KMR9H-KVC8W-7HJ8B-K79DQ |\n| HomeBusiness2021Retail     | JM99N-4MMD8-DQCGJ-VMYFY-R63YK |\n| HomeStudent2021Retail      | N3CWD-38XVH-KRX2Y-YRP74-6RBB2 |\n| OneNoteFree2021Retail      | CNM3W-V94GB-QJQHH-BDQ3J-33Y8H |\n| OneNote2021Retail          | NB2TQ-3Y79C-77C6M-QMY7H-7QY8P |\n| OneNote2021Volume          | THNKC-KFR6C-Y86Q9-W8CB3-GF7PD |\n| Outlook2021Retail          | 4NCWR-9V92Y-34VB2-RPTHR-YTGR7 |\n| Outlook2021Volume          | JQ9MJ-QYN6B-67PX9-GYFVY-QJ6TB |\n| Personal2021Retail         | RRRYB-DN749-GCPW4-9H6VK-HCHPT |\n| PowerPoint2021Retail       | 3KXXQ-PVN2C-8P7YY-HCV88-GVM96 |\n| PowerPoint2021Volume       | 39G2N-3BD9C-C4XCM-BD4QG-FVYDY |\n| ProPlus2021Retail          | 8WXTP-MN628-KY44G-VJWCK-C7PCF |\n| ProPlus2021Volume          | RNHJY-DTFXW-HW9F8-4982D-MD2CW |\n| ProPlusSPLA2021Volume      | JRJNJ-33M7C-R73X3-P9XF7-R9F6M |\n| Professional2021Retail     | DJPHV-NCJV6-GWPT6-K26JX-C7PBG |\n| ProjectPro2021Retail       | QKHNX-M9GGH-T3QMW-YPK4Q-QRWMV |\n| ProjectPro2021Volume       | HVC34-CVNPG-RVCMT-X2JRF-CR7RK |\n| ProjectStd2021Retail       | 2B96V-X9NJY-WFBRC-Q8MP2-7CHRR |\n| ProjectStd2021Volume       | 3CNQX-T34TY-99RH4-C4YD2-KW6WH |\n| Publisher2021Retail        | CDNFG-77T8D-VKQJX-B7KT3-KK28V |\n| Publisher2021Volume        | 2KXJH-3NHTW-RDBPX-QFRXJ-MTGXF |\n| SkypeforBusiness2021Retail | DVBXN-HFT43-CVPRQ-J89TF-VMMHG |\n| SkypeforBusiness2021Volume | R3FCY-NHGC7-CBPVP-8Q934-YTGXG |\n| Standard2021Retail         | HXNXB-J4JGM-TCF44-2X2CV-FJVVH |\n| Standard2021Volume         | 2CJN4-C9XK2-HFPQ6-YH498-82TXH |\n| StandardSPLA2021Volume     | BQWDW-NJ9YF-P7Y79-H6DCT-MKQ9C |\n| VisioPro2021Retail         | T6P26-NJVBR-76BK8-WBCDY-TX3BC |\n| VisioPro2021Volume         | JNKBX-MH9P4-K8YYV-8CG2Y-VQ2C8 |\n| VisioStd2021Retail         | 89NYY-KB93R-7X22F-93QDF-DJ6YM |\n| VisioStd2021Volume         | BW43B-4PNFP-V637F-23TR2-J47TX |\n| Word2021Retail             | VNCC4-CJQVK-BKX34-77Y8H-CYXMR |\n| Word2021Volume             | BJG97-NW3GM-8QQQ7-FH76G-686XM |\n\n<br/>\n\n### Office 2024\n\n| Office Product             | Generated Generic Key         |\n|----------------------------|-------------------------------|\n| Access2024Retail           | P6NMW-JMTRC-R6MQ6-HH3F2-BTHKB |\n| Access2024Volume           | CXNJT-98HPP-92HX7-MX6GY-2PVFR |\n| Excel2024Retail            | 82CNJ-W82TW-BY23W-BVJ6W-W48GP |\n| Excel2024Volume            | 7Y287-9N2KC-8MRR3-BKY82-2DQRV |\n| Home2024Retail             | N69X7-73KPT-899FD-P8HQ4-QGTP4 |\n| HomeBusiness2024Retail     | PRKQM-YNPQR-77QT6-328D7-BD223 |\n| Outlook2024Retail          | 2CFK4-N44KG-7XG89-CWDG6-P7P27 |\n| Outlook2024Volume          | NQPXP-WVB87-H3MMB-FYBW2-9QFPB |\n| PowerPoint2024Retail       | CT2KT-GTNWH-9HFGW-J2PWJ-XW7KJ |\n| PowerPoint2024Volume       | RRXFN-JJ26R-RVWD2-V7WMP-27PWQ |\n| ProjectPro2024Retail       | GNJ6P-Y4RBM-C32WW-2VJKJ-MTHKK |\n| ProjectPro2024Volume       | WNFMR-HK4R7-7FJVM-VQ3JC-76HF6 |\n| ProjectStd2024Retail       | C2PNM-2GQFC-CY3XR-WXCP4-GX3XM |\n| ProjectStd2024Volume       | F2VNW-MW8TT-K622Q-4D96H-PWJ8X |\n| ProPlus2024Retail          | VWCNX-7FKBD-FHJYG-XBR4B-88KC6 |\n| ProPlus2024Volume          | 4YV2J-VNG7W-YGTP3-443TK-TF8CP |\n| SkypeforBusiness2024Volume | XKRBW-KN2FF-G8CKY-HXVG6-FVY2V |\n| Standard2024Volume         | GVG6N-6WCHH-K2MVP-RQ78V-3J7GJ |\n| VisioPro2024Retail         | HGRBX-N68QF-6DY8J-CGX4W-XW7KP |\n| VisioPro2024Volume         | GBNHB-B2G3Q-G42YB-3MFC2-7CJCX |\n| VisioStd2024Retail         | VBXPJ-38NR3-C4DKF-C8RT7-RGHKQ |\n| VisioStd2024Volume         | YNFTY-63K7P-FKHXK-28YYT-D32XB |\n| Word2024Retail             | XN33R-RP676-GMY2F-T3MH7-GCVKR |\n| Word2024Volume             | WD8CQ-6KNQM-8W2CX-2RT63-KK3TP |\n\n<br/>\n\n::: danger رفع مشکلات\n\nاگر سوالی دارید، ابتدا صفحه [**سوالات متداول**](./faq) را مرور کنید — به احتمال زیاد جواب‌تان اینجاست.\n\nاگر همچنان مشکل پابرجا بود — با ما [**در ارتباط**](./troubleshoot) باشید.\n\n::: \n\n[1]: https://github.com/asdcorp/ohook/releases/download/0.5/ohook_0.5.zip\n"
  },
  {
    "path": "docs/fa/wa/oem-folder.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: \"پوشه OEM\"\ndescription: \"\"\ndate: 2025-01-06\neditLink: true\n---\n\n# پوشه‌های $OEM$\n\nبرای ایجاد یک ISO نصب ویندوز از قبل فعال شده، موارد زیر را انجام دهید:\n-   پوشه `$OEM$` را با استفاده از اسکریپت MAS به دسکتاپ استخراج کنید.\n-   پوشه `$OEM$` را در پوشه `sources` در رسانه نصب ویندوز (ISO یا USB) کپی کنید.\n-   دایرکتوری به این صورت ظاهر می‌شود: `\\sources\\$OEM$` در ISO تغییر یافته شما یا در درایو USB قابل بوت شما.\n-   اکنون از این ISO یا درایو USB قابل بوت برای نصب ویندوز استفاده کنید، به محض بوت شدن یا از قبل فعال شده است (KMS38) یا در اولین تماس با اینترنت خود به خود فعال می‌شود (HWID یا آنلاین KMS).\n-   می‌توانید [اینجا][1] را برای جزئیات روش فعال‌سازی بررسی کنید.\n\n::: warning توجه\n\n::: details در ویندوز 8 و بالاتر\n\n- خطای [اجرای setup complete.cmd غیرفعال است][2] اگر کلید نصب شده پیش‌فرض برای نسخه از کانال OEM باشد، به جز برای نسخه‌های Enterprise و Windows Server.\n- با این حال، در ویندوز 10، نسخه‌های IoT Enterprise در لیست دسته‌بندی Enterprise در طول فرآیند نصب گنجانده نشده بودند.\n- در نتیجه، Enterprise با کلید OEM می‌تواند setupcomplete.cmd را مدیریت کند، اما IoT Enterprise (LTSC) نمی‌تواند. این در نسخه‌های بعدی ویندوز 11 رفع شد.\n    - در ویندوز 10 IoT Enterprise (LTSC)، می‌توانید این مشکل را با استفاده از ISO Non-IoT Windows 10 Enterprise LTSC حل کنید. در این حالت، روش HWID در پیش‌فعال‌سازی، کلید IoT LTSC را برای تغییر نسخه و فعال کردن فعال‌سازی HWID نصب می‌کند.\n    - در ویندوز 11 IoT Enterprise (LTSC)، به طور پیش‌فرض همانطور که انتظار می‌رود به خوبی کار می‌کند.\n\n:::\n\n## ویرایش فایل ISO\n\n::: tip  نکته\n\n- همانطور که در بالا ذکر شد، می‌توانید پوشه `$OEM$` را در USB قابل بوت خود کپی کنید تا مجبور به ویرایش فایل ISO نباشید. با این حال، اگر نیاز دارید، مراحل زیر را دنبال کنید.\n- [AnyBurn Free Portable][3] را دانلود کرده و فایل فشرده را استخراج کنید.\n- فایل با نام `AnyBurn(64-bit)\\AnyBurn.exe` را اجرا کنید.\n- گزینه‌ای با نام `Edit image file` را انتخاب کنید.\n- دستورالعمل‌های روی صفحه را دنبال کرده و پوشه `$OEM$` را به پوشه `sources` اضافه کنید تا دایرکتوری به این صورت ظاهر شود: `\\sources\\$OEM$`.\n- ISO را ذخیره کنید، تمام شد.\n\n:::\n\n## KMS38 - Server Cor/Acor\n\n-   نسخه‌های Windows Server Cor/Acor (بدون رابط کاربری گرافیکی) فایل `clipup.exe` را ندارند.\n-   برای فعال‌سازی KMS38 آن، باید فایل گمشده `ClipUp.exe` را از [app.box.com/s/....][4] دانلود کنید.\n    `فایل: ClipUp.exe`\n    `SHA-256: 0d6e9f6bbd0321eda149658d96040cb4f79e0bd93ba60061f25b28fecbf4d4ef`\n    این فایل دارای امضاهای دیجیتالی است که قابل تأیید است. همچنین می‌توانید این فایل را از [ISO رسمی Windows Server 2016 x64 RTM][5] دریافت کنید.\n-   `ClipUp.exe` را در کنار اسکریپت فعال‌سازی KMS38 قرار دهید. این یا `MAS_AIO.cmd` یا `KMS38_Activation.cmd` خواهد بود\n-   اسکریپت فعال‌سازی `ClipUp.exe` را در پوشه فعلی (از جایی که اسکریپت در حال اجرا است) بررسی می‌کند و بر این اساس از آن استفاده می‌کند.\n\n</br>\n\n##  پیش‌نصب آفیس\n\n-\tراهنمای [office c2r](./office_c2r) را دنبال کرده و فایل‌های آفیس را دانلود کنید.\n- \tپوشه `Office` دانلود شده، فایل‌های `setup.exe` و `Configuration.xml` را کپی کرده و در پوشه $OEM$، کنار فایل `setupcomplete.cmd` قرار دهید.\n-\tفایل `setupcomplete.cmd` را با notepad باز کرده و خطوط زیر را بعد از خط `fltmc >nul || exit /b` اضافه کنید.\n\t```\n\tcd /d \"%~dp0\"\n\tsetup.exe /configure Configuration.xml\n\t```\n- \tپوشه $OEM$ را طبق دستورالعمل‌های بالا در ISO ذخیره کنید، تمام شد.\n\n<br/>\n\n::: danger چگونه فعال‌سازی‌ها را حذف کنیم؟\n\n::: details  برای دیدن جزئیات اینجا را کلیک کنید\n\n- **HWID:** یک مجوز دیجیتال در سرورهای مایکروسافت ذخیره شده و به سخت‌افزار شما گره خورده است. به معنای سنتی نمی‌توان آن را \"حذف\" کرد. یک تغییر عمده سخت‌افزاری (مانند مادربرد) آن را باطل می‌کند. برای بازگشت به حالت غیرفعال، می‌توانید یک کلید KMS عمومی نصب کنید. [جزئیات گسترده](./hwid)\n- **آنلاین KMS / Ohook / KMS38:** از گزینه مربوطه \"Uninstall\" یا \"Remove\" در منوی اسکریپت MAS استفاده کنید، سپس گزینه \"Fix Licensing\" را از منوی Troubleshoot اجرا کنید. [جزئیات KMS](./kms) و [جزئیات KMS38](./kms38)\n- **TSforge:** این روش فقط داده‌ها را اضافه می‌کند و فایل‌ها را نصب نمی‌کند. برای بازنشانی آن، به سادگی گزینه \"Fix Licensing\" را از منوی Troubleshoot در اسکریپت MAS اجرا کنید. [جزئیات TSforge](./tsforge)\n\n:::\n\n::: danger\n\nاگر سوالی دارید، ابتدا صفحه [**سوالات پرتکرار**](./faq) را مرور کنید — به احتمال زیاد جواب‌تان اینجاست.\nاگر همچنان مشکل پابرجا بود — با ما [**در ارتباط**](./troubleshoot) باشید.\n\n:::\n\n[1]: https://github.com/NiREvil/windows-activation\n\n[2]: https://learn.microsoft.com/en-us/windows-hardware/manufacture/desktop/add-a-custom-script-to-windows-setup?view=windows-11#windows-setup-scripts\n\n[3]: https://www.anyburn.com/download.php\n\n[4]: https://app.box.com/s/cwoxub9tqyowhnyva6ign6qnogb6vk0o\n\n[5]: https://download.microsoft.com/download/1/6/F/16FA20E6-4662-482A-920B-1A45CF5AAE3C/14393.0.160715-1616.RS1_RELEASE_SERVER_EVAL_X64FRE_EN-US.ISO\n"
  },
  {
    "path": "docs/fa/wa/office-license-is-not-genuine.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'دریافت آفیس اصلی'\ndescription: 'از فوریه 2021، بیلدهای Office Click-to-Run که با KMS فعال می‌شوند، وجود نام سرور KMS را در رجیستری بررسی می‌کنند.'\ndate: 2024-08-05\neditLink: true\n---\n\n# بنر «دریافت آفیس اصلی»\n\n<img width=\"1118\" height=\"87\" alt=\"image\" src=\"https://github.com/user-attachments/assets/80014636-3c17-4509-a3fc-4a63e436a240\" />\n\n\n::: tip توضیحات\n\nبرای جلوگیری از استفاده از آفیس غیرقانونی، تیم آفیس از فوریه 2021 شروع به پیاده‌سازی بررسی‌هایی در Office C2R کرد تا بنری را نمایش دهد که کاربران را به خرید آفیس اصلی ترغیب می‌کند.  \nاز آنجایی که اکثر آموزش‌های غیرقانونی در یوتیوب از نصب‌کننده‌های آفیس خرده‌فروشی استفاده می‌کردند و سپس به صورت دستی لایسنس‌های حجمی را نصب کرده و آنها را با سرور KMS m-s-guides فعال می‌کردند، تیم آفیس شروع به نمایش بنرهایی برای خرید لایسنس‌های اصلی به آنها کرد.  \nدر این مسیر، آنها بررسی‌های بیشتری اضافه کردند و به اشتباه شروع به نمایش آن به کاربران اصلی Volume Office 2024 نیز کردند (مایکروسافت فراموش کرد بررسی‌ها را به‌روز کند). در زیر می‌توانید جزئیات بیشتری در این مورد پیدا کنید.\n\n:::\n\n## چه زمانی بنر ظاهر می‌شود؟\n\n- بیلدهای Office Click-to-Run (از فوریه 2021) که با KMS فعال می‌شوند، وجود نام سرور KMS را در رجیستری بررسی می‌کنند. اگر سرور KMS وجود نداشته باشد، بنری در برنامه‌های آفیس نمایش داده می‌شود که اطلاع می‌دهد «آفیس به درستی لایسنس نشده است».\n- اگر آفیس 32 بیتی روی ویندوز 64 بیتی نصب شده باشد، آفیس وجود سرور KMS را در کلید رجیستری مربوطه WOW6432Node نیز بررسی می‌کند.\n- علاوه بر این، آنها همچنین تشخیص می‌دهند که آیا یک سرور KMS ثبت شده در لیست سیاه آنها قرار دارد یا خیر. تا آنجا که من می‌دانم، 3 آدرس زیر در لیست سیاه قرار دارند.\n  `km-s8.MSG-uides.com` `km-s9.MSG-uides.com` `0.0.0.0` (خط تیره را حذف کنید)\n  دو مورد اول سرورهای KMS عمومی هستند و آخری یک IP واقعی نیست.\n- این بررسی‌های فوق توسط آفیس انجام نمی‌شود اگر نصب صحیح نسخه Volume آفیس با کانال PerpetualVL2019 / PerpetualVL2021 انجام شده باشد.\n    با این حال، با انتشار کانال Office PerpetualVL2024، آنها هنوز بررسی‌ها را به‌روز نکرده‌اند و در نتیجه، اگر هر یک از شرایط فوق برآورده شود، آفیس بنری را حتی به مشتریان اصلی نشان می‌دهد.\n\n---\n\n## راه‌حل‌ها:\n\nدر زیر، می‌توانید راه‌های مختلفی برای جلوگیری از این بنر پیدا کنید. ساده‌ترین گزینه برای شما این است که فقط از یک ابزار فعال‌سازی آفیس که در اینجا ذکر شده است استفاده کنید.\n\n\n\n### 1- ابزارهای فعال‌سازی\n\n- از [MAS](./index#مرحله-۲) یا [KMS_VL_ALL][1] abbodi1406 برای فعال‌سازی آفیس استفاده کنید.\n\n\n### 2- فعال‌سازی دستی\n\nدر این بخش، من فقط به نحوه تنظیم صحیح سرور KMS در رجیستری اشاره می‌کنم.\n\n- **اگر از سرور KMS عمومی استفاده می‌کنید:**\n    از آنجایی که آنها می‌توانند هر سرور KMS عمومی را در لیست سیاه قرار دهند، به عنوان یک راه‌حل دائمی، ما می‌توانیم به جای نام میزبان از IP سرور استفاده کنیم.\n\n- **اگر از IP سرور KMS خصوصی استفاده می‌کنید:**\n    مطمئن شوید که از یک آدرس IP خصوصی معتبر استفاده می‌کنید.\n\nدر زیر، می‌توانید نحوه تنظیم آدرس سرور KMS در رجیستری را پیدا کنید. به عنوان مثال، با یک IP خصوصی `10.0.0.10`\n\n```\nreg delete \"HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\SoftwareProtectionPlatform\\0ff1ce15-a989-479d-af46-f275c6370663\" /f\n\nreg delete \"HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\SoftwareProtectionPlatform\\0ff1ce15-a989-479d-af46-f275c6370663\" /f /reg:32\n\nreg add \"HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\SoftwareProtectionPlatform\" /f /v KeyManagementServiceName /t REG_SZ /d \"10.0.0.10\"\n\nreg add \"HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\SoftwareProtectionPlatform\" /f /v KeyManagementServiceName /t REG_SZ /d \"10.0.0.10\" /reg:32\n```\n\n### 3- نصب آفیس VL\n\nهمانطور که در بخش دلایل ذکر شد، این بررسی‌ها فقط در صورتی انجام می‌شوند که آفیس خرده‌فروشی نصب شده و بعداً به VL تبدیل شده باشد. آفیس هیچ نوع بررسی مرتبطی را انجام نمی‌دهد اگر نصب صحیح آفیس VL انجام شده باشد. (برای PerpetualVL2024 قابل اجرا نیست)\n\nلطفاً راهنمای [اینجا][2] را برای نصب آفیس VL ببینید.\n\n### 4- تغییر کانال به‌روزرسانی\n\nاگر کانال به‌روزرسانی Insider یا Current را **به** کانال Monthly Enterprise یا Semi-Annual تغییر دهیم، چنین بنرهای غیر اصلی به طور پیش‌فرض ظاهر نمی‌شوند.\n\nمی‌توانید این گزینه را در [MAS](./index#مرحله-۲) در زیر گزینه تغییر نسخه آفیس پیدا کنید.\n\n\n::: danger عیب یابی\n\nاگر سوالی دارید، ابتدا بخش [**سوالات متداول**](./faq) را مرور کنید — به احتمال زیاد پاسخ شما در آنجا خواهد بود.\n\nاگر مشکل شما همچنان ادامه داشت — [**با ما تماس بگیرید**](./troubleshoot).\n\n:::\n\n\n[1]: https://github.com/abbodi1406/KMS_VL_ALL_AIO/\n[2]: https://gravesoft.dev/office_c2r_custom\n"
  },
  {
    "path": "docs/fa/wa/office_c2r.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'نصب سفارشی Office C2R'\ndescription: 'روش نصب سفارشی آفیس'\ndate: 2025-05-08\neditLink: true\n---\n\n# نصب سفارشی Office C2R\n\n::: info توجه\n- اگر راهنمای زیر برای شما گیج‌کننده است، ساده‌ترین گزینه برای شما استفاده از [نصب‌کننده Office C2R][1] است.\n- آفیس Retail (مثلاً O365) دارای آخرین به‌روزرسانی‌های ویژگی است و آفیس Volume (مثلاً ProPlus 2024) اینطور نیست.\n- لطفاً توجه داشته باشید که در روش نصب سفارشی رسمی C2R office، هیچ ISO یا راه‌حل یک کلیکی در دسترس نیست. در زیر ساده‌ترین راهنما برای نصب آفیس سفارشی آورده شده است.\n\n:::\n\n## راهنمای نصب سفارشی\n\n-   اگر آفیس قبلاً نصب شده بود،\n\t- آفیس را با گزینه App and Features در تنظیمات ویندوز حذف کنید.\n\t- فایل `OfficeScrubber.cmd` را از [Office Scrubber][2] توسط abbodi1406 اجرا کرده و گزینه `[R] Remove all Licenses` را انتخاب کنید.\n-   یک پوشه جدید به نام `Office` در درایو `C:\\` ایجاد کنید، به عنوان مثال `C:\\Office`\n-   [ابزار استقرار آفیس][3] (ODT) را دانلود کنید\n-   فایل دانلود شده `setup.exe` را در آن پوشه آفیس که ایجاد کرده‌اید کپی کنید، به عنوان مثال `C:\\Office\\setup.exe`\n-   به [config.office.com][4] بروید\n-   اگر آفیس Retail می‌خواهید، `Microsoft 365 Apps for enterprise` را در بخش مجموعه‌های آفیس انتخاب کنید.\n-   اگر آفیس Volume می‌خواهید، `Office LTSC Professional Plus 2024 - Volume License` را در بخش مجموعه‌های آفیس انتخاب کنید. (نسخه SPLA را انتخاب نکنید)\n-   می‌توانید برنامه‌های Visio و Project را در صورت نیاز اضافه کنید، اما اطمینان حاصل کنید که زبان پشتیبانی شده [Project][5] / [Visio][6] انتخاب شده باشد.\n-   اگر قصد دارید فایل‌های آفیس را دانلود کرده و بعداً نصب کنید، اطمینان حاصل کنید که به جای آخرین نسخه، یک شماره نسخه خاص را در گزینه `Select the version` انتخاب کنید.\n-   فقط باید گزینه‌ها را تا بخش \"Language\" پیکربندی کنید. می‌توانید بقیه را به صورت پیش‌فرض رها کنید.\n-   روی دکمه export کلیک کنید، گزینه \"Keep Current Settings\" را انتخاب کنید و فایلی به نام `Configuration.xml` دانلود می‌شود (اگر نام چیز دیگری بود، آن را به `Configuration.xml` تغییر دهید)\n-   فایل دانلود شده `Configuration.xml` را در آن پوشه آفیس که ایجاد کرده‌اید کپی کنید، به عنوان مثال `C:\\Office\\Configuration.xml`\n\n-   **خط فرمان** <Badge type=\"info\" text=\"فقط Command prompt\" /> را به عنوان <Badge type=\"tip\" text=\"Administrator\" /> باز کرده و دستورات زیر را اجرا کنید.\n    ```\n    cd /d C:\\Office\\\n    setup.exe /configure Configuration.xml\n    ```\n\n**اکنون آفیس نصب خواهد شد.**\n\n-\tاطمینان حاصل کنید که طبق مراحل بالا، یک شماره نسخه خاص را در پیکربندی انتخاب کرده‌اید.\n-   **خط فرمان** (نه Powershell) را **به عنوان مدیر** باز کرده و دستورات زیر را اجرا کنید\n\t- دانلود فایل‌های آفیس\n    ```\n    cd /d C:\\Office\\\n    setup.exe /download Configuration.xml\n    ```\n\t- نصب آفیس از فایل‌های آفیس دانلود شده (می‌تواند به صورت آفلاین انجام شود)\n\t```\n\tcd /d C:\\Office\\\n    setup.exe /configure Configuration.xml\n    ```\n\n<br/>\n\n::: tip **خطاهای رایج**\n\n- اطمینان حاصل کنید که آن دستورات را در خط فرمان (CMD) با امتیاز مدیر وارد می‌کنید.\n\n- پسوندهای نام فایل به طور پیش‌فرض در ویندوز پنهان هستند. به همین دلیل، برخی از افراد ممکن است به اشتباه `Configuration.xml` را به `Configuration.xml.xml` تغییر نام دهند زیرا `.xml` قابل مشاهده نبود.\n\n:::\n\n### روش‌های جایگزین\n-  [YAOCTRU][7] (دانلودر آفیس) و [YAOCTRI][8] (نصب‌کننده آفیس)\n-  [Office Tool Plus][9].\n\n::: danger رفع مشکلات\n\nاگر سوالی دارید، ابتدا صفحه [**سوالات پرتکرار**](./faq) را مرور کنید — به احتمال زیاد جواب‌تان اینجاست.\nاگر همچنان مشکل پابرجا بود — با ما [**در ارتباط**](./troubleshoot) باشید.\n\n:::\n\n[1]: https://gravesoft.dev/office_c2r_links\n[2]: https://github.com/abbodi1406/WHD/raw/master/scripts/OfficeScrubber_13.zip\n[3]: https://officecdn.microsoft.com/pr/wsus/setup.exe\n[4]: https://config.office.com/deploymentsettings\n[5]: https://learn.microsoft.com/en-us/projectonline/supported-languages-for-project-online\n[6]: https://support.microsoft.com/en-us/office/display-languages-supported-in-the-visio-desktop-app-a921983e-fd5d-45ef-8af1-cedf70c53d75\n[7]: https://github.com/abbodi1406/WHD/raw/master/scripts/YAOCTRU_v10.0.zip\n[8]: https://github.com/abbodi1406/WHD/raw/master/scripts/YAOCTRI_v11.1.zip\n[9]: http://otp.landian.vip/\n"
  },
  {
    "path": "docs/fa/wa/ohook.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'فعال‌سازی Ohook'\ndescription: 'روش فعال‌سازی Ohook می‌تواند انواع نسخه‌های آفیس را در ویندوز ویستا و بالاتر و معادل سرور آنها به جز برنامه‌های UWP آفیس فعال کند.'\ndate: 2025-05-04\neditLink: true\nhead:\n  - - meta\n    - name: description\n      content: ohook, activation office, office 365, office 2013, office 2019, office 2021, activate all kinds of Office versions\n---\n\n# فعال‌سازی Ohook\n\n## نمای کلی\n\n::: tip چگونه از آن استفاده کنیم؟\n\n- لطفاً دستورالعمل‌ها را [اینجا](./index#مرحله-۲) پیدا کنید.\n\n- این روش فعال‌سازی می‌تواند انواع نسخه‌های آفیس را در ویندوز ویستا و بالاتر و معادل سرور آنها به جز برنامه‌های UWP آفیس فعال کند.\n- این روش فعال‌سازی به صورت آفلاین کار می‌کند و آفیس را به طور دائم فعال می‌کند.\n- این روش فعال‌سازی می‌تواند از تعمیرات آفیس، به‌روزرسانی‌های آفیس و حتی ارتقاءهای اصلی ویندوز جان سالم به در ببرد. در این موارد نیازی به فعال‌سازی مجدد ندارید.\n- برای نسخه اشتراکی O365، نمی‌توانید ویژگی‌های خاص O365 سمت سرور مانند 1 ترابایت فضای ذخیره‌سازی در Onedrive را دریافت کنید. با این حال، تقریباً تمام ویژگی‌های دیگر و 5 گیگابایت فضای ذخیره‌سازی در حساب رایگان onedrive به خوبی کار می‌کنند.\n- این روش فعال‌سازی هیچ فایل سیستمی داخلی را تغییر نمی‌دهد/وصله نمی‌کند، در عوض یک فایل سفارشی SPPC.dll (منبع باز) را برای کارکرد فعال‌سازی نصب می‌کند. جزئیات بیشتر را در بخش «چگونه کار می‌کند؟» در زیر بررسی کنید.\n\n:::\n\n## چگونه کار می‌کند؟\n\n#### برای آفیس مبتنی بر SPP:\n\n![beforohook](/mas_before_ohook.svg)\n\n- همانطور که در تصویر اول بالا نشان داده شده است، در فرآیند فعال‌سازی رسمی آفیس مبتنی بر SPP، آفیس از `C:\\Windows\\System32\\sppc.dll` در مورد وضعیت فعال‌سازی سؤال می‌کند و آن فایل همان چیز را از SPP (پلتفرم حفاظت از نرم‌افزار) `C:\\Windows\\System32\\sppsvc.exe` می‌پرسد و پیام را به آفیس برمی‌گرداند.\n\n![afterohook](/mas_after_ohook.svg)\n\n- همانطور که در تصویر دوم بالا نشان داده شده است، ما این رفتار را با قرار دادن یک فایل سفارشی `sppc.dll` در پوشه آفیس بدون دست زدن به فایل `C:\\Windows\\System32\\sppc.dll` سیستم تغییر می‌دهیم و آن فایل سفارشی همیشه پیام فعال بودن آفیس را برمی‌گرداند. اینگونه است که فعال‌سازی ohook کار می‌کند.\n- می‌توانید کد منبع فایل سفارشی sppc.dll ohook را [اینجا][1] پیدا کنید.\n\n## محصولات پشتیبانی شده\n\nبه طور خلاصه، انواع محصولات آفیس در ویندوز ویستا و بالاتر و معادل سرور آنها به جز برنامه‌های UWP آفیس پشتیبانی می‌شوند.\n\n### آفیس 2010 (14.0)\n\n::: danger نکته\n\nمی‌توانید از این کلید OEM ltFree `FJ44M-DX23P-QRWQ8-RXY39-HFQTC` برای نصب هر نسخه خرده‌فروشی آفیس 2010 استفاده کنید.\n\n:::\n\n<br/>\n\n| نسخه آفیس | محصول آفیس | کلیدهای مسدود شده از اینترنت | نوع کلید |\n|----------------|---------------------------------------------------------------------|----------------------------------------|----------|\n| v14.0 (2010)   | AccessR                                                             | 7KTYC-XR43P-C3MRW-BJKFD-XBYPG          | Retail   |\n| v14.0 (2010)   | AccessRuntimeR                                                      | 7XHPQ-BQMYG-YBP49-CY8B2-T8CGQ          | ByPass   |\n| v14.0 (2010)   | AccessVL                                                            | 89RTQ-MT4GK-6CPTX-WWP7C-J9KXR          | MAK      |\n| v14.0 (2010)   | ExcelVL                                                             | 39TRR-C2F37-9WYJ2-MJQXH-B938K          | MAK      |\n| v14.0 (2010)   | GrooveVL                                                            | RCGT3-FPQDV-H49CD-PPDBF-TH47G          | MAK      |\n| v14.0 (2010)   | HomeBusinessR [HomeBusinessDemoR]                                   | 3YR9B-D9W79-BY66R-R8XYP-QYYYY          | Retail   |\n| v14.0 (2010)   | HomeStudentR [HomeStudentDemoR]                                     | 3X43R-HHHXX-FRHRW-2M2WJ-8VPHD          | Retail   |\n| v14.0 (2010)   | InfoPathR                                                           | XDGJY-KFHW9-JWX9X-YM4GW-GC8WR          | Retail   |\n| v14.0 (2010)   | InfoPathVL                                                          | 6GKT2-KMJPK-4RRBF-8VQKB-JB6G6          | MAK      |\n| v14.0 (2010)   | OneNoteR [HSOneNoteR]                                               | 2TG3P-9DB76-4YT99-8RXGD-CWXBP          | Retail   |\n| v14.0 (2010)   | OneNoteVL                                                           | CV64P-F4VRH-BJ33D-PH6MR-X69RY          | MAK      |\n| v14.0 (2010)   | OutlookVL                                                           | J8C9M-YXMH2-9CX44-2C3YG-V7692          | MAK      |\n| v14.0 (2010)   | PersonalR [PersonalDemoR,PersonalPrepaidR]                          | GMBWM-WVX26-7WHV4-DB43D-WVDY2          | Retail   |\n| v14.0 (2010)   | PowerPointVL                                                        | HPBQP-RJHDR-Q3472-PT9Q6-PBB72          | MAK      |\n| v14.0 (2010)   | ProfessionalR [ProfessionalAcadR,ProfessionalDemoR,OEM-SingleImage] | 367X9-9HP9R-TKHY6-DH4QH-K9PY7          | Retail   |\n| v14.0 (2010)   | ProjectProR [ProjectProMSDNR]                                       | 6JD4G-KRW3J-48MGV-DM6FC-T9WKR          | Retail   |\n| v14.0 (2010)   | ProjectProVL                                                        | 3XDTH-MMGJ6-F9MKX-THP8D-G9BP7          | MAK      |\n| v14.0 (2010)   | ProjectStdR                                                         | 2W96V-RTQ9R-2BPVT-PT8H9-MV68T          | Retail   |\n| v14.0 (2010)   | ProjectStdVL                                                        | 4DTT4-D4MKX-23KFH-JKR6T-YKG2J          | MAK      |\n| v14.0 (2010)   | ProPlusR [ProPlusAcadR,ProPlusMSDNR,Sub4R]                          | 2J9H6-H4D3G-PCXD2-96XVM-TRR73          | Retail   |\n| v14.0 (2010)   | ProPlusVL [ProPlusAcadVL]                                           | 6CD6C-9R8PB-T2D9Y-8RKKX-W7DFK          | MAK      |\n| v14.0 (2010)   | PublisherR                                                          | CTRJP-P72VV-JBF8Y-4W6WW-HXHVG          | Retail   |\n| v14.0 (2010)   | PublisherVL                                                         | 32YG9-3VX77-YXJVV-PRVFW-TT8BV          | MAK      |\n| v14.0 (2010)   | SmallBusBasicsVL                                                    | 7VKXH-9BWCG-RPTBB-JBRV3-GRHYC          | MAK      |\n| v14.0 (2010)   | SPDR                                                                | H48K6-FB4Y6-P83GH-9J7XG-HDKKX          | ByPass   |\n| v14.0 (2010)   | StandardR [StandardMSDNR][KeyisforMSDNR]                            | W3BTX-H6BW7-Q6DFW-BXFFY-8RVJP          | Retail   |\n| v14.0 (2010)   | StandardVL [StandardAcadVL]                                         | 2XTQP-GDR7C-GTXPC-6W6PV-4RXGC          | MAK      |\n| v14.0 (2010)   | StarterR                                                            | VXHHB-W7HBD-7M342-RJ7P8-CHBD6          | ByPass   |\n| v14.0 (2010)   | VisioSIR Prem[Pro,Std]                                              | 2RDPT-WPYQM-C2WXF-BTPDW-2J2HM          | Retail   |\n| v14.0 (2010)   | VisioSIVL Prem[Pro,Std]                                             | 7PKFT-X2MKQ-GT6X2-8CB2W-CHC9K          | MAK      |\n| v14.0 (2010)   | WordVL                                                              | 6J3XK-DFKGK-X373V-QJHYM-V3FC2          | MAK      |\n\n> - ما نتوانستیم هیچ کلیدی (مسدود شده/عمومی مهم نیست) برای این محصولات آفیس 2010 پیدا کنیم. اگر آنها را دارید، لطفاً با ما به اشتراک بگذارید.\n\n```\n4eaff0d0-c6cb-4187-94f3-c7656d49a0aa    Retail      ExcelR_[HSExcelR]\n7004b7f0-6407-4f45-8eac-966e5f868bde    Retail      GrooveR\nfbf4ac36-31c8-4340-8666-79873129cf40    Retail      OutlookR\n133c8359-4e93-4241-8118-30bb18737ea0    Retail      PowerPointR_[HSPowerPointR]\ndb3bbc9c-ce52-41d1-a46f-1a1d68059119    Retail      WordR_[HSWordR]\ndbe3aee0-5183-4ff7-8142-66050173cb01    Retail      SmallBusBasicsR_[SmallBusBasicsMSDNR]\n```\n\n> - این نصب‌کننده‌ها به صورت عمومی در دسترس نیستند، بنابراین مهم نیست که کلیدهای آنها را نداریم.\n\n```\n19316117-30a8-4773-8fd9-7f7231f4e060    SubPrepid   HomeBusinessSubR\n4d06f72e-fd50-4bc2-a24b-d448d7f17ef2    SubPrepid   ProjectProSubR\ne98ef0c0-71c4-42ce-8305-287d8721e26c    SubPrepid   ProPlusSubR\n14f5946a-debc-4716-babc-7e2c240fec08    Retail      MondoR\n533b656a-4425-480b-8e30-1a2358898350    MAK         MondoVL\n```\n\n<br/>\n\n### آفیس 2013 (15.0)\n\n| نسخه آفیس | محصول آفیس | کلید عمومی تولید شده | نوع کلید |\n|----------------|--------------------------|-------------------------------|--------------|\n| v15.0 (2013)   | AccessRetail             | B7RFY-7NXPK-Q4342-Y9X2H-3JX4X | Retail       |\n| v15.0 (2013)   | AccessRuntimeRetail      | X3XNB-HJB7K-66THH-8DWQ3-XHGJP | Bypass       |\n| v15.0 (2013)   | AccessVolume             | 9MF9G-CN32B-HV7XT-9XJ8T-9KVF4 | MAK          |\n| v15.0 (2013)   | ExcelRetail              | NT889-MBH4X-8MD4H-X8R2D-WQHF8 | Retail       |\n| v15.0 (2013)   | ExcelVolume              | Y3N36-YCHDK-XYWBG-KYQVV-BDTJ2 | MAK          |\n| v15.0 (2013)   | GrooveRetail             | BMK4W-6N88B-BP9QR-PHFCK-MG7GF | Retail       |\n| v15.0 (2013)   | GrooveVolume             | RN84D-7HCWY-FTCBK-JMXWM-HT7GJ | MAK          |\n| v15.0 (2013)   | HomeBusinessPipcRetail   | 2WQNF-GBK4B-XVG6F-BBMX7-M4F2Y | OEM-Perp     |\n| v15.0 (2013)   | HomeBusinessRetail       | YWD4R-CNKVT-VG8VJ-9333B-RCW9F | Subscription |\n| v15.0 (2013)   | HomeStudentARMRetail     | B92QY-NKYFQ-6KTKH-VWW2Q-3PB3B | OEM-ARM      |\n| v15.0 (2013)   | HomeStudentPlusARMRetail | QPG96-CNT7M-KH36K-KY4HQ-M7TBR | OEM-ARM      |\n| v15.0 (2013)   | HomeStudentRetail        | 6WW3N-BDGM9-PCCHD-9QPP9-P34QG | Subscription |\n| v15.0 (2013)   | InfoPathRetail           | RV7NQ-HY3WW-7CKWH-QTVMW-29VHC | Retail       |\n| v15.0 (2013)   | InfoPathVolume           | C4TGN-QQW6Y-FYKXC-6WJW7-X73VG | MAK          |\n| v15.0 (2013)   | LyncAcademicRetail       | 6MDN4-WF3FV-4WH3Q-W699V-RGCMY | PrepidBypass |\n| v15.0 (2013)   | LyncEntryRetail          | N42BF-CBY9F-W2C7R-X397X-DYFQW | PrepidBypass |\n| v15.0 (2013)   | LyncRetail               | 89P23-2NK2R-JXM2M-3Q8R8-BWM3Y | Retail       |\n| v15.0 (2013)   | LyncVolume               | 3WKCD-RN489-4M7XJ-GJ2GQ-YBFQ6 | MAK          |\n| v15.0 (2013)   | MondoRetail              | VNWHF-FKFBW-Q2RGD-HYHWF-R3HH2 | Subscription |\n| v15.0 (2013)   | MondoVolume              | 2YNYQ-FQMVG-CB8KW-6XKYD-M7RRJ | MAK          |\n| v15.0 (2013)   | OneNoteFreeRetail        | 4TGWV-6N9P6-G2H8Y-2HWKB-B4FF4 | Bypass       |\n| v15.0 (2013)   | OneNoteRetail            | 3KXXQ-PVN2C-8P7YY-HCV88-GVGQ6 | Retail       |\n| v15.0 (2013)   | OneNoteVolume            | JDMWF-NJC7B-HRCHY-WFT8G-BPXD9 | MAK          |\n| v15.0 (2013)   | OutlookRetail            | 9N4RQ-CF8R2-HBVCB-J3C9V-94P4D | Retail       |\n| v15.0 (2013)   | OutlookVolume            | HNG29-GGWRG-RFC8C-JTFP4-2J9FH | MAK          |\n| v15.0 (2013)   | PersonalPipcRetail       | 9CYB3-NFMRW-YFDG6-XC7TF-BY36J | OEM-Perp     |\n| v15.0 (2013)   | PersonalRetail           | 2NCQJ-MFRMH-TXV83-J7V4C-RVRWC | Retail       |\n| v15.0 (2013)   | PowerPointRetail         | HVMN2-KPHQH-DVQMK-7B3CM-FGBFC | Retail       |\n| v15.0 (2013)   | PowerPointVolume         | 47DKN-HPJP7-RF9M3-VCYT2-TMQ4G | MAK          |\n| v15.0 (2013)   | ProPlusRetail            | N3QMM-GKDT3-JQGX6-7X3MQ-4GBG3 | Retail       |\n| v15.0 (2013)   | ProPlusVolume            | QKHNX-M9GGH-T3QMW-YPK4Q-QRP9V | MAK          |\n| v15.0 (2013)   | ProfessionalPipcRetail   | CF9DD-6CNW2-BJWJQ-CVCFX-Y7TXD | OEM-Perp     |\n| v15.0 (2013)   | ProfessionalRetail       | MBQBN-CQPT6-PXRMC-TYJFR-3C8MY | Retail       |\n| v15.0 (2013)   | ProjectProRetail         | WPY8N-PDPY4-FC7TF-KMP7P-KWYFY | Subscription |\n| v15.0 (2013)   | ProjectProVolume         | WFCT2-NBFQ7-JD7VV-MFJX6-6F2CM | MAK          |\n| v15.0 (2013)   | ProjectStdRetail         | NTHQT-VKK6W-BRB87-HV346-Y96W8 | Subscription |\n| v15.0 (2013)   | ProjectStdVolume         | 3CNQX-T34TY-99RH4-C4YD2-KWYGV | MAK          |\n| v15.0 (2013)   | PublisherRetail          | TWNCJ-YR84W-X7PPF-6DPRP-D67VC | Retail       |\n| v15.0 (2013)   | PublisherVolume          | DJPHV-NCJV6-GWPT6-K26JX-C7GX6 | MAK          |\n| v15.0 (2013)   | SPDRetail                | 3NY6J-WHT3F-47BDV-JHF36-2343W | PrepidBypass |\n| v15.0 (2013)   | StandardRetail           | V6VWN-KC2HR-YYDD6-9V7HQ-7T7VP | Retail       |\n| v15.0 (2013)   | StandardVolume           | 9TN6B-PCYH4-MCVDQ-KT83C-TMQ7T | MAK          |\n| v15.0 (2013)   | VisioProRetail           | NVK2G-2MY4G-7JX2P-7D6F2-VFQBR | Subscription |\n| v15.0 (2013)   | VisioProVolume           | YN7CF-XRH6R-CGKRY-GKPV3-BG7WF | MAK          |\n| v15.0 (2013)   | VisioStdRetail           | NCRB7-VP48F-43FYY-62P3R-367WK | Subscription |\n| v15.0 (2013)   | VisioStdVolume           | RX63Y-4NFK2-XTYC8-C6B3W-YPXPJ | MAK          |\n| v15.0 (2013)   | WordRetail               | NB77V-RPFQ6-PMMKQ-T87DV-M4D84 | Retail       |\n| v15.0 (2013)   | WordVolume               | RPHPB-Y7NC4-3VYFM-DW7VD-G8YJ8 | MAK          |\n\n<br/>\n\n### آفیس 365 (15.0)\n\n| نسخه آفیس | محصول آفیس | کلید عمومی تولید شده | نوع کلید |\n|----------------|------------------------|-------------------------------|---------------|\n| v15.0 (O365)   | O365BusinessRetail     | Y9NF9-M2QWD-FF6RJ-QJW36-RRF2T | SubTest       |\n| v15.0 (O365)   | O365HomePremRetail     | 3NMDC-G7C3W-68RGP-CB4MH-4CXCH | SubTest1      |\n| v15.0 (O365)   | O365ProPlusRetail      | H8DN8-Y2YP3-CR9JT-DHDR9-C7GP3 | Subscription2 |\n| v15.0 (O365)   | O365SmallBusPremRetail | 2QCNB-RMDKJ-GC8PB-7QGQV-7QTQJ | Subscription2 |\n\n<br/>\n\n### آفیس 365 (16.0)\n\n| نسخه آفیس | محصول آفیس | کلید عمومی تولید شده | نوع کلید |\n|----------------|------------------------|-------------------------------|---------------|\n| v16.0 (O365)   | O365AppsBasicRetail    | 3HYJN-9KG99-F8VG9-V3DT8-JFMHV | Subscription  |\n| v16.0 (O365)   | O365BusinessRetail     | Y9NF9-M2QWD-FF6RJ-QJW36-RRF2T | SubTest       |\n| v16.0 (O365)   | O365EduCloudRetail     | W62NQ-267QR-RTF74-PF2MH-JQMTH | Subscription  |\n| v16.0 (O365)   | O365HomePremRetail     | 3NMDC-G7C3W-68RGP-CB4MH-4CXCH | SubTest1      |\n| v16.0 (O365)   | O365ProPlusRetail      | H8DN8-Y2YP3-CR9JT-DHDR9-C7GP3 | Subscription2 |\n| v16.0 (O365)   | O365SmallBusPremRetail | 2QCNB-RMDKJ-GC8PB-7QGQV-7QTQJ | Subscription2 |\n\n<br/>\n\n### آفیس 2016 (16.0)\n\n| نسخه آفیس | محصول آفیس | کلید عمومی تولید شده | نوع کلید |\n|----------------|-----------------------------|-------------------------------|--------------|\n| v16.0 (2016)   | AccessRetail                | WHK4N-YQGHB-XWXCC-G3HYC-6JF94 | Retail       |\n| v16.0 (2016)   | AccessRuntimeRetail         | RNB7V-P48F4-3FYY6-2P3R3-63BQV | PrepidBypass |\n| v16.0 (2016)   | AccessVolume                | JJ2Y4-N8KM3-Y8KY3-Y22FR-R3KVK | MAK          |\n| v16.0 (2016)   | ExcelRetail                 | RKJBN-VWTM2-BDKXX-RKQFD-JTYQ2 | Retail       |\n| v16.0 (2016)   | ExcelVolume                 | FVGNR-X82B2-6PRJM-YT4W7-8HV36 | MAK          |\n| v16.0 (2016)   | HomeBusinessPipcRetail      | 2WQNF-GBK4B-XVG6F-BBMX7-M4F2Y | OEM-Perp     |\n| v16.0 (2016)   | HomeBusinessRetail          | HM6FM-NVF78-KV9PM-F36B8-D9MXD | Retail       |\n| v16.0 (2016)   | HomeStudentARMRetail        | PBQPJ-NC22K-69MXD-KWMRF-WFG77 | OEM-ARM      |\n| v16.0 (2016)   | HomeStudentPlusARMRetail    | 6F2NY-7RTX4-MD9KM-TJ43H-94TBT | OEM-ARM      |\n| v16.0 (2016)   | HomeStudentRetail           | PNPRV-F2627-Q8JVC-3DGR9-WTYRK | Retail       |\n| v16.0 (2016)   | HomeStudentVNextRetail      | YWD4R-CNKVT-VG8VJ-9333B-RC3B8 | Retail       |\n| v16.0 (2016)   | MondoRetail                 | VNWHF-FKFBW-Q2RGD-HYHWF-R3HH2 | Subscription |\n| v16.0 (2016)   | MondoVolume                 | FMTQQ-84NR8-2744R-MXF4P-PGYR3 | MAK          |\n| v16.0 (2016)   | OneNoteFreeRetail           | XYNTG-R96FY-369HX-YFPHY-F9CPM | Bypass       |\n| v16.0 (2016)   | OneNoteRetail               | FXF6F-CNC26-W643C-K6KB7-6XXW3 | Retail       |\n| v16.0 (2016)   | OneNoteVolume               | 9TYVN-D76HK-BVMWT-Y7G88-9TPPV | MAK          |\n| v16.0 (2016)   | OutlookRetail               | 7N4KG-P2QDH-86V9C-DJFVF-369W9 | Retail       |\n| v16.0 (2016)   | OutlookVolume               | 7QPNR-3HFDG-YP6T9-JQCKQ-KKXXC | MAK          |\n| v16.0 (2016)   | PersonalPipcRetail          | 9CYB3-NFMRW-YFDG6-XC7TF-BY36J | OEM-Perp     |\n| v16.0 (2016)   | PersonalRetail              | FT7VF-XBN92-HPDJV-RHMBY-6VKBF | Retail       |\n| v16.0 (2016)   | PowerPointRetail            | N7GCB-WQT7K-QRHWG-TTPYD-7T9XF | Retail       |\n| v16.0 (2016)   | PowerPointVolume            | X3RT9-NDG64-VMK2M-KQ6XY-DPFGV | MAK          |\n| v16.0 (2016)   | ProPlusRetail               | GM43N-F742Q-6JDDK-M622J-J8GDV | Retail       |\n| v16.0 (2016)   | ProPlusVolume               | FNVK8-8DVCJ-F7X3J-KGVQB-RC2QY | MAK          |\n| v16.0 (2016)   | ProfessionalPipcRetail      | CF9DD-6CNW2-BJWJQ-CVCFX-Y7TXD | OEM-Perp     |\n| v16.0 (2016)   | ProfessionalRetail          | NXFTK-YD9Y7-X9MMJ-9BWM6-J2QVH | Retail       |\n| v16.0 (2016)   | ProjectProRetail            | WPY8N-PDPY4-FC7TF-KMP7P-KWYFY | Subscription |\n| v16.0 (2016)   | ProjectProVolume            | PKC3N-8F99H-28MVY-J4RYY-CWGDH | MAK          |\n| v16.0 (2016)   | ProjectProXVolume           | JBNPH-YF2F7-Q9Y29-86CTG-C9YGV | MAKC2R       |\n| v16.0 (2016)   | ProjectStdRetail            | NTHQT-VKK6W-BRB87-HV346-Y96W8 | Subscription |\n| v16.0 (2016)   | ProjectStdVolume            | 4TGWV-6N9P6-G2H8Y-2HWKB-B4G93 | MAK          |\n| v16.0 (2016)   | ProjectStdXVolume           | N3W2Q-69MBT-27RD9-BH8V3-JT2C8 | MAKC2R       |\n| v16.0 (2016)   | PublisherRetail             | WKWND-X6G9G-CDMTV-CPGYJ-6MVBF | Retail       |\n| v16.0 (2016)   | PublisherVolume             | 9QVN2-PXXRX-8V4W8-Q7926-TJGD8 | MAK          |\n| v16.0 (2016)   | SkypeServiceBypassRetail    | 6MDN4-WF3FV-4WH3Q-W699V-RGCMY | PrepidBypass |\n| v16.0 (2016)   | SkypeforBusinessEntryRetail | 4N4D8-3J7Y3-YYW7C-73HD2-V8RHY | PrepidBypass |\n| v16.0 (2016)   | SkypeforBusinessRetail      | PBJ79-77NY4-VRGFG-Y8WYC-CKCRC | Retail       |\n| v16.0 (2016)   | SkypeforBusinessVolume      | DMTCJ-KNRKR-JV8TQ-V2CR2-VFTFH | MAK          |\n| v16.0 (2016)   | StandardRetail              | 2FPWN-4H6CM-KD8QQ-8HCHC-P9XYW | Retail       |\n| v16.0 (2016)   | StandardVolume              | WHGMQ-JNMGT-MDQVF-WDR69-KQBWC | MAK          |\n| v16.0 (2016)   | VisioProRetail              | NVK2G-2MY4G-7JX2P-7D6F2-VFQBR | Subscription |\n| v16.0 (2016)   | VisioProVolume              | NRKT9-C8GP2-XDYXQ-YW72K-MG92B | MAK          |\n| v16.0 (2016)   | VisioProXVolume             | G98Q2-B6N77-CFH9J-K824G-XQCC4 | MAKC2R       |\n| v16.0 (2016)   | VisioStdRetail              | NCRB7-VP48F-43FYY-62P3R-367WK | Subscription |\n| v16.0 (2016)   | VisioStdVolume              | XNCJB-YY883-JRW64-DPXMX-JXCR6 | MAK          |\n| v16.0 (2016)   | VisioStdXVolume             | B2HTN-JPH8C-J6Y6V-HCHKB-43MGT | MAKC2R       |\n| v16.0 (2016)   | WordRetail                  | P8K82-NQ7GG-JKY8T-6VHVY-88GGD | Retail       |\n| v16.0 (2016)   | WordVolume                  | YHMWC-YN6V9-WJPXD-3WQKP-TMVCV | MAK          |\n\n<br/>\n\n### آفیس 2019 (16.0)\n\n| نسخه آفیس | محصول آفیس | کلید عمومی تولید شده | نوع کلید |\n|----------------|---------------------------------|-------------------------------|--------------|\n| v16.0 (2019)   | Access2019Retail                | WRYJ6-G3NP7-7VH94-8X7KP-JB7HC | Retail       |\n| v16.0 (2019)   | Access2019Volume                | 6FWHX-NKYXK-BW34Q-7XC9F-Q9PX7 | MAK-AE       |\n| v16.0 (2019)   | AccessRuntime2019Retail         | FGQNJ-JWJCG-7Q8MG-RMRGJ-9TQVF | PrepidBypass |\n| v16.0 (2019)   | Excel2019Retail                 | KBPNW-64CMM-8KWCB-23F44-8B7HM | Retail       |\n| v16.0 (2019)   | Excel2019Volume                 | 8NT4X-GQMCK-62X4P-TW6QP-YKPYF | MAK-AE       |\n| v16.0 (2019)   | HomeBusiness2019Retail          | QBN2Y-9B284-9KW78-K48PB-R62YT | Retail       |\n| v16.0 (2019)   | HomeStudentARM2019Retail        | DJTNY-4HDWM-TDWB2-8PWC2-W2RRT | OEM-ARM      |\n| v16.0 (2019)   | HomeStudentPlusARM2019Retail    | NM8WT-CFHB2-QBGXK-J8W6J-GVK8F | OEM-ARM      |\n| v16.0 (2019)   | HomeStudent2019Retail           | XNWPM-32XQC-Y7QJC-QGGBV-YY7JK | Retail       |\n| v16.0 (2019)   | Outlook2019Retail               | WR43D-NMWQQ-HCQR2-VKXDR-37B7H | Retail       |\n| v16.0 (2019)   | Outlook2019Volume               | RN3QB-GT6D7-YB3VH-F3RPB-3GQYB | MAK-AE       |\n| v16.0 (2019)   | Personal2019Retail              | NMBY8-V3CV7-BX6K6-2922Y-43M7T | Retail       |\n| v16.0 (2019)   | PowerPoint2019Retail            | HN27K-JHJ8R-7T7KK-WJYC3-FM7MM | Retail       |\n| v16.0 (2019)   | PowerPoint2019Volume            | 29GNM-VM33V-WR23K-HG2DT-KTQYR | MAK-AE       |\n| v16.0 (2019)   | ProPlus2019Retail               | BN4XJ-R9DYY-96W48-YK8DM-MY7PY | Retail       |\n| v16.0 (2019)   | ProPlus2019Volume               | T8YBN-4YV3X-KK24Q-QXBD7-T3C63 | MAK-AE       |\n| v16.0 (2019)   | Professional2019Retail          | 9NXDK-MRY98-2VJV8-GF73J-TQ9FK | Retail       |\n| v16.0 (2019)   | ProjectPro2019Retail            | JDTNC-PP77T-T9H2W-G4J2J-VH8JK | Retail       |\n| v16.0 (2019)   | ProjectPro2019Volume            | TBXBD-FNWKJ-WRHBD-KBPHH-XD9F2 | MAK-AE       |\n| v16.0 (2019)   | ProjectStd2019Retail            | R3JNT-8PBDP-MTWCK-VD2V8-HMKF9 | Retail       |\n| v16.0 (2019)   | ProjectStd2019Volume            | RBRFX-MQNDJ-4XFHF-7QVDR-JHXGC | MAK-AE       |\n| v16.0 (2019)   | Publisher2019Retail             | 4QC36-NW3YH-D2Y9D-RJPC7-VVB9D | Retail       |\n| v16.0 (2019)   | Publisher2019Volume             | K8F2D-NBM32-BF26V-YCKFJ-29Y9W | MAK-AE       |\n| v16.0 (2019)   | SkypeforBusiness2019Retail      | JBDKF-6NCD6-49K3G-2TV79-BKP73 | Retail       |\n| v16.0 (2019)   | SkypeforBusiness2019Volume      | 9MNQ7-YPQ3B-6WJXM-G83T3-CBBDK | MAK-AE       |\n| v16.0 (2019)   | SkypeforBusinessEntry2019Retail | N9722-BV9H6-WTJTT-FPB93-978MK | PrepidBypass |\n| v16.0 (2019)   | Standard2019Retail              | NDGVM-MD27H-2XHVC-KDDX2-YKP74 | Retail       |\n| v16.0 (2019)   | Standard2019Volume              | NT3V6-XMBK7-Q66MF-VMKR4-FC33M | MAK-AE       |\n| v16.0 (2019)   | VisioPro2019Retail              | 2NWVW-QGF4T-9CPMB-WYDQ9-7XP79 | Retail       |\n| v16.0 (2019)   | VisioPro2019Volume              | 33YF4-GNCQ3-J6GDM-J67P3-FM7QP | MAK-AE       |\n| v16.0 (2019)   | VisioStd2019Retail              | 263WK-3N797-7R437-28BKG-3V8M8 | Retail       |\n| v16.0 (2019)   | VisioStd2019Volume              | BGNHX-QTPRJ-F9C9G-R8QQG-8T27F | MAK-AE       |\n| v16.0 (2019)   | Word2019Retail                  | JXR8H-NJ3MK-X66W8-78CWD-QRVR2 | Retail       |\n| v16.0 (2019)   | Word2019Volume                  | 9F36R-PNVHH-3DXGQ-7CD2H-R9D3V | MAK-AE       |\n\n<br/>\n\n### آفیس 2021 (16.0)\n\n| نسخه آفیس | محصول آفیس | کلید عمومی تولید شده | نوع کلید |\n|----------------|----------------------------|-------------------------------|--------------|\n| v16.0 (2021)   | Access2021Retail           | P286B-N3XYP-36QRQ-29CMP-RVX9M | Retail       |\n| v16.0 (2021)   | AccessRuntime2021Retail    | MNX9D-PB834-VCGY2-K2RW2-2DP3D | Bypass       |\n| v16.0 (2021)   | Access2021Volume           | JBH3N-P97FP-FRTJD-MGK2C-VFWG6 | MAK-AE       |\n| v16.0 (2021)   | Excel2021Retail            | V6QFB-7N7G9-PF7W9-M8FQM-MY8G9 | Retail       |\n| v16.0 (2021)   | Excel2021Volume            | WNYR4-KMR9H-KVC8W-7HJ8B-K79DQ | MAK-AE       |\n| v16.0 (2021)   | HomeBusiness2021Retail     | JM99N-4MMD8-DQCGJ-VMYFY-R63YK | Subscription |\n| v16.0 (2021)   | HomeStudent2021Retail      | N3CWD-38XVH-KRX2Y-YRP74-6RBB2 | Subscription |\n| v16.0 (2021)   | OneNoteFree2021Retail      | CNM3W-V94GB-QJQHH-BDQ3J-33Y8H | Bypass       |\n| v16.0 (2021)   | OneNote2021Retail          | NB2TQ-3Y79C-77C6M-QMY7H-7QY8P | Retail       |\n| v16.0 (2021)   | OneNote2021Volume          | THNKC-KFR6C-Y86Q9-W8CB3-GF7PD | MAK-AE       |\n| v16.0 (2021)   | Outlook2021Retail          | 4NCWR-9V92Y-34VB2-RPTHR-YTGR7 | Retail       |\n| v16.0 (2021)   | Outlook2021Volume          | JQ9MJ-QYN6B-67PX9-GYFVY-QJ6TB | MAK-AE       |\n| v16.0 (2021)   | Personal2021Retail         | RRRYB-DN749-GCPW4-9H6VK-HCHPT | Retail       |\n| v16.0 (2021)   | PowerPoint2021Retail       | 3KXXQ-PVN2C-8P7YY-HCV88-GVM96 | Retail1      |\n| v16.0 (2021)   | PowerPoint2021Volume       | 39G2N-3BD9C-C4XCM-BD4QG-FVYDY | MAK-AE       |\n| v16.0 (2021)   | ProPlus2021Retail          | 8WXTP-MN628-KY44G-VJWCK-C7PCF | Retail       |\n| v16.0 (2021)   | ProPlus2021Volume          | RNHJY-DTFXW-HW9F8-4982D-MD2CW | MAK-AE1      |\n| v16.0 (2021)   | ProPlusSPLA2021Volume      | JRJNJ-33M7C-R73X3-P9XF7-R9F6M | MAK-AE       |\n| v16.0 (2021)   | Professional2021Retail     | DJPHV-NCJV6-GWPT6-K26JX-C7PBG | Retail       |\n| v16.0 (2021)   | ProjectPro2021Retail       | QKHNX-M9GGH-T3QMW-YPK4Q-QRWMV | Retail       |\n| v16.0 (2021)   | ProjectPro2021Volume       | HVC34-CVNPG-RVCMT-X2JRF-CR7RK | MAK-AE1      |\n| v16.0 (2021)   | ProjectStd2021Retail       | 2B96V-X9NJY-WFBRC-Q8MP2-7CHRR | Retail       |\n| v16.0 (2021)   | ProjectStd2021Volume       | 3CNQX-T34TY-99RH4-C4YD2-KW6WH | MAK-AE       |\n| v16.0 (2021)   | Publisher2021Retail        | CDNFG-77T8D-VKQJX-B7KT3-KK28V | Retail1      |\n| v16.0 (2021)   | Publisher2021Volume        | 2KXJH-3NHTW-RDBPX-QFRXJ-MTGXF | MAK-AE       |\n| v16.0 (2021)   | SkypeforBusiness2021Retail | DVBXN-HFT43-CVPRQ-J89TF-VMMHG | Retail       |\n| v16.0 (2021)   | SkypeforBusiness2021Volume | R3FCY-NHGC7-CBPVP-8Q934-YTGXG | MAK-AE       |\n| v16.0 (2021)   | Standard2021Retail         | HXNXB-J4JGM-TCF44-2X2CV-FJVVH | Retail       |\n| v16.0 (2021)   | Standard2021Volume         | 2CJN4-C9XK2-HFPQ6-YH498-82TXH | MAK-AE       |\n| v16.0 (2021)   | StandardSPLA2021Volume     | BQWDW-NJ9YF-P7Y79-H6DCT-MKQ9C | MAK-AE       |\n| v16.0 (2021)   | VisioPro2021Retail         | T6P26-NJVBR-76BK8-WBCDY-TX3BC | Retail       |\n| v16.0 (2021)   | VisioPro2021Volume         | JNKBX-MH9P4-K8YYV-8CG2Y-VQ2C8 | MAK-AE       |\n| v16.0 (2021)   | VisioStd2021Retail         | 89NYY-KB93R-7X22F-93QDF-DJ6YM | Retail       |\n| v16.0 (2021)   | VisioStd2021Volume         | BW43B-4PNFP-V637F-23TR2-J47TX | MAK-AE       |\n| v16.0 (2021)   | Word2021Retail             | VNCC4-CJQVK-BKX34-77Y8H-CYXMR | Retail       |\n| v16.0 (2021)   | Word2021Volume             | BJG97-NW3GM-8QQQ7-FH76G-686XM | MAK-AE       |\n\n<br/>\n\n### آفیس 2024 (16.0)\n\n| نسخه آفیس | محصول آفیس | کلید عمومی تولید شده | نوع کلید |\n|----------------|----------------------------|-------------------------------|----------|\n| v16.0 (2024)   | Access2024Retail           | P6NMW-JMTRC-R6MQ6-HH3F2-BTHKB | Retail   |\n| v16.0 (2024)   | Access2024Volume           | CXNJT-98HPP-92HX7-MX6GY-2PVFR | MAK-AE   |\n| v16.0 (2024)   | Excel2024Retail            | 82CNJ-W82TW-BY23W-BVJ6W-W48GP | Retail   |\n| v16.0 (2024)   | Excel2024Volume            | 7Y287-9N2KC-8MRR3-BKY82-2DQRV | MAK-AE   |\n| v16.0 (2024)   | Home2024Retail             | N69X7-73KPT-899FD-P8HQ4-QGTP4 | Retail   |\n| v16.0 (2024)   | HomeBusiness2024Retail     | PRKQM-YNPQR-77QT6-328D7-BD223 | Retail   |\n| v16.0 (2024)   | Outlook2024Retail          | 2CFK4-N44KG-7XG89-CWDG6-P7P27 | Retail   |\n| v16.0 (2024)   | Outlook2024Volume          | NQPXP-WVB87-H3MMB-FYBW2-9QFPB | MAK-AE   |\n| v16.0 (2024)   | PowerPoint2024Retail       | CT2KT-GTNWH-9HFGW-J2PWJ-XW7KJ | Retail   |\n| v16.0 (2024)   | PowerPoint2024Volume       | RRXFN-JJ26R-RVWD2-V7WMP-27PWQ | MAK-AE   |\n| v16.0 (2024)   | ProjectPro2024Retail       | GNJ6P-Y4RBM-C32WW-2VJKJ-MTHKK | Retail   |\n| v16.0 (2024)   | ProjectPro2024Volume       | WNFMR-HK4R7-7FJVM-VQ3JC-76HF6 | MAK-AE1  |\n| v16.0 (2024)   | ProjectStd2024Retail       | C2PNM-2GQFC-CY3XR-WXCP4-GX3XM | Retail   |\n| v16.0 (2024)   | ProjectStd2024Volume       | F2VNW-MW8TT-K622Q-4D96H-PWJ8X | MAK-AE   |\n| v16.0 (2024)   | ProPlus2024Retail          | VWCNX-7FKBD-FHJYG-XBR4B-88KC6 | Retail   |\n| v16.0 (2024)   | ProPlus2024Volume          | 4YV2J-VNG7W-YGTP3-443TK-TF8CP | MAK-AE1  |\n| v16.0 (2024)   | SkypeforBusiness2024Volume | XKRBW-KN2FF-G8CKY-HXVG6-FVY2V | MAK-AE   |\n| v16.0 (2024)   | Standard2024Volume         | GVG6N-6WCHH-K2MVP-RQ78V-3J7GJ | MAK-AE1  |\n| v16.0 (2024)   | VisioPro2024Retail         | HGRBX-N68QF-6DY8J-CGX4W-XW7KP | Retail   |\n| v16.0 (2024)   | VisioPro2024Volume         | GBNHB-B2G3Q-G42YB-3MFC2-7CJCX | MAK-AE   |\n| v16.0 (2024)   | VisioStd2024Retail         | VBXPJ-38NR3-C4DKF-C8RT7-RGHKQ | Retail   |\n| v16.0 (2024)   | VisioStd2024Volume         | YNFTY-63K7P-FKHXK-28YYT-D32XB | MAK-AE   |\n| v16.0 (2024)   | Word2024Retail             | XN33R-RP676-GMY2F-T3MH7-GCVKR | Retail   |\n| v16.0 (2024)   | Word2024Volume             | WD8CQ-6KNQM-8W2CX-2RT63-KK3TP | MAK-AE   |\n\n<br/>\n\n\n::: info اطلاعات\n\n- برای نسخه اشتراکی O365، نمی‌توانید ویژگی‌های خاص O365 سمت سرور مانند 1 ترابایت فضای ذخیره‌سازی در Onedrive را دریافت کنید. با این حال، تقریباً تمام ویژگی‌های دیگر و 5 گیگابایت فضای ذخیره‌سازی در حساب رایگان onedrive به خوبی کار می‌کنند.\n- اسکریپت هیچ محصولی را به Volume یا بالعکس تبدیل نمی‌کند. همه محصولات با لایسنس خودشان فعال می‌شوند.\n- برای آفیس 2013 و بالاتر، اولویت کلید به این ترتیب است: Retail:TB:Sub > Retail > OEM:NONSLP > Volume:MAK > Volume:GVLK\n- برای آفیس 2010، اولویت کلید به این ترتیب است: Retail > Volume:MAK\n\n:::\n\n\n## چگونه Ohook را حذف کنیم\n\n::: tip راهنما\n\n- در [MAS](./index#مرحله-۲)\n- به فعال‌سازی Ohook بروید و گزینه Uninstall را اعمال کنید.\n- پس از آن، در MAS، به Troubleshoot بروید و گزینه Fix Licensing را اعمال کنید. (اختیاری)\n- انجام شد ✔️\n\n:::\n\n<br/>\n\n## محصولات پشتیبانی نشده\n\n- Office UWP (برنامه‌های فروشگاه)\n  برای این کار از گزینه فعال‌سازی TSforge استفاده کنید.\n\n## اطلاعات سفارشی sppc.dll {#سفارشی}\n\n- کد منبع سفارشی sppc.dll (Ohook 0.5) در [اینجا][2] موجود است.\n- چک‌سام‌های SHA-256:\n\n```reg\n09865ea5993215965e8f27a74b8a41d15fd0f60f5f404cb7a8b3c7757acdab02 *sppc32.dll\n393a1fa26deb3663854e41f2b687c188a9eacd87b23f17ea09422c4715cb5a9f *sppc64.dll\n```\n\n- در نسخه MAS AIO، این 2 فایل برای ساخت نسخه MAS AIO به صورت base64 کدگذاری شده‌اند. در اسکریپت AIO، [دستورالعمل‌هایی][3] در مورد نحوه رمزگشایی فایل‌ها از فرمت Base64 ذکر شده است.\n**چگونه فایل‌های sppc.dll یکسان را از ابتدا ایجاد کنیم؟**\n- فایل کد منبع ohook 0.5 را از [اینجا][4] دانلود کنید.\n- این فایل فشرده را در پوشه‌ای به نام `C:\\ohook` استخراج کنید.\n- اکنون این دو آرشیو کامپایلر را دانلود کنید، [mingw32][5] و [mingw64][5].\n- هر دو آرشیو را با 7-zip در درایو C استخراج کنید، به طوری که مسیر به این شکل باشد،\n    `C:\\mingw32`\n    `C:\\mingw64`\n- Powershell را به عنوان مدیر باز کنید و دستور زیر را برای تنظیم زمان و تاریخ وارد کنید،\n    `Set-TimeZone -Id 'UTC'; $date=[datetime]'2023/8/7 12:00';while($true){set-date $date; start-sleep -milliseconds 10;}`\n- اکنون پنجره دیگری برای Powershell باز کنید و دستورات زیر را برای ایجاد فایل‌های sppc.dll وارد کنید،\n    `Set-Location -Path C:\\ohook`\n    `C:\\mingw64\\bin\\mingw32-make.exe`\n- SHA-256 فایل‌های sppc64.dll و sppc32.dll ایجاد شده را با استفاده از 7-zip یا Powershell محاسبه کنید، باید همانند موارد ذکر شده در بالا باشد.\n- انجام شد، اکنون می‌توانید پنجره‌های Powershell را ببندید و تاریخ را اصلاح کنید.\n\n\n### فعال‌سازی دستی\n\n- [اینجا](./manual_ohook_activation) را بررسی کنید.\n\n\n### سوئیچ‌های خط فرمان\n\n- [اینجا](./command_line_switches) را بررسی کنید.\n\n\n### تنظیم پیش‌فعال‌سازی\n\n- اگر می‌خواهید نصب ویندوز از پیش فعال شده باشد، گزینه Extract OEM را در بخش `Extras` MAS بررسی کنید.\n- ادامه مطلب را [اینجا](./oem-folder) بخوانید.\n\n<br/>\n\n::: danger عیب یابی\n\nاگر سوالی دارید، ابتدا بخش [**سوالات متداول**](./faq) را مرور کنید — به احتمال زیاد پاسخ شما در آنجا خواهد بود.\n\nاگر مشکل شما همچنان ادامه داشت — [**با ما تماس بگیرید**](./troubleshoot).\n\n:::\n\n[1]: https://github.com/asdcorp/ohook\n[2]: https://stackoverflow.com/a/35335273\n[3]: https://github.com/asdcorp/ohook/archive/refs/tags/0.5.zip\n[4]: https://github.com/brechtsanders/winlibs_mingw/releases/download/11.4.0-11.0.0-ucrt-r1/winlibs-i686-posix-dwarf-gcc-11.4.0-mingw-w64ucrt-11.0.0-r1.7z\n[5]: https://github.com/brechtsanders/winlibs_mingw/releases/download/11.4.0-11.0.0-ucrt-r1/winlibs-x86_64-posix-seh-gcc-11.4.0-mingw-w64ucrt-11.0.0-r1.7z\n"
  },
  {
    "path": "docs/fa/wa/online_kms.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'فعال‌سازی آنلاین KMS'\ndescription: 'فعال‌سازی آنلاین kms'\ndate: 2025-04-06\neditLink: true\n---\n\n# فعال‌سازی آنلاین KMS\n\n## بررسی اجمالی\n\n- چگونه از آن استفاده کنیم؟ لطفاً دستورالعمل‌ها را در [مقدمه](./index#مرحله-۲) بیابید.\n- KMS ویندوز / آفیس را برای 180 روز فعال می‌کند. برای نسخه‌های Windows Core / ProWMC این مدت 30 / 45 روز است.\n- این اسکریپت می‌تواند هم نصب ویندوز Retail و هم Volume را فعال کند.\n- این اسکریپت می‌تواند آفیس C2R Retail و VL، آفیس UWP را فعال کند، اما نه آفیس Retail 2010 / 2013 MSI.\n- این اسکریپت در صورتی که ویندوز به طور دائمی / KMS38 فعال شده باشد، از فعال‌سازی صرف‌نظر می‌کند.\n- همانطور که ذکر شد، KMS فقط برای یک دوره محدود فعال می‌شود و دائمی نیست، در ادامه در مورد چگونگی دستیابی به فعال‌سازی مادام‌العمر بخوانید.\n\n## تمدید فعال‌سازی\n\nطبق طراحی در روش فعال‌سازی واقعی [KMS][1]، سیستم هر 7 روز با سرور ثبت شده تماس می‌گیرد و در صورت تماس موفقیت‌آمیز، فعال‌سازی را به طور خودکار تمدید و برای دوره کامل 180 روز از روز تماس موفقیت‌آمیز بازنشانی می‌کند. اگر سیستم نتواند با سرور تماس بگیرد، پس از 180 روز غیرفعال می‌شود و تا زمانی که تماس برقرار نشود، غیرفعال باقی می‌ماند.\n\nبرای دریافت فعال‌سازی مادام‌العمر، اسکریپت به طور پیش‌فرض وظیفه تمدید خودکار ایجاد می‌کند.\nاین دو فایل زیر را ایجاد می‌کند،\n\n`C:\\Program Files\\Activation-Renewal\\Activation_task.cmd`\n\n`C:\\Program Files\\Activation-Renewal\\Info.txt`\n\nو یک وظیفه زمان‌بندی شده `\\Activation-Renewal` برای اجرای اسکریپت هر 7 روز ایجاد می‌کند. این وظیفه سرور KMS در حال کار را ثبت می‌کند و دستورات فعال‌سازی را فقط برای محصولات Volume نصب شده فعال می‌کند. وظیفه زمان‌بندی شده فقط در صورتی اجرا می‌شود که سیستم به اینترنت متصل باشد.\n\nاگر نمی‌خواهید این وظیفه تمدید را نصب کنید، می‌توانید گزینه \"Renewal Task With Activation\" را در منوی اسکریپت خاموش کنید <br/>\n\n## ملاحظات\n\n- با فعال‌سازی KMS، می‌توانید ویندوز/آفیس را بدون هیچ مشکلی به‌روزرسانی کنید.\n- چه چیزی در سیستم در فرآیند فعال‌سازی باقی می‌ماند؟\n  - **اگر وظیفه تمدید نصب شده باشد:** پس از فعال‌سازی، IP سرور KMS را در رجیستری باقی می‌گذارد، که به شما کمک می‌کند تا ویژگی فعال‌سازی جهانی را دریافت کنید که به موجب آن سیستم به طور خودکار فعال‌سازی را تمدید می‌کند. در مورد فایل‌ها و وظایف زمان‌بندی شده، در بالا ذکر شده است.\n  - **اگر وظیفه تمدید نصب نشده باشد:** یک IP غیرموجود 10.0.0.10 را برای جلوگیری از مشکل بنر غیر اصلی آفیس باقی می‌گذارد.\n- این اسکریپت شامل لیست پایدارترین سرورهای KMS (16) از سراسر جهان است. فرآیند انتخاب سرور کاملاً خودکار است. اسکریپت به طور تصادفی یک سرور را انتخاب می‌کند، آزمایش می‌کند که آیا آنلاین است، اگر بله، دستور فعال‌سازی را اعمال می‌کند، اگر شکست بخورد، این فرآیند را حداکثر 3 بار برای یک محصول تکرار می‌کند. چنین افزونگی اطمینان می‌دهد که ما در هر زمان سرور KMS در حال کار را دریافت می‌کنیم.\n- اگر تاریخ سیستم شما نادرست باشد (بیش از 180 روز) و آفلاین باشید، سیستم غیرفعال می‌شود، اما با تصحیح تاریخ سیستم به طور خودکار دوباره فعال می‌شود.\n- مزیت فعال‌سازی آنلاین KMS این است که به هیچ فایل باینری KMS نیاز ندارد و سیستم را می‌توان با استفاده از برخی دستورات دستی یا فایل‌های اسکریپت بچ شفاف فعال کرد. بنابراین این برای کسانی است که به دلیل فایل‌های باینری و تشخیص آنتی‌ویروس، KMS آفلاین را دوست ندارند/مشکل دارند/اعتماد ندارند.\n  اما اگر KMS آفلاین را ترجیح می‌دهید، یک فعال‌کننده منبع باز، [KMS_VL_ALL][2] abbodi1406 را بررسی کنید.\n\n## محصولات پشتیبانی شده\n\n### ویندوز 10 / 11\n\n| نام‌های محصول                                         | EditionID                | کلید مجوز حجمی عمومی    |\n| ----------------------------------------------------- | ------------------------ | ----------------------------- |\n| Education                                             | Education                | NW6C2-QMPVW-D7KKK-3GKT6-VCFB2 |\n| Education N                                           | EducationN               | 2WH4N-8QGBV-H22JP-CT43Q-MDWWJ |\n| Enterprise                                            | Enterprise               | NPPR9-FWDCX-D2C8J-H872K-2YT43 |\n| Enterprise N                                          | EnterpriseN              | DPH2V-TTNVB-4X9Q3-TJR4H-KHJW4 |\n| Enterprise G                                          | EnterpriseG              | YYVX9-NTFWV-6MDM3-9PT4T-4M68B |\n| Enterprise G N                                        | EnterpriseGN             | 44RPN-FTY23-9VTTB-MP9BX-T84FV |\n| Enterprise LTSB 2016                                  | EnterpriseS              | DCPHK-NFMTC-H88MJ-PFHPY-QJ4BJ |\n| Enterprise LTSC 2019                                  | EnterpriseS              | M7XTQ-FN8P6-TTKYV-9D4CC-J462D |\n| Enterprise LTSC 2021                                  | EnterpriseS              | M7XTQ-FN8P6-TTKYV-9D4CC-J462D |\n| Enterprise LTSC 2024                                  | EnterpriseS              | M7XTQ-FN8P6-TTKYV-9D4CC-J462D |\n| Enterprise N LTSB 2016                                | EnterpriseSN             | QFFDN-GRT3P-VKWWX-X7T3R-8B639 |\n| Enterprise N LTSC 2019                                | EnterpriseSN             | 92NFX-8DJQP-P6BBQ-THF9C-7CG2H |\n| Enterprise N LTSC 2021                                | EnterpriseSN             | 92NFX-8DJQP-P6BBQ-THF9C-7CG2H |\n| Enterprise N LTSC 2024                                | EnterpriseSN             | 92NFX-8DJQP-P6BBQ-THF9C-7CG2H |\n| IoT Enterprise LTSC 2021 <br/> (19044.2788 و بالاتر) | IoTEnterpriseS           | KBN8V-HFGQ4-MGXVD-347P6-PDQGT |\n| IoT Enterprise LTSC 2024                              | IoTEnterpriseS           | KBN8V-HFGQ4-MGXVD-347P6-PDQGT |\n| Home                                                  | Core                     | TX9XD-98N7V-6WMQ6-BX7FG-H8Q99 |\n| Home N                                                | CoreN                    | 3KHY7-WNT83-DGQKR-F7HPR-844BM |\n| Home China                                            | CoreCountrySpecific      | PVMJN-6DFY6-9CCP6-7BKTT-D3WVR |\n| Home Single Language                                  | CoreSingleLanguage       | 7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH |\n| Lean                                                  | CloudE                   | NBTWJ-3DR69-3C4V8-C26MC-GQ9M6 |\n| Enterprise multi-session <br/> (17763 و بالاتر)      | ServerRdsh               | CPWHC-NT2C7-VYW78-DHDB2-PG3GK |\n| Enterprise multi-session <br/> (17134 و قبل)     | ServerRdsh               | 7NBT4-WGBQX-MP4H7-QXFF8-YP3KX |\n| Pro                                                   | Professional             | W269N-WFGWX-YVC9B-4J6C9-T83GX |\n| Pro N                                                 | ProfessionalN            | MH37W-N47XK-V7XM9-C7227-GCQG9 |\n| Pro Education                                         | ProfessionalEducation    | 6TP4R-GNPTD-KYYHQ-7B7DP-J447Y |\n| Pro Education N                                       | ProfessionalEducationN   | YVWGF-BXNMC-HTQYQ-CPQ99-66QFC |\n| Pro for Workstations                                  | ProfessionalWorkstation  | NRG8B-VKK3Q-CXVCJ-9G2XF-6Q84J |\n| Pro N for Workstations                                | ProfessionalWorkstationN | 9FNHH-K3HBT-3W4TD-6383H-6XYWF |\n| SE                                                    | CloudEdition             | 37D7F-N49CB-WQR8W-TBJ73-FM8RX |\n| SE N                                                  | CloudEditionN            | 6XN7V-PCBDC-BDBRH-8DQY7-G6R44 |\n\n<br/>\n\n### ویندوز سرور 2025 (LTSC)\n\n| نام‌های محصول                        | EditionID        | کلید مجوز حجمی عمومی    |\n| ------------------------------------ | ---------------- | ----------------------------- |\n| Windows Server 2025 Standard         | ServerStandard   | TVRH6-WHNXV-R9WG3-9XRFY-MY832 |\n| Windows Server 2025 Datacenter       | ServerDatacenter | D764K-2NDRG-47T6Q-P8T8W-YP6DF |\n| Windows Server 2025 Azure Core       | ServerAzureCor   | FCNV3-279Q9-BQB46-FTKXX-9HPRH |\n| Windows Server 2025 Azure Datacenter | ServerTurbine    | XGN3F-F394H-FD2MY-PP6FD-8MCRC |\n\n<br/>\n\n### ویندوز سرور 2022 (LTSC)\n\n| نام‌های محصول                        | EditionID        | کلید مجوز حجمی عمومی    |\n| ------------------------------------ | ---------------- | ----------------------------- |\n| Windows Server 2022 Datacenter       | ServerDatacenter | WX4NM-KYWYW-QJJR4-XV3QB-6VM33 |\n| Windows Server 2022 Standard         | ServerStandard   | VDYBN-27WPP-V4HQT-9VMD4-VMK7H |\n| Windows Server 2022 Azure Core       | ServerAzureCor   | 6N379-GGTMK-23C6M-XVVTC-CKFRQ |\n| Windows Server 2022 Azure Datacenter | ServerTurbine    | NTBV8-9K7Q8-V27C6-M2BTV-KHMXV |\n\n<br/>\n\n### ویندوز سرور 2019 (LTSC)\n\n| نام‌های محصول                  | EditionID        | کلید مجوز حجمی عمومی    |\n| ------------------------------ | ---------------- | ----------------------------- |\n| Windows Server 2019 Datacenter | ServerDatacenter | WMDGN-G9PQG-XVVXX-R3X43-63DFG |\n| Windows Server 2019 Standard   | ServerStandard   | N69G4-B89J2-4G8F4-WWYCC-J464C |\n| Windows Server 2019 Essentials | ServerSolution   | WVDHN-86M7X-466P6-VHXV7-YY726 |\n| Windows Server 2019 Azure Core | ServerAzureCor   | FDNH6-VW9RW-BXPJ7-4XTYG-239TB |\n| Windows Server 2019 ARM64      | ServerARM64      | GRFBW-QNDC4-6QBHG-CCK3B-2PR88 |\n\n<br/>\n\n### ویندوز سرور 2016 (LTSC)\n\n| نام‌های محصول                     | EditionID          | کلید مجوز حجمی عمومی    |\n| --------------------------------- | ------------------ | ----------------------------- |\n| Windows Server 2016 ARM64         | ServerARM64        | K9FYF-G6NCK-73M32-XMVPY-F9DRR |\n| Windows Server 2016 Datacenter    | ServerDatacenter   | CB7KF-BWN84-R7R2Y-793K2-8XDDG |\n| Windows Server 2016 Standard      | ServerStandard     | WC2BQ-8NRM3-FDDYY-2BFGV-KHKQY |\n| Windows Server 2016 Essentials    | ServerSolution     | JCKRF-N37P4-C2D82-9YXRT-4M63B |\n| Windows Server 2016 Cloud Storage | ServerCloudStorage | QN4C6-GBJD2-FB422-GHWJK-GJG2R |\n| Windows Server 2016 Azure Core    | ServerAzureCor     | VP34G-4NPPG-79JTQ-864T4-R3MQX |\n\n<br/>\n\n### ویندوز سرور 23H2 (کانال سالانه)\n\n| نام‌های محصول             | EditionID        | کلید مجوز حجمی عمومی    |\n| ------------------------- | ---------------- | ----------------------------- |\n| Windows Server Datacenter | ServerDatacenter | WX4NM-KYWYW-QJJR4-XV3QB-6VM33 |\n\n<br/>\n\n### ویندوز سرور 20H2، 2004، 1909، 1903 و 1809 (کانال نیمه سالانه)\n\n| نام‌های محصول             | EditionID            | کلید مجوز حجمی عمومی    |\n| ------------------------- | -------------------- | ----------------------------- |\n| Windows Server Datacenter | ServerDatacenterACor | 6NMRW-2C8FM-D24W7-TQWMY-CWH2D |\n| Windows Server Standard   | ServerStandardACor   | N2KJX-J94YW-TQVFB-DG9YT-724CC |\n\n<br/>\n\n### ویندوز سرور 1803 (کانال نیمه سالانه)\n\n| نام‌های محصول             | EditionID            | کلید مجوز حجمی عمومی    |\n| ------------------------- | -------------------- | ----------------------------- |\n| Windows Server Datacenter | ServerDatacenterACor | 2HXDN-KRXHB-GPYC7-YCKFJ-7FVDG |\n| Windows Server Standard   | ServerStandardACor   | PTXN8-JFHJM-4WC78-MPCBR-9W4KR |\n\n<br/>\n\n### ویندوز سرور 1709 (کانال نیمه سالانه)\n\n| نام‌های محصول             | EditionID            | کلید مجوز حجمی عمومی    |\n| ------------------------- | -------------------- | ----------------------------- |\n| Windows Server Datacenter | ServerDatacenterACor | 6Y6KB-N82V8-D8CQV-23MJW-BWTG6 |\n| Windows Server Standard   | ServerStandardACor   | DPCNP-XQFKJ-BJF7R-FRC8D-GF6G4 |\n\n<br/>\n\n### ویندوز 8.1\n\n| EditionID                    | کلید مجوز حجمی عمومی    |\n| ---------------------------- | ----------------------------- |\n| Enterprise                   | MHF9N-XY6XB-WVXMC-BTDCT-MKKG7 |\n| EnterpriseN                  | TT4HM-HN7YT-62K67-RGRQJ-JFFXW |\n| Professional                 | GCRJD-8NW9H-F2CDX-CCM8D-9D6T9 |\n| ProfessionalN                | HMCNV-VVBFX-7HMBH-CTY9B-B4FXY |\n| EmbeddedIndustryA            | VHXM3-NR6FT-RY6RT-CK882-KW2CJ |\n| EmbeddedIndustry             | NMMPB-38DD4-R2823-62W8D-VXKJB |\n| EmbeddedIndustryE            | FNFKF-PWTVT-9RC8H-32HB2-JB34X |\n| CoreARM                      | XYTND-K6QKT-K2MRH-66RTM-43JKP |\n| CoreN                        | 7B9N3-D94CG-YTVHR-QBPX3-RJP64 |\n| CoreCountrySpecific          | NCTT7-2RGK8-WMHRF-RY7YQ-JTXG3 |\n| CoreSingleLanguage           | BB6NG-PQ82V-VRDPW-8XVD2-V8P66 |\n| Core                         | M9Q9P-WNJJT-6PXPY-DWX8H-6XWKK |\n| ProfessionalWMC              | 789NJ-TQK6T-6XTH8-J39CJ-J8D3P |\n| CoreConnected                | 3PY8R-QHNP9-W7XQD-G6DPH-3J2C9 |\n| CoreConnectedN               | Q6HTR-N24GM-PMJFP-69CD8-2GXKR |\n| CoreConnectedSingleLanguage  | KF37N-VDV38-GRRTV-XH8X6-6F3BB |\n| CoreConnectedCountrySpecific | R962J-37N87-9VVK2-WJ74P-XTMHR |\n| ProfessionalStudent          | MX3RK-9HNGX-K3QKC-6PJ3F-W8D7B |\n| ProfessionalStudentN         | TNFGH-2R6PB-8XM3K-QYHX2-J4296 |\n\n<br/>\n\n### ویندوز سرور 2012 R2\n\n| EditionID          | کلید مجوز حجمی عمومی    |\n| ------------------ | ----------------------------- |\n| ServerStandard     | D2N9P-3P6X9-2R39C-7RTCD-MDVJX |\n| ServerDatacenter   | W3GGN-FT8W3-Y4M27-J84CP-Q3VJ9 |\n| ServerSolution     | KNC87-3J2TX-XB4WP-VCPJV-M4FWM |\n| ServerCloudStorage | 3NPTF-33KPT-GGBPR-YX76B-39KDD |\n\n<br/>\n\n### ویندوز 8\n\n| EditionID           | کلید مجوز حجمی عمومی    |\n| ------------------- | ----------------------------- |\n| Enterprise          | 32JNW-9KQ84-P47T8-D8GGY-CWCK7 |\n| EnterpriseN         | JMNMF-RHW7P-DMY6X-RF3DR-X2BQT |\n| Professional        | NG4HW-VH26C-733KW-K6F98-J8CK4 |\n| ProfessionalN       | XCVCF-2NXM9-723PB-MHCB7-2RYQQ |\n| EmbeddedIndustry    | RYXVT-BNQG7-VD29F-DBMRY-HT73M |\n| EmbeddedIndustryE   | NKB3R-R2F8T-3XCDP-7Q2KW-XWYQ2 |\n| CoreARM             | DXHJF-N9KQX-MFPVR-GHGQK-Y7RKV |\n| CoreN               | 8N2M2-HWPGY-7PGT9-HGDD8-GVGGY |\n| CoreCountrySpecific | 4K36P-JN4VD-GDC6V-KDT89-DYFKP |\n| CoreSingleLanguage  | 2WN2H-YGCQR-KFX6K-CD6TF-84YXQ |\n| Core                | BN3D2-R7TKB-3YPBD-8DRP2-27GG4 |\n| ProfessionalWMC     | GNBB8-YVD74-QJHX6-27H4K-8QHDG |\n\n<br/>\n\n### ویندوز سرور 2012\n\n| EditionID                | کلید مجوز حجمی عمومی    |\n| ------------------------ | ----------------------------- |\n| ServerStandard           | XC9B7-NBPP2-83J2H-RHMBY-92BT4 |\n| ServerDatacenter         | 48HP8-DN98B-MYWDG-T2DCC-8W83P |\n| ServerSolution           | HTDQM-NBMMG-KGYDT-2DTKT-J2MPV |\n| ServerMultiPointStandard | HM7DN-YVMH3-46JC3-XYTG7-CYQJJ |\n| ServerMultiPointPremium  | XNH6W-2V9GX-RGJ4K-Y8X6F-QGJ2G |\n\n<br/>\n\n### ویندوز 7\n\n| EditionID         | کلید مجوز حجمی عمومی    |\n| ----------------- | ----------------------------- |\n| Enterprise        | 33PXH-7Y6KF-2VJC9-XBBR8-HVTHH |\n| EnterpriseN       | YDRBP-3D83W-TY26F-D46B2-XCKRJ |\n| Professional      | FJ82H-XT6CR-J8D7P-XQJJ2-GPDD4 |\n| ProfessionalN     | MRPKT-YTG23-K7D7T-X2JMM-QY7MG |\n| Embedded_POSReady | YBYF6-BHCR3-JPKRB-CDW7B-F9BK4 |\n| Embedded_ThinPC   | 73KQT-CD9G6-K7TQG-66MRP-CQ22C |\n| ProfessionalE     | W82YF-2Q76Y-63HXB-FGJG9-GF7QX |\n| EnterpriseE       | C29WB-22CC8-VJ326-GHFJW-H9DH4 |\n\n<br/>\n\n### ویندوز سرور 2008 R2\n\n| EditionID              | کلید مجوز حجمی عمومی    |\n| ---------------------- | ----------------------------- |\n| ServerStandard         | YC6KT-GKW9T-YTKYR-T4X34-R7VHC |\n| ServerDatacenter       | 74YFP-3QFB3-KQT8W-PMXWJ-7M648 |\n| ServerEnterprise       | 489J6-VHDMP-X63PK-3K798-CPX3Y |\n| ServerDatacenterCore   | 74YFP-3QFB3-KQT8W-PMXWJ-7M648 |\n| ServerStandardCore     | YC6KT-GKW9T-YTKYR-T4X34-R7VHC |\n| ServerEnterpriseCore   | 489J6-VHDMP-X63PK-3K798-CPX3Y |\n| ServerEnterpriseIA64   | GT63C-RJFQ3-4GMB6-BRFB9-CB83V |\n| ServerWeb              | 6TPJF-RBVHG-WBW2R-86QPH-6RTM4 |\n| ServerHPC              | TT8MH-CG224-D3D7Q-498W2-9QCTX |\n| ServerWebCore          | 6TPJF-RBVHG-WBW2R-86QPH-6RTM4 |\n| ServerEmbeddedSolution | 736RG-XDKJK-V34PF-BHK87-J6X3K |\n\n<br/>\n\n### ویندوز ویستا\n\n| EditionID   | کلید مجوز حجمی عمومی    |\n| ----------- | ----------------------------- |\n| Enterprise  | VKK3X-68KWM-X2YGT-QR4M6-4BWMV |\n| Business    | YFKBB-PQJJV-G996G-VWGXY-2V3X8 |\n| BusinessN   | HMBQG-8H2RH-C77VX-27R82-VMQBT |\n| EnterpriseN | VTC42-BM838-43QHV-84HX6-XJXKV |\n\n<br/>\n\n### ویندوز سرور 2008\n\n| EditionID            | کلید مجوز حجمی عمومی    |\n| -------------------- | ----------------------------- |\n| ServerStandard       | TM24T-X9RMF-VWXK6-X8JC9-BFGM2 |\n| ServerDatacenter     | 7M67G-PC374-GR742-YH8V4-TCBY3 |\n| ServerEnterprise     | YQGMW-MPWTJ-34KDK-48M3W-X4Q6V |\n| ServerEnterpriseIA64 | 4DWFP-JF3DJ-B7DTH-78FJB-PDRHK |\n| ServerWeb            | WYR28-R7TFJ-3X2YQ-YCY4H-M249D |\n| ServerComputeCluster | RCTX3-KWVHP-BR6TB-RB6DM-6X7HP |\n| ServerStandardV      | W7VD6-7JFBR-RX26B-YKQ3Y-6FFFJ |\n| ServerDatacenterV    | 22XQ2-VRXRG-P8D42-K34TD-G3QQC |\n| ServerEnterpriseV    | 39BXF-X8Q23-P2WWT-38T2F-G3FPG |\n\n<br/>\n\n### آفیس 2010\n\n| EditionID        | کلید مجوز حجمی عمومی    |\n| ---------------- | ----------------------------- |\n| AccessVL         | V7Y44-9T38C-R2VJK-666HK-T7DDX |\n| ExcelVL          | H62QG-HXVKF-PP4HP-66KMR-CW9BM |\n| GrooveVL         | QYYW6-QP4CB-MBV6G-HYMCJ-4T3J4 |\n| InfoPathVL       | K96W8-67RPQ-62T9Y-J8FQJ-BT37T |\n| MondoVL          | YBJTT-JG6MD-V9Q7P-DBKXJ-38W9R |\n| OneNoteVL        | Q4Y4M-RHWJM-PY37F-MTKWH-D3XHX |\n| OutlookVL        | 7YDC2-CWM8M-RRTJC-8MDVC-X3DWQ |\n| PowerPointVL     | RC8FX-88JRY-3PF7C-X8P67-P4VTT |\n| ProjectProVL     | YGX6F-PGV49-PGW3J-9BTGG-VHKC6 |\n| ProjectStdVL     | 4HP3K-88W3F-W2K3D-6677X-F9PGB |\n| ProPlusVL        | VYBBJ-TRJPB-QFQRF-QFT4D-H3GVB |\n| PublisherVL      | BFK7F-9MYHM-V68C7-DRQ66-83YTP |\n| SmallBusBasicsVL | D6QFG-VBYP2-XQHM7-J97RH-VVRCK |\n| StandardVL       | V7QKV-4XVVR-XYV4D-F7DFM-8R6BM |\n| VisioSIVL        | D9DWC-HPYVV-JGF4P-BTWQB-WX8BJ |\n| WordVL           | HVHB3-C6FV7-KQX9W-YQG79-CRY7T |\n\n<br/>\n\n### آفیس 2013\n\n| EditionID        | کلید مجوز حجمی عمومی    |\n| ---------------- | ----------------------------- |\n| AccessVolume     | NG2JY-H4JBT-HQXYP-78QH9-4JM2D |\n| ExcelVolume      | VGPNG-Y7HQW-9RHP7-TKPV3-BG7GB |\n| GrooveVolume     | H7R7V-WPNXQ-WCYYC-76BGV-VT7GH |\n| InfoPathVolume   | DKT8B-N7VXH-D963P-Q4PHY-F8894 |\n| LyncVolume       | 2MG3G-3BNTT-3MFW9-KDQW3-TCK7R |\n| MondoRetail      | CWH2Y-NPYJW-3C7HD-BJQWB-G28JJ |\n| MondoVolume      | 42QTK-RN8M7-J3C4G-BBGYM-88CYV |\n| OneNoteVolume    | TGN6P-8MMBC-37P2F-XHXXK-P34VW |\n| OutlookVolume    | QPN8Q-BJBTJ-334K3-93TGY-2PMBT |\n| PowerPointVolume | 4NT99-8RJFH-Q2VDH-KYG2C-4RD4F |\n| ProjectProVolume | FN8TT-7WMH6-2D4X9-M337T-2342K |\n| ProjectStdVolume | 6NTH3-CW976-3G3Y2-JK3TX-8QHTT |\n| ProPlusVolume    | YC7DK-G2NP3-2QQC3-J6H88-GVGXT |\n| PublisherVolume  | PN2WF-29XG2-T9HJ7-JQPJR-FCXK4 |\n| StandardVolume   | KBKQT-2NMXY-JJWGP-M62JB-92CD4 |\n| VisioProVolume   | C2FG9-N6J68-H8BTJ-BW3QX-RM3B3 |\n| VisioStdVolume   | J484Y-4NKBF-W2HMG-DBMJC-PGWR7 |\n| WordVolume       | 6Q7VD-NX8JD-WJ2VH-88V73-4GBJ7 |\n\n<br/>\n\n### آفیس 2016\n\n| EditionID              | کلید مجوز حجمی عمومی    |\n| ---------------------- | ----------------------------- |\n| AccessVolume           | GNH9Y-D2J4T-FJHGG-QRVH7-QPFDW |\n| ExcelVolume            | 9C2PK-NWTVB-JMPW8-BFT28-7FTBF |\n| MondoRetail            | DMTCJ-KNRKX-26982-JYCKT-P7KB6 |\n| MondoVolume            | HFTND-W9MK4-8B7MJ-B6C4G-XQBR2 |\n| OneNoteVolume          | DR92N-9HTF2-97XKM-XW2WJ-XW3J6 |\n| OutlookVolume          | R69KK-NTPKF-7M3Q4-QYBHW-6MT9B |\n| PowerPointVolume       | J7MQP-HNJ4Y-WJ7YM-PFYGF-BY6C6 |\n| ProjectProVolume       | YG9NW-3K39V-2T3HJ-93F3Q-G83KT |\n| ProjectProXVolume      | WGT24-HCNMF-FQ7XH-6M8K7-DRTW9 |\n| ProjectStdVolume       | GNFHQ-F6YQM-KQDGJ-327XX-KQBVC |\n| ProjectStdXVolume      | D8NRQ-JTYM3-7J2DX-646CT-6836M |\n| ProPlusVolume          | XQNVK-8JYDB-WJ9W3-YJ8YR-WFG99 |\n| PublisherVolume        | F47MM-N3XJP-TQXJ9-BP99D-8K837 |\n| SkypeforBusinessVolume | 869NQ-FJ69K-466HW-QYCP2-DDBV6 |\n| StandardVolume         | JNRGM-WHDWX-FJJG3-K47QV-DRTFM |\n| VisioProVolume         | PD3PC-RHNGV-FXJ29-8JK7D-RJRJK |\n| VisioProXVolume        | 69WXN-MBYV6-22PQG-3WGHK-RM6XC |\n| VisioStdVolume         | 7WHWN-4T7MP-G96JF-G33KR-W8GF4 |\n| VisioStdXVolume        | NY48V-PPYYH-3F4PX-XJRKJ-W4423 |\n| WordVolume             | WXY84-JN2Q9-RBCCQ-3Q3J3-3PFJ6 |\n\n<br/>\n\n### آفیس 2019\n\n| EditionID                  | کلید مجوز حجمی عمومی    |\n| -------------------------- | ----------------------------- |\n| Access2019Volume           | 9N9PT-27V4Y-VJ2PD-YXFMF-YTFQT |\n| Excel2019Volume            | TMJWT-YYNMB-3BKTF-644FC-RVXBD |\n| Outlook2019Volume          | 7HD7K-N4PVK-BHBCQ-YWQRW-XW4VK |\n| PowerPoint2019Volume       | RRNCX-C64HY-W2MM7-MCH9G-TJHMQ |\n| ProjectPro2019Volume       | B4NPR-3FKK7-T2MBV-FRQ4W-PKD2B |\n| ProjectStd2019Volume       | C4F7P-NCP8C-6CQPT-MQHV9-JXD2M |\n| ProPlus2019Volume          | NMMKJ-6RK4F-KMJVX-8D9MJ-6MWKP |\n| Publisher2019Volume        | G2KWX-3NW6P-PY93R-JXK2T-C9Y9V |\n| SkypeforBusiness2019Volume | NCJ33-JHBBY-HTK98-MYCV8-HMKHJ |\n| Standard2019Volume         | 6NWWJ-YQWMR-QKGCB-6TMB3-9D9HK |\n| VisioPro2019Volume         | 9BGNQ-K37YR-RQHF2-38RQ3-7VCBB |\n| VisioStd2019Volume         | 7TQNQ-K3YQQ-3PFH7-CCPPM-X4VQ2 |\n| Word2019Volume             | PBX3G-NWMT6-Q7XBW-PYJGG-WXD33 |\n\n<br/>\n\n### آفیس 2021\n\n| EditionID                  | کلید مجوز حجمی عمومی    |\n| -------------------------- | ----------------------------- |\n| Access2021Volume           | WM8YG-YNGDD-4JHDC-PG3F4-FC4T4 |\n| Excel2021Volume            | NWG3X-87C9K-TC7YY-BC2G7-G6RVC |\n| Outlook2021Volume          | C9FM6-3N72F-HFJXB-TM3V9-T86R9 |\n| PowerPoint2021Volume       | TY7XF-NFRBR-KJ44C-G83KF-GX27K |\n| ProjectPro2021Volume       | FTNWT-C6WBT-8HMGF-K9PRX-QV9H8 |\n| ProjectStd2021Volume       | J2JDC-NJCYY-9RGQ4-YXWMH-T3D4T |\n| ProPlus2021Volume          | FXYTK-NJJ8C-GB6DW-3DYQT-6F7TH |\n| Publisher2021Volume        | 2MW9D-N4BXM-9VBPG-Q7W6M-KFBGQ |\n| SkypeforBusiness2021Volume | HWCXN-K3WBT-WJBKY-R8BD9-XK29P |\n| Standard2021Volume         | KDX7X-BNVR8-TXXGX-4Q7Y8-78VT3 |\n| VisioPro2021Volume         | KNH8D-FGHT4-T8RK3-CTDYJ-K2HT4 |\n| VisioStd2021Volume         | MJVNY-BYWPY-CWV6J-2RKRT-4M8QG |\n| Word2021Volume             | TN8H9-M34D3-Y64V9-TR72V-X79KV |\n\n<br/>\n\n### آفیس 2024\n\n| EditionID                    | کلید مجوز حجمی عمومی    |\n| ---------------------------- | ----------------------------- |\n| ProPlus2024Volume-Preview    | 2TDPW-NDQ7G-FMG99-DXQ7M-TX3T2 |\n| ProjectPro2024Volume-Preview | D9GTG-NP7DV-T6JP3-B6B62-JB89R |\n| VisioPro2024Volume-Preview   | YW66X-NH62M-G6YFP-B7KCT-WXGKQ |\n| Access2024Volume             | 82FTR-NCHR7-W3944-MGRHM-JMCWD |\n| Excel2024Volume              | F4DYN-89BP2-WQTWJ-GR8YC-CKGJG |\n| Outlook2024Volume            | D2F8D-N3Q3B-J28PV-X27HD-RJWB9 |\n| PowerPoint2024Volume         | CW94N-K6GJH-9CTXY-MG2VC-FYCWP |\n| ProjectPro2024Volume         | FQQ23-N4YCY-73HQ3-FM9WC-76HF4 |\n| ProjectStd2024Volume         | PD3TT-NTHQQ-VC7CY-MFXK3-G87F8 |\n| ProPlus2024Volume            | XJ2XN-FW8RK-P4HMP-DKDBV-GCVGB |\n| SkypeforBusiness2024Volume   | 4NKHF-9HBQF-Q3B6C-7YV34-F64P3 |\n| Standard2024Volume           | V28N4-JG22K-W66P8-VTMGK-H6HGR |\n| VisioPro2024Volume           | B7TN8-FJ8V3-7QYCP-HQPMV-YY89G |\n| VisioStd2024Volume           | JMMVY-XFNQC-KK4HK-9H7R3-WQQTV |\n| Word2024Volume               | MQ84N-7VYDM-FXV7C-6K7CC-VFW9J |\n\n<hr/><br/>\n\n::: tip اطلاعات\n\n- سیستم‌ها در تمام معماری‌ها (x86، x64 و arm64) پشتیبانی می‌شوند.\n- محصولات خرده‌فروشی Office C2R به محصولات حجمی مربوطه خود تبدیل می‌شوند تا فعال‌سازی KMS را فعال کنند.\n- این نسخه‌ها فقط برای حداکثر _45_ روز قابل فعال‌سازی با KMS هستند:\n  - انواع نسخه‌های خانگی ویندوز 10/11\n  - انواع نسخه‌های اصلی ویندوز 8.1، Pro با Media Center، Pro برای دانشجویان\n    این نسخه‌ها فقط برای حداکثر _30_ روز قابل فعال‌سازی با KMS هستند:\n  - انواع نسخه‌های اصلی ویندوز 8، Pro با Media Center\n\n:::\n\n<br/>\n\n## محصولات پشتیبانی نشده\n\n- آفیس MSI Retail 2010/2013، آفیس 2010 C2R Retail\n- هر نسخه ارزیابی ویندوز (یعنی 'EVAL' LTSB/C) [نمی‌تواند فراتر از دوره ارزیابی فعال شود](./evaluation_editions). می‌توانید از گزینه TSforge در MAS برای بازنشانی فعال‌سازی در هر زمان معین استفاده کنید.\n- نسخه Server Azure Datacenter (ServerTurbine) از فعال‌سازی در سیستم‌های غیر azure پشتیبانی نمی‌کند.\n- فعال‌سازی KMS در ویندوز 7 محدودیتی مربوط به OEM Activation 2.0 و نشانگر ویندوز دارد. برای اطلاعات بیشتر، به [support.microsoft.com][3] و اینجا [technet.microsoft.com/activation-of-windows-oem-computers][4] مراجعه کنید.\n- نسخه‌های ویندوزی که از فعال‌سازی KMS پشتیبانی نمی‌کنند:\n  نسخه‌های ارزیابی ویندوز\n  ویندوز 7 (Starter، HomeBasic، HomePremium، Ultimate)\n  ویندوز 10 (Cloud \"S\"، IoTEnterprise، ProfessionalSingleLanguage... و غیره)\n  ویندوز سرور (Server Foundation، Storage Server، Home Server 2011... و غیره)\n\n<br/>\n\n## چگونه کار می‌کند\n\n- **فعال‌سازی KMS چیست؟**\n  سرویس مدیریت کلید (KMS) یک روش فعال‌سازی واقعی است که توسط مایکروسافت برای مشتریان مجوز حجمی (سازمان‌ها، مدارس یا دولت‌ها) ارائه می‌شود. ماشین‌ها در آن محیط‌ها (که مشتریان KMS نامیده می‌شوند) از طریق سرور میزبان KMS محیط (کلید صدور مجوز مجاز مایکروسافت) فعال می‌شوند، به جای سرورهای فعال‌سازی مایکروسافت. طبق طراحی، دوره فعال‌سازی KMS حداکثر تا 180 روز (6 ماه) طول می‌کشد، با قابلیت تمدید و بازگرداندن دوره در هر زمان. تمدید فعال‌سازی به طور خودکار هر 7 روز اتفاق می‌افتد اگر مشتری بتواند به سرور میزبان KMS متصل شود. برای اطلاعات بیشتر، به [microsoft.com/licensing][5] و [technet.microsoft.com/kms-overview][6] مراجعه کنید.\n\n<br/>\n\n- **چگونه آن را به صورت رایگان دریافت می‌کنیم؟**\n  توسعه‌دهندگان راه‌اندازی سرور میزبان KMS را مهندسی معکوس کرده‌اند، بنابراین اکنون هر کسی می‌تواند یک سرور KMS را میزبانی کند و سیستم‌ها را بدون هیچ محدودیتی فعال کند. فعال‌کننده‌های KMS مانند KMSpico، MTK، KMS_VL_ALL و غیره، به صورت محلی یک سرور میزبان KMS شبیه‌سازی شده ایجاد می‌کنند و ویندوز و آفیس را فعال می‌کنند.\n  این سرور KMS شبیه‌سازی شده محلی نیاز به اجرای فایل‌های باینری دارد که اغلب باعث هشدارهای آنتی‌ویروس (مثبت کاذب) می‌شود.\n  روش دیگر فعال‌سازی KMS، سرور میزبان آنلاین KMS در دسترس عموم است. در این روش، سایت سرور KMS شبیه‌سازی شده را میزبانی می‌کند و هر کسی می‌تواند به سادگی از این سرور برای فعال کردن سیستم‌های خود استفاده کند، نیازی به اجرای هیچ نرم‌افزاری روی سیستم شما نیست.\n\n<br/>\n\n- **آیا فعال‌سازی آنلاین KMS ایمن است؟**\n  بله.\n  بیایید به جزئیات بپردازیم. در پروتکل KMS، رابطه‌ای بین میزبان و مشتری وجود دارد. سیستم مشتری از سیستم میزبان می‌خواهد که فعال‌سازی را اعطا کند، و سیستم میزبان در صورت واجد شرایط بودن، فعال‌سازی را اعطا می‌کند. در این فرآیند، سیستم مشتری برخی از داده‌های سیستم را به اشتراک می‌گذارد که ماهیت حساسی ندارند. طبق [technet.microsoft.com/aspx#kms-overview][7]، سیستم مشتری داده‌های زیر را با سیستم میزبان به اشتراک می‌گذارد: FQDN مشتری، CMID، مهر زمانی، وضعیت مجوز محصول، زمان انقضا و آدرس IP\n  در این اطلاعات به اشتراک گذاشته شده، بخش مهم آدرس IP شما است. در زیر برخی از مواردی که باید در مورد آن بدانید آورده شده است.\n  - به اشتراک گذاشتن IP شما هنگام آنلاین شدن یک نگرانی امنیتی نیست. شما نمی‌توانید بدون به اشتراک گذاشتن آدرس IP خود به هیچ وب‌سایتی آنلاین بروید.\n  - آدرس‌های IP لزوماً نماینده یک شخص خاص نیستند. ارائه‌دهندگان خدمات اینترنت (ISP) بیشتر از IP پویا استفاده می‌کنند، به این معنی که همان آدرس IP می‌تواند توسط افراد مختلفی استفاده شود، و یک آدرس IP پویا به طور دوره‌ای به افراد مختلف اختصاص داده می‌شود. اما یک آدرس IP ثابت به طور دائم به یک مشترک منحصر به فرد اختصاص داده می‌شود. ارائه‌دهنده خدمات اینترنت (ISP) این اطلاعات را فاش نخواهد کرد مگر اینکه دلیل قانونی برای انجام این کار وجود داشته باشد.\n  - مایکروسافت هرگز سعی نکرده است کاربران خانگی را در موارد قانونی برای استفاده از چند فعال‌سازی غیرقانونی (نه در مورد کلیدهای قانونی دزدیده شده) تحت پیگرد قانونی قرار دهد، صرفاً به این دلیل که هزینه اقدامات قانونی بسیار بیشتر از مبلغی است که با مجبور کردن چند نفر به خرید فعال‌سازی به دست می‌آید.\n  - هیچ نیروی انتظامی قرار نیست بر اساس IP از سراسر جهان بدون رضایت خود مایکروسافت اقدامی انجام دهد.\n\nدر صورتی که دیدگاه متناقضی دارید، با ما تماس بگیرید.\n\n<br/>\n\n## چگونه آنلاین KMS را حذف کنیم\n\n- در MAS، به فعال‌سازی آنلاین KMS بروید و گزینه Uninstall را اعمال کنید.\n- پس از آن، در MAS، به Troubleshoot بروید و گزینه Fix Licensing را اعمال کنید.\n- انجام شد. <br/>\n\n### بنر 'غیر اصلی' آفیس\n\n- بیلدهای Click-to-Run آفیس (از فوریه 2021) که با KMS فعال شده‌اند، وجود نام سرور KMS را در رجیستری بررسی می‌کنند.\n- اگر سرور KMS وجود نداشته باشد، بنری در برنامه‌های آفیس نمایش داده می‌شود که اطلاع می‌دهد \"آفیس به درستی مجوز ندارد\".\n- بنابراین در حالت دستی، مقدار `KeyManagementServiceName` حاوی یک آدرس IP غیرموجود 10.0.0.10 در کلیدهای رجیستری زیر نگهداری می‌شود:\n\n```\nHKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\SoftwareProtectionPlatform\nHKLM\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows NT\\CurrentVersion\\SoftwareProtectionPlatform\n```\n\n- نگهداری این کاملاً خوب است و بر فعال‌سازی ویندوز یا آفیس تأثیری نمی‌گذارد. برای توضیحات بیشتر، به [مجوز آفیس اصلی نیست](./office-license-is-not-genuine) مراجعه کنید. <br/>\n\n### آفیس Retail به Volume\n\nآفیس Retail باید قبل از اینکه بتواند با KMS فعال شود، ابتدا به Volume تبدیل شود.\nبه طور پیش‌فرض، این اسکریپت فعال‌سازی، آفیس C2R Retail را به Volume تبدیل می‌کند.\n\n- محصولات Click-to-Run پشتیبانی شده: Office 365 (Microsoft 365 Apps)، Office 2024 / 2021 / 2019 / 2016، Office 2013\n- خود Office 365 مجوزهای حجمی ندارد، بنابراین به مجوزهای Office Mondo تبدیل می‌شود\n- مجموعه Office Professional با مجوزهای Office Professional Plus تبدیل می‌شود\n- مجموعه‌های Office HomeBusiness/HomeStudent با مجوزهای Office Standard تبدیل می‌شوند\n- محصولات آفیس 2013 از همان منطق پیروی می‌کنند\n\nاگر نمی‌خواهید اسکریپت آفیس Retail را به Volume تبدیل کند، می‌توانید گزینه \"Change Edition If Needed\" را در اسکریپت خاموش کنید. <br/>\n\n### سوئیچ‌های خط فرمان\n\n- [سوئیچ‌های خط فرمان](./command_line_switches) را بررسی کنید. <br/>\n\n### راه‌اندازی پیش‌فعال‌سازی\n\n- گزینه Extract OEM را در بخش `Extras` MAS بررسی کنید اگر می‌خواهید نصب ویندوز از قبل فعال شده داشته باشید.\n- بیشتر بخوانید [پوشه OEM](./oem-folder).\n\n::: danger رفع مشکلات\n\nاگر سوالی دارید، ابتدا صفحه [**سوالات پرتکرار**](./faq) را مرور کنید — به احتمال زیاد جواب‌تان اینجاست.\n\nاگر همچنان مشکل پابرجا بود — با ما [**در ارتباط**](./troubleshoot) باشید.\n\n:::\n\n[1]: https://docs.microsoft.com/en-us/previous-versions/tn-archive/ee939272(v=technet.10)?redirectedfrom=MSDN#kms-overview\n[2]: https://github.com/abbodi1406/KMS_VL_ALL_AIO/\n[3]: https://support.microsoft.com/en-us/help/942962\n[4]: https://technet.microsoft.com/en-us/library/ff793426(v=ws.10).aspx#activation-of-windows-oem-computers\n[5]: https://www.microsoft.com/en-us/Licensing/servicecenter/Help/FAQDetails.aspx?id=201#215\n[6]: https://technet.microsoft.com/en-us/library/ee939272(v=ws.10).aspx#kms-overview\n[7]: https://technet.microsoft.com/en-us/library/ee939272(v=ws.10).aspx#kms-overview\n"
  },
  {
    "path": "docs/fa/wa/remove_malware.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'حذف بدافزار'\ndescription: 'راهنمای نحوه حذف بدافزار'\ndate: 2025-05-010\neditLink: true\n---\n\n## حذف بدافزار\n\n> راهنمای نحوه حذف بدافزار قبل از نصب ویندوز\n\n- [Malwarebytes][1] را برای اسکن بدافزار دانلود و نصب کنید.\n    - اگر بدافزار آلوده کننده فایل دارید، [از Dr.Web][2] برای اسکن آن استفاده کنید.\n- بدافزار شناسایی شده را قرنطینه کنید.\n- حذف بدافزار **آسیب وارد شده توسط بدافزار را برطرف نخواهد کرد**.\n- برای تعمیر سیستم خود، **[ویندوز را به صورت تمیز نصب کنید](./clean_install_windows)** طبق راهنما.\n\n::: tip پس از حذف بدافزار\n\n- پس از حذف بدافزار و نصب مجدد ویندوز، رمزهای عبور تمام حساب‌های خود را تغییر دهید.\n- اگر می‌خواهید نرم‌افزارها و بازی‌های امن پیدا کنید و از بدافزار جلوگیری کنید، [fmhy.net][3] را بررسی کنید.\n\n- آنتی‌مالور می‌تواند بیشتر بدافزارها را حذف کند اما نمی‌تواند تمام آسیب‌های وارد شده توسط بدافزار در سیستم را جبران کند.\n  - به عنوان مثال، بدافزار می‌تواند فایل‌های سیستمی را آلوده کند، به‌روزرسانی‌ها و امنیت ویندوز و رجیستری‌های مهم را آسیب برساند، یا حتی بدافزار را در جایی پنهان کند که آنتی‌مالور نتواند آن را پیدا کند.\n- به همین دلیل، در صورت آلودگی به بدافزار، باید [نصب تمیز سیستم](./clean_install_windows) را با استفاده از یک درایو USB قابل بوت و فرمت کردن درایو C و پارتیشن‌های EFI/System انجام دهید. (از گزینه بازنشانی استفاده نکنید، بدافزار در این صورت می‌تواند باقی بماند).\n\n:::\n\n::: danger رفع مشکلات\n\nاگر سوالی دارید، ابتدا صفحه [**سوالات پرتکرار**](./faq) را مرور کنید — به احتمال زیاد جواب‌تان اینجاست.\nاگر همچنان مشکل پابرجا بود — با ما [**در ارتباط**](./troubleshoot) باشید.\n\n:::\n\n\n[1]: https://downloads.malwarebytes.com/file/mb5-windows\n[2]: https://free.drweb.com/download+cureit/gr\n[3]: https://fmhy.net/beginners-guide\n"
  },
  {
    "path": "docs/fa/wa/troubleshoot.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'رفع مشکلات'\ndescription: 'مشکلات خود را با ما در میان بگذارید، در سریع‌ترین زمان ممکن پاسخگو خواهیم بود'\ndate: 2024-02-02\neditLink: true\nhead:\n  - - meta\n    - name: description\n      content: رفع مشکل، سوالات، ابهام، گفتگوی آزاد، ایراد\n---\n\n## رفع مشکلات\n\nاگر سوالی دارید، ابتدا صفحه [سوالات پرتکرار](./faq) را مرور کنید — به احتمال زیاد جواب‌تان اینجاست.  \nهمچنان نیاز به راهنمایی دارید؟ در هر مرحله از پروسه اگر با مشکلی برخورد کردید، باخیال راحت با ما در [بحث و گفتگوهای گیت‌هاب][1] درمیان بگذارید، و یا مستقیما به من [ایمیل بزنید][2].\n\n\n**همچنين می‌توانید** در [دیسکورد][3] با ما در ارتباط باشید.  \n> - ساخت اکانت نیاز نیست\n> - متن خطا به همراه اسکرین‌شات ارسال شود.\n\n\n[1]: https://github.com/NiREvil/windows-activation/discussions\n[2]: mailto:dianashariati.cl@gmail.com\n[3]: https://discord.gg/yJ8phEmbw9\n"
  },
  {
    "path": "docs/fa/wa/tsforge.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'متود فعال‌سازی TSforge'\ndescription: 'مقایسه روش‌های فعال‌سازی برای شرکت مایکروسافت مانند ویندوز و آفیس.'\ndate: 2025-04-06\neditLink: true\nhead:\n  - - meta\n    - name: keywords\n      content: فعال‌سازی ویندوز, آفیس 2013, ویندوز 10, ویندوز 11, hwid یا kms, kms, hwid, tsforge\n---\n\n# فعال‌سازی TSforge\n\n### به سند `tsforge` خوش آمدید. این سند شامل جزئیاتی در مورد روش فعال‌سازی TSForge است.\n\n::: tip یادداشت‌ها\n\n> چگونه از آن استفاده کنیم؟\n> لطفاً دستورالعمل‌ها را در [مقدمه](./index#مرحله-۲) بیابید\n\n:::\n\n## بررسی اجمالی\n-   این فعال‌سازی تا زمان نصب مجدد ویندوز یا یک ارتقاء عمده ویژگی (با ارتقاءهای کوچک فعال‌سازی یا به‌روزرسانی‌های تجمعی ماهانه اشتباه نشود) دائمی است.\n-   این روش فعال‌سازی **هیچ یک از اجزای ویندوز را تغییر نمی‌دهد و هیچ فایل جدیدی نصب نمی‌کند.**\n-   پس از فعال شدن سیستم، سخت‌افزار را می‌توان به طور دلخواه بدون ایجاد غیرفعال‌سازی تغییر داد.\n-   برای ZeroCID یا KMS4k نیازی به اینترنت نیست، اما برای StaticCID لازم است. اسکریپت از روش StaticCID از ویندوز 10 20H1 (19041) و نسخه‌های جدیدتر استفاده می‌کند.\n-   این روش فعال‌سازی می‌تواند هر یک از محصولات زیر را در صورت وجود مجوز تلفنی و مدیریت صدور مجوز توسط SPP سیستم فعال کند. به عنوان مثال،\n    *   ویندوز ویستا و بالاتر\n    *   ویندوز سرور 2008 و بالاتر\n    *   آفیس 2013 و بالاتر (نیاز به ویندوز 8 یا بالاتر دارد)\n    *   افزونه‌های ویندوز (ESU، APPXLOB و غیره)\n    *   میزبان‌های KMS ویندوز و آفیس (CSVLK)\n-   اعتبارسنجی آنلاین (WAT) در ویندوز 7 دور زده می‌شود.\n-   علاوه بر فعال‌سازی دائمی میزبان‌های KMS ویندوز و آفیس، سرور KMS را با 25 کلاینت (مورد نیاز برای فعال‌سازی کلاینت KMS) برای 30 روز (حداکثر) شارژ می‌کند.\n-\tعلاوه بر فعال‌سازی، می‌تواند شمارنده rearm و دوره ارزیابی را بازنشانی کند، حالت دستکاری را پاک کند و قفل کلید ارزیابی را حذف کند.\n\n\n## چگونه کار می‌کند؟\n\n### ZeroCID\n\n**فرآیند در ویندوز ویستا و 7**\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/bda35f60-d1ba-4318-a65e-6843fdd11e41\" width=\"540px\">\n</p>\n\n**فرآیند در ویندوز 8 و بالاتر**\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/770e6df6-74bc-40e0-b790-6f8e9273d000\" width=\"540px\">\n</p><\n\n- فعال‌سازی ویندوز توسط یک زیرسیستم به نام پلتفرم حفاظت از نرم‌افزار (SPP) مدیریت می‌شود.\n- SPP اطلاعات مربوط به وضعیت فعال‌سازی را در فایل‌هایی به نام \"فروشگاه فیزیکی\" و \"فروشگاه توکن\" ذخیره می‌کند.\n- محتویات فروشگاه فیزیکی به صورت رمزنگاری شده محافظت و یکپارچگی آن توسط SPPSvc/SPSys بررسی می‌شود و از تغییر آسان آن توسط کاربران جلوگیری می‌کند.\n- فروشگاه فیزیکی معمولاً در این مکان‌ها یافت می‌شود:\n  - ویندوز ویستا - `C:\\Windows\\System32\\7B296FB0-376B-497e-B012-9C450E1B7327-2P-0.C7483456-A289-439d-8115-601632D005A0` و `C:\\Windows\\System32\\7B296FB0-376B-497e-B012-9C450E1B7327-2P-1.C7483456-A289-439d-8115-601632D005A0`\n  - ویندوز 7 - `C:\\Windows\\System32\\7B296FB0-376B-497e-B012-9C450E1B7327-5P-0.C7483456-A289-439d-8115-601632D005A0` و `C:\\Windows\\System32\\7B296FB0-376B-497e-B012-9C450E1B7327-5P-1.C7483456-A289-439d-8115-601632D005A0`\n  - ویندوز 8 - `C:\\Windows\\System32\\spp\\store\\data.dat`\n  - ویندوز 8.1/10/11 - `C:\\Windows\\System32\\spp\\store\\2.0\\data.dat`\n- فروشگاه توکن معمولاً در این مکان‌ها یافت می‌شود:\n  - ویندوز ویستا - `C:\\Windows\\ServiceProfiles\\NetworkService\\AppData\\Roaming\\Microsoft\\SoftwareLicensing\\tokens.dat`\n  - ویندوز 7 - `C:\\Windows\\ServiceProfiles\\NetworkService\\AppData\\Roaming\\Microsoft\\SoftwareProtectionPlatform\\tokens.dat`\n  - ویندوز 8 - `C:\\Windows\\System32\\spp\\store\\tokens.dat`\n  - ویندوز 8.1/10/11 - `C:\\Windows\\System32\\spp\\store\\2.0\\tokens.dat`\n- در نصب کلید محصول معمولی و فعال‌سازی تلفنی، داده‌های کش مرتبط در فروشگاه فیزیکی و فروشگاه توکن نوشته می‌شود. داده‌های فعال‌سازی تلفنی مذکور قبل از نوشته شدن، [به صورت رمزنگاری شده][1] در برابر شناسه نصب بررسی می‌شود. هنگامی که SPP دوباره راه‌اندازی می‌شود، فقط یک بررسی بسیار ابتدایی در برابر شناسه سخت‌افزار فعلی انجام می‌شود.\n- با نوشتن مستقیم داده‌های کش جعلی در فروشگاه فیزیکی و فروشگاه توکن، می‌توانیم هر دو بررسی را دور بزنیم و باعث شویم SPP باور کند که یک کلید محصول و/یا شناسه تأیید جعلی نصب کرده است.\n- برای دور زدن بررسی‌ها برای تغییرات سخت‌افزاری، یک [شناسه سخت‌افزار](./Hwid#hardware-id) با آستانه 0 در این داده‌های جعلی گنجانده شده است.\n- در ویندوز 7، داده‌های کلید محصول جعلی حاوی مقداری به نام \"شناسه منحصر به فرد کلید\" نیست. این مقدار برای WAT و فعال‌سازی آنلاین مورد نیاز است، بنابراین حذف آن باعث می‌شود هر دو غیرفعال شوند و از ایجاد غیرفعال‌سازی توسط WAT جلوگیری می‌کند.\n- وجود داده‌های معتبر کلید محصول و شناسه تأیید باعث می‌شود SPP محصول مشخص شده را تا زمانی که قادر به فعال‌سازی تلفنی باشد، فعال کند.\n- این فرآیند به عنوان گزینه ZeroCID در [TSforge][2] پیاده‌سازی شده است\n\n### StaticCID\n\n- در [ویندوز 11 بیلد 27802][3]، مایکروسافت یک باگ را معرفی کرد که باعث می‌شود اعتبارسنجی کش شناسه تأیید همیشه با شکست مواجه شود و اعتبارسنجی را مستقیماً از شناسه تأیید ذخیره شده هر بار که وضعیت مجوز بررسی می‌شود، مجبور کند.\n- به همین دلیل، ZeroCID در هیچ یک از بیلدهای Canary Insider ویندوز 11/سرور 2025 که پس از آن منتشر شده‌اند، یا هر بیلد خرده‌فروشی/پیش‌نمایش انتشار ویندوز 11/سرور 2025 جدیدتر از 26100.4188 کار نمی‌کند.\n- برای دور زدن این باگ، از TSforge برای تنظیم شناسه نصب فعلی به شناسه یک کلید شناخته شده که می‌توان از آن برای تولید شناسه‌های تأیید معتبر استفاده کرد، استفاده می‌شود.\n- سپس شناسه‌های تأیید از طریق اینترنت با استفاده از [یک کلاینت][4] برای API [VAMT][5] به دست می‌آیند.\n- واریز این CID باعث فعال‌سازی می‌شود، زیرا CID با IID مطابقت دارد و SPP هرگز بررسی نمی‌کند که آیا IID با کلید محصول نصب شده مطابقت دارد یا خیر.\n- کلیدهای محصول زیر در StaticCID استفاده می‌شوند:\n  - مجوزهای RTM - `744NM-C4FXY-YGM8B-7MVJC-BBFB9`\n  - مجوزهای آزمایشی - `PCPHN-JH4DV-KW84V-JTWT3-VXHBC`\n\n### KMS4k\n\n- در KMS4k، داده‌های پاسخ سرور KMS کش شده جعلی در فروشگاه معتبر نوشته می‌شود.\n- برخلاف شبیه‌سازهای KMS معمولی، این روش می‌تواند به طور دلخواه انقضای فعال‌سازی را تا حداکثر 2147483640 (2^31 - 8) دقیقه یا 4083 سال تنظیم کند.\n- این امکان فعال‌سازی KMS آفلاین را فراهم می‌کند که برای همه اهداف عملی عملاً بی‌نهایت است.\n\n<br/>\n\n## محصولات پشتیبانی شده\n\nاین روش فعال‌سازی می‌تواند هر یک از محصولات زیر را در صورت وجود مجوز تلفنی و مدیریت صدور مجوز توسط SPP سیستم فعال کند.\n\n- **ویندوز**\n  - ویندوز ویستا\n  - ویندوز 7\n  - ویندوز 8\n  - ویندوز 8.1\n  - ویندوز 10\n  - ویندوز 11 (از 26100.4188 از ZeroCID پشتیبانی نمی‌کند)\n- **ویندوز سرور**\n  - ویندوز سرور 2008\n  - ویندوز سرور 2008 R2\n  - ویندوز سرور 2012\n  - ویندوز سرور 2012 R2\n  - ویندوز سرور 2016\n  - ویندوز سرور 2019\n  - ویندوز سرور 2022\n  - ویندوز سرور 2025 (از 26100.4188 از ZeroCID پشتیبانی نمی‌کند)\n- **مایکروسافت آفیس** (نیاز به ویندوز 8 یا بالاتر دارد) (همچنین از نسخه UWP آفیس پشتیبانی می‌کند)\n  - آفیس 2013\n  - آفیس 2016\n  - آفیس 2019\n  - آفیس 2021\n  - آفیس 2024\n- **افزونه‌های ویندوز**\n  - **به‌روزرسانی‌های امنیتی تمدید شده تجاری (ESU)**\n    - **ویندوز 7** (Enterprise، Professional، Ultimate و انواع E/N آنها)\n    - **Windows Embedded POSReady 7** (Embedded)\n    - **Windows Embedded Standard 7** (Embedded)\n    - **ویندوز سرور 2008** (ServerDatacenter، ServerStandard، ServerEnterprise و انواع V/Core/VCore آنها)\n    - **ویندوز سرور 2008 R2** (ServerDatacenter، ServerStandard، ServerEnterprise و انواع V/Core/VCore آنها)\n    - **ویندوز سرور 2012** (ServerDatacenter، ServerStandard و انواع Core آنها)\n\t- **ویندوز 8.1** (Enterprise، Professional، EmbeddedIndustry و انواع E/N آنها)\n    - **ویندوز سرور 2012 R2** (ServerDatacenter، ServerStandard و انواع Core آنها)\n    - **ویندوز 10** (Education، Enterprise، IoTEnterprise، Professional، ProfessionalEducation، ProfessionalWorkstation و انواع N آنها)\n  - **8/8.1 APPXLOB**\n\t- کلاینت\n\t- صنعت تعبیه‌شده\n\t- استاندارد تعبیه‌شده\n\t- سرور 2012\n  - **سایر** (می‌توان از گزینه دستی انتخاب کرد)\n    - OCUR\n- **میزبان‌های KMS** (CSVLK)\n  - ویندوز ویستا و بالاتر\n  - ویندوز سرور 2008 و بالاتر\n  - آفیس 2010 و بالاتر\n\n::: tip توجه\n\n> تمام معماری‌ها (x86، x64 و arm64) پشتیبانی می‌شوند.\n> برای ویندوز، اولویت کلید اسکریپت این است: OEM_DM > OEM_COA_SLP > OEM_COA_NSLP > MAK > RETAIL\n> برای آفیس، اولویت کلید اسکریپت این است: OEM_COA_NSLP > MAK > RETAIL\n\n:::\n\n\n\n### کلیدها\n\nفعال‌سازی TSforge کلیدهایی برای محصولات مبتنی بر PKey2009 تولید می‌کند و داده‌های کلید محصول را برای محصولات مبتنی بر PKey2005 تنظیم می‌کند.\nبا این حال، نمی‌تواند کلیدهای ویندوز ویستا و ویندوز سرور 2008 را مدیریت کند. به همین دلیل فقط کلیدهای این محصولات در اینجا لیست شده‌اند.\n\nکلیدها برای این نسخه‌ها در دسترس نیستند، اما از آنجایی که خود نسخه‌ها به صورت عمومی در دسترس نیستند، مهم نیست.\n\n```reg\na797d61e-1475-470b-86c8-f737a72c188d   StarterN\n5e9f548a-c8a9-44e6-a6c2-3f8d0a7a99dd   ServerComputeClusterV\n```\n\n### ویندوز ویستا\n| نسخه      | کلید عمومی                   | نوع کلید |\n|--------------|-------------------------------|----------|\n| Business     | 4D2XH-PRBMM-8Q22B-K8BM3-MRW4W | Retail   |\n| BusinessN    | 76884-QXFY2-6Q2WX-2QTQ8-QXX44 | Retail   |\n| Enterprise   | YQPQV-RW8R3-XMPFG-RXG9R-JGTVF | Retail   |\n| EnterpriseN  | Q7J9R-G63R4-BFMHF-FWM9R-RWDMV | Retail   |\n| HomeBasic    | RCG7P-TX42D-HM8FM-TCFCW-3V4VD | Retail   |\n| HomeBasicN   | HY2VV-XC6FF-MD6WV-FPYBQ-GFJBT | Retail   |\n| HomePremium  | X9HTF-MKJQQ-XK376-TJ7T4-76PKF | Retail   |\n| HomePremiumN | KJ6TP-PF9W2-23T3Q-XTV7M-PXDT2 | Retail   |\n| Starter      | X9PYV-YBQRV-9BXWV-TQDMK-QDWK4 | Retail   |\n| Ultimate     | VMCB9-FDRV6-6CDQM-RV23K-RP8F7 | Retail   |\n| UltimateN    | CVX38-P27B4-2X8BT-RXD4J-V7CKX | Retail   |\n\n<br/>\n\n### ویندوز سرور 2008\n| نسخه                        | کلید عمومی                   | نوع کلید   |\n|--------------------------------|-------------------------------|------------|\n| ServerComputeCluster           | 24FV9-H7JW8-C8Q6X-BQKMK-K977J | Retail     |\n| ServerDatacenter               | 6QBHY-DXTPJ-T9W3P-DTJXX-4VQMB | Retail     |\n| ServerDatacenterV              | 83TWG-TD3TC-HRDP2-K93FJ-Y34YC | OEM:NONSLP |\n| ServerEnterprise               | MRB7H-QJRHG-FXTBR-B2Q2M-8WMTJ | Retail     |\n| ServerEnterpriseIA64           | H4VB6-QPRWH-VDCYM-996P8-MHKFY | OEM:NONSLP |\n| ServerEnterpriseV              | H8H7M-HDPQT-PJHQF-M7B83-9CVGV | Retail     |\n| ServerHomePremium              | RGBMC-PQBVF-94Q9K-HD63B-VY6MP | Retail     |\n| ServerHomeStandard             | 6C8KR-MD3QK-9GWFW-44CY2-W9CBM | Retail     |\n| ServerMediumBusinessManagement | 7XRBY-6MP2K-VQPT8-F37JV-YYQ83 | Retail     |\n| ServerMediumBusinessMessaging  | 6PDTD-JK48J-662TF-8J2QV-R4CRB | Retail     |\n| ServerMediumBusinessSecurity   | D694V-CMWKH-PY92X-PFQKQ-JCB69 | Retail     |\n| ServerSBSPremium               | MRDK3-YYQF3-88BQJ-D6FJG-69YJY | Retail     |\n| ServerSBSPrime                 | 2KB23-GJRBD-W3T9C-6CH2W-39B7V | Retail     |\n| ServerSBSStandard              | H4XDD-B27GY-667P6-XWVV7-GYG8J | Retail     |\n| ServerStandard                 | 8YVM4-YQBDH-7WDQM-R27WR-WVCWG | Retail     |\n| ServerStandardV                | H9MW3-6V7GK-94P9G-7FTPJ-VKCKF | Retail     |\n| ServerStorageEnterprise        | 2264C-TD9T8-P8HPW-CC9GH-MHM2V | Retail     |\n| ServerStorageExpress           | RCYMT-YX342-8T6YY-XYHYC-3DD7X | Retail     |\n| ServerStorageStandard          | FKFT2-WXYY9-WBPY7-6YMY4-X48JF | Retail     |\n| ServerStorageWorkgroup         | 8X9J7-HCJ7J-3WDJT-QM7D8-464YH | Retail     |\n| ServerWeb                      | BGT39-9FYH7-X2CYD-T628F-QPQPW | Retail     |\n| ServerWinSB                    | HPH76-FHFPP-DRW9D-7W2V4-HWGKT | Retail     |\n| ServerWinSBV                   | 2V8G6-KRXYR-MMGXJ-6RWM3-GXCCG | Retail     |\n\n<br/>\n\n### ویندوز سرور 2008 ESU\n| نسخه ESU   | کلید مسدود شده از اینترنت | نوع کلید   |\n|---------------|---------------------------------------|------------|\n| Server-ESU-PA | 9FPV7-MWGT8-7XPDF-JC23W-WT7TW         | Volume:MAK |\n\n<br/>\n\n### میزبان KMS - ویندوز ویستا\n| نسخه‌ها                                  | کلیدهای مسدود شده از اینترنت | نوع کلید     |\n|-------------------------------------------|----------------------------------------|--------------|\n| Business، Enterprise و نسخه‌های N آنها | TWVG3-9Q4P8-W9XJF-Y76FJ-DWQ4R          | Volume:CSVLK |\n\n<br/>\n\n### میزبان KMS - ویندوز سرور 2008\n| نسخه‌ها                                                                                                                                            | کلیدهای مسدود شده از اینترنت | نوع کلید     |\n|-----------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------|--------------|\n| ServerComputeCluster، ServerDatacenter، <br /> ServerEnterprise، ServerEnterpriseIA64، <br /> ServerStandard، ServerWeb <br /> و نسخه‌های V آنها | BHC4Q-6D7B7-QMVH7-4MKQH-Y9VK7          | Volume:CSVLK |\n| ServerComputeCluster، ServerEnterprise، <br /> ServerStandard، ServerWeb <br /> و نسخه‌های V آنها                                                | PVGKG-2R7XQ-7WTFD-FXTJR-DQBQ3          | Volume:CSVLK |\n| ServerComputeCluster، ServerWeb                                                                                                                     | KH4PC-KJFX6-XFVHQ-GDK2G-JCJY9          | Volume:CSVLK |\n\n<hr/><br/>\n\n::: info محصولات پشتیبانی نشده\n\n> **محصولات پشتیبانی نشده**\n> این روش فعال‌سازی در صورتی که مجوز تلفنی در دسترس نباشد یا صدور مجوز توسط SPP سیستم مدیریت نشود، کار نمی‌کند.\n\n- **آفیس در ویندوز 7**\n  - صدور مجوز آن مبتنی بر OSPP است، نه SPP.\n  - می‌توانید از گزینه Ohook در MAS برای فعال کردن آن استفاده کنید.\n- **آفیس 2010**\n  - صدور مجوز آن مبتنی بر OSPP است، نه SPP.\n  - می‌توانید از گزینه Ohook در MAS برای فعال کردن آن استفاده کنید.\n- **آفیس 365**\n  - مجوز فعال‌سازی تلفنی در دسترس نیست. گزینه TSforge به جای آن مجوز Mondo 2016 (از نظر ویژگی معادل 365) را برای فعال کردن آفیس نصب می‌کند.\n  - می‌توانید از گزینه Ohook در MAS برای فعال کردن آن استفاده کنید.\n- **نسخه‌های ارزیابی ویندوز** (ویندوز 8 / سرور 2012 و بالاتر)\n  - مجوز فعال‌سازی دائمی در دسترس نیست. گزینه TSforge به جای آن دوره ارزیابی را بازنشانی می‌کند.\n- **نسخه‌های ارزیابی ویندوز** (ویندوز 7 / سرور 2008 R2)\n  - سرویس WLMS از سرویس SPPSVC محافظت می‌کند و از توقف آن جلوگیری می‌کند. اگرچه مجوز فعال‌سازی دائمی در دسترس است، اما به طور رسمی پشتیبانی نمی‌شود.\n- **نسخه Server Azure Datacenter (ServerTurbine)**\n  - از فعال‌سازی در سیستم‌های غیر azure پشتیبانی نمی‌کند.\n- **ویندوز 10 Consumer ESU (1 سال)**\n  - صدور مجوز آن مبتنی بر CLIP است، نه SPP.\n  - می‌توانید ESU تجاری را برای 3 سال در نسخه‌های Pro و بالاتر با TSforge فعال کنید.\n\n:::\n\n::: danger توجه\n\n**آفیس مبتنی بر OSPP:** فروشگاه فیزیکی در رجیستری در قالبی ذخیره می‌شود که هنوز مهندسی معکوس نشده است.\n\n:::\n\n\n## ZeroCID / KMS4k / AVMA4k\n\n- TSforge در MAS گنجانده شده است و همچنین [انتشار مستقل][6] خود را دارد.\n- TSforge شامل روش‌های فعال‌سازی ZeroCID / KMS4k / AVMA4k است.\n- AVMA4k یک روش اثبات مفهوم با محدودیت‌های فراوان است، بنابراین استفاده از آن را توصیه نمی‌کنیم.\n- MAS فقط از روش ZeroCID و KMS4k استفاده می‌کند و شامل AVMA4k نمی‌شود، زیرا ZeroCID قبلاً می‌تواند تمام محصولات موجود را به طور دائم فعال کند.\n\n| روش‌ها | اطلاعات                                                                                                 |\n|---------|------------------------------------------------------------------------------------------------------|\n| ZeroCID | فعال‌سازی دائمی آفلاین / تا زمان نصب مجدد/ارتقاء ویژگی                                       |\n| KMS4k   | فعال‌سازی KMS آفلاین برای بیش از 4000 سال / تا زمان نصب مجدد/ارتقاء ویژگی                         |\n| AVMA4k  | فعال‌سازی AVMA آفلاین برای بیش از 4000 سال (فقط سرور 2012 R2 به بعد) / تا زمان نصب مجدد/ارتقاء ویژگی |\n\n<br/>\n\n----\n## ویندوز ESU\n\n- مایکروسافت [به‌روزرسانی‌های امنیتی تمدید شده][7] (ESU) پولی را برای چندین نسخه ویندوز پس از پایان چرخه عمر محصولشان ارائه می‌دهد.\n- می‌توانید مجوز Windows ESU / Premium Assurance را با استفاده از گزینه TSforge در MAS فعال کنید.\n\n| نسخه ویندوز              | لیست نسخه‌های پشتیبانی شده                                                                                                                           | دوره ESU                                                                                                                                                                                                                                                   | حداقل به‌روزرسانی‌های مورد نیاز                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |\n|------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ویندوز سرور 2008          | ServerDatacenter، ServerStandard، ServerEnterprise <br /> و انواع V/Core/VCore آنها                                                         | [6 سال](https://web.archive.org/web/20170331081347/https://blogs.technet.microsoft.com/hybridcloud/2017/03/01/now-available-windows-server-premium-assurance-and-sql-server-premium-assurance/) با مجوز Premium Assurance <br /> ژانویه 2020 تا ژانویه 2026 | ویندوز سرور 2008 SP2 <br /> + <br /> KB4493730 [x64](https://catalog.s.download.windowsupdate.com/d/msdownload/update/software/secu/2019/04/windows6.0-kb4493730-x64_5cb91f4e9000383f061b80f88feffdf228c2443c.msu)-[x86](https://catalog.s.download.windowsupdate.com/d/msdownload/update/software/secu/2019/04/windows6.0-kb4493730-x86_ab4368f19db796680ff445a7769886c4cdc009a0.msu) <br /> KB4474419 [x64](https://catalog.s.download.windowsupdate.com/d/msdownload/update/software/secu/2019/09/windows6.0-kb4474419-v4-x64_09cb148f6ef10779d7352b7269d66a7f23019207.msu)-[x86](https://catalog.s.download.windowsupdate.com/d/msdownload/update/software/secu/2019/09/windows6.0-kb4474419-v4-x86_fd568cb47870cd8ed5ba10e1dd3c49061894030e.msu) <br /> **راه‌اندازی مجدد**  <br /> KB5016891 [x64](https://catalog.s.download.windowsupdate.com/c/msdownload/update/software/secu/2022/08/windows6.0-kb5016891-x64_1b5f7e1030f5d229a7618c09f1617fd1ed00e90f.msu)-[x86](https://catalog.s.download.windowsupdate.com/c/msdownload/update/software/secu/2022/08/windows6.0-kb5016891-x86_cf3aef17f12a6dc85dd20a06e5ba9f4c882e286f.msu)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |\n| ویندوز 7                    | Enterprise، Professional، Ultimate <br /> و انواع E/N آنها                                                                                  | [3 سال](https://learn.microsoft.com/en-us/lifecycle/products/windows-7) <br /> ژانویه 2020 تا ژانویه 2023 <br /><br /> ESU 4-6 ساله به طور رسمی پشتیبانی نمی‌شود، <br /> اما می‌توانید به‌روزرسانی‌های سرور 2008 R2 x64 را تا ژانویه 2026 به صورت دستی نصب کنید                  | ویندوز 7 SP1 <br /> + <br /> KB4490628 [x64](https://catalog.s.download.windowsupdate.com/c/msdownload/update/software/secu/2019/03/windows6.1-kb4490628-x64_d3de52d6987f7c8bdc2c015dca69eac96047c76e.msu)-[x86](https://catalog.s.download.windowsupdate.com/c/msdownload/update/software/secu/2019/03/windows6.1-kb4490628-x86_3cdb3df55b9cd7ef7fcb24fc4e237ea287ad0992.msu) <br /> KB4474419-v3 [x64](https://catalog.s.download.windowsupdate.com/c/msdownload/update/software/secu/2019/09/windows6.1-kb4474419-v3-x64_b5614c6cea5cb4e198717789633dca16308ef79c.msu)-[x86](https://catalog.s.download.windowsupdate.com/c/msdownload/update/software/secu/2019/09/windows6.1-kb4474419-v3-x86_0f687d50402790f340087c576886501b3223bec6.msu) <br /> **راه‌اندازی مجدد**  <br /> KB5039339 [x64](https://catalog.s.download.windowsupdate.com/d/msdownload/update/software/secu/2024/06/windows6.1-kb5039339-x64_f62846508976a6e5325ab1dca0783f9b3a60a564.msu)-[x86](https://catalog.s.download.windowsupdate.com/d/msdownload/update/software/secu/2024/06/windows6.1-kb5039339-x86_fa942048bba2a167242451236f9daf00940588aa.msu) <br /> KB4575903 [x64](https://catalog.s.download.windowsupdate.com/d/msdownload/update/software/secu/2020/07/windows6.1-kb4575903-x64_b4d5cf045a03034201ff108c2802fa6ac79459a1.msu)-[x86](https://catalog.s.download.windowsupdate.com/d/msdownload/update/software/secu/2020/07/windows6.1-kb4575903-x86_5905c774f806205b5d25b04523bb716e1966306d.msu) <br /> KB3138612 [x64](https://catalog.s.download.windowsupdate.com/d/msdownload/update/software/updt/2016/02/windows6.1-kb3138612-x64_f7b1de8ea7cf8faf57b0138c4068d2e899e2b266.msu)-[x86](https://catalog.s.download.windowsupdate.com/d/msdownload/update/software/updt/2016/02/windows6.1-kb3138612-x86_6e90531daffc13bc4e92ecea890e501e807c621f.msu) <br /> KB5016892 [x64](https://catalog.s.download.windowsupdate.com/c/msdownload/update/software/secu/2022/08/windows6.1-kb5016892-x64_52b68ba8744cb47ddfcecd19238087625e1a5fbd.msu)-[x86](https://catalog.s.download.windowsupdate.com/c/msdownload/update/software/secu/2022/08/windows6.1-kb5016892-x86_ffb5b83149833e7f969f69e4f152fee5c1fdbc68.msu) |\n| Windows 7 Embedded POSReady7 | Embedded                                                                                                                                          | [3 سال](https://learn.microsoft.com/en-us/lifecycle/products/windows-embedded-posready-7) <br /> اکتبر 2021 تا اکتبر 2024                                                                                                                                      | همانند ویندوز 7 منهای KB5016892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |\n| Windows 7 Embedded Standard  | Embedded                                                                                                                                          | [3 سال](https://learn.microsoft.com/en-us/lifecycle/products/windows-embedded-standard-7) <br /> اکتبر 2020 تا اکتبر 2023                                                                                                                                      | همانند ویندوز 7 منهای KB5016892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |\n| ویندوز سرور 2008 R2       | ServerDatacenter، ServerStandard، ServerEnterprise <br /> و انواع V/Core/VCore آنها                                                         | [6 سال](https://web.archive.org/web/20170331081347/https://blogs.technet.microsoft.com/hybridcloud/2017/03/01/now-available-windows-server-premium-assurance-and-sql-server-premium-assurance/) با مجوز Premium Assurance <br /> ژانویه 2020 تا ژانویه 2026 | همانند ویندوز 7                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |\n| ویندوز سرور 2012          | ServerDatacenter، ServerStandard و انواع Core آنها                                                                                          | [3 سال](https://learn.microsoft.com/en-us/lifecycle/products/windows-server-2012) <br /> اکتبر 2023 تا اکتبر 2026                                                                                                                                              | KB5017221 [x64](https://catalog.s.download.windowsupdate.com/c/msdownload/update/software/secu/2022/08/windows8-rt-kb5017221-x64_d01e9b9b910f5f1e374bc1b89a8d00c1a97e215f.msu) <br /> KB2937636 [x64](https://catalog.s.download.windowsupdate.com/c/msdownload/update/software/crup/2014/07/windows8-rt-kb2937636-x64_29e0b587c8f09bcf635c1b79d09c00eef33113ec.msu)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |\n| ویندوز 8.1                  | Enterprise، Professional، EmbeddedIndustry و انواع E/N آنها                                                                                 | ESU به طور رسمی پشتیبانی نمی‌شود، <br /> اما می‌توانید به‌روزرسانی‌های سرور 2012 R2 (برای x64) را تا ژانویه 2024، <br /> و به‌روزرسانی‌های Embedded 8.1 (برای x86) را تا ژوئیه 2023 به صورت دستی نصب کنید                                                                              | بیلد 9600.17415 <br /> + <br /> KB3021910 [x64](https://catalog.s.download.windowsupdate.com/c/msdownload/update/software/updt/2015/04/windows8.1-kb3021910-x64_e291c0c339586e79c36ebfc0211678df91656c3d.msu)-[x86](https://catalog.s.download.windowsupdate.com/c/msdownload/update/software/updt/2015/04/windows8.1-kb3021910-x86_7e70173bec00c3d4fe3b0b8cba17b095b4ed2d20.msu) <br /> KB3172614 [x64](https://catalog.s.download.windowsupdate.com/c/msdownload/update/software/updt/2016/07/windows8.1-kb3172614-x64_e41365e643b98ab745c21dba17d1d3b6bb73cfcc.msu)-[x86](https://catalog.s.download.windowsupdate.com/c/msdownload/update/software/updt/2016/07/windows8.1-kb3172614-x86_d11c233c8598b734de72665e0d0a3f2ef007b91f.msu) <br /> KB5017220 [x64](https://catalog.s.download.windowsupdate.com/c/msdownload/update/software/secu/2022/08/windows8.1-kb5017220-x64_d771111b22ec71560b207a6735d5ecebd47c4f38.msu)-[x86](https://catalog.s.download.windowsupdate.com/d/msdownload/update/software/secu/2022/08/windows8.1-kb5017220-x86_3134a18dac1b1fe4f656c9e25d0e4aaa75619d16.msu)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |\n| ویندوز سرور 2012 R2       | ServerDatacenter، ServerStandard و انواع Core آنها                                                                                          | [3 سال](https://learn.microsoft.com/en-us/lifecycle/products/windows-server-2012-r2) <br /> اکتبر 2023 تا اکتبر 2026                                                                                                                                           | همانند ویندوز 8.1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |\n| ویندوز 10                   | Education، Enterprise، IoTEnterprise، <br /> Professional، ProfessionalEducation، <br /> ProfessionalWorkstation، ServerRdsh و انواع N آنها | [3 سال](https://learn.microsoft.com/en-us/windows/whats-new/extended-security-updates) <br /> اکتبر 2025 تا اکتبر 2028                                                                                                                                         | ویندوز 10 22H2 (19045.4957) <br /> فقط به‌روزرسانی ویندوز را اجرا کنید                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |\n\n<br/>\n\n## میزبان KMS ویندوز\n\n- می‌توانید مجوز میزبان KMS ویندوز را با استفاده از گزینه TSforge در MAS فعال کنید.\n- اسکریپت به طور خودکار CSVLK موجود را با بیشترین تعداد شناسه‌های شمارش شده KMS انتخاب می‌کند.\n- همراه با فعال‌سازی، میزبان را با 25 کلاینت که حداقل آستانه مورد نیاز برای یک میزبان KMS در حال کار است، شارژ می‌کند.\n- با میزبان KMS ویندوز، می‌توانید کلاینت KMS را در شبکه خود فعال کنید.\n- این گزینه برای کاربران پیشرفته است، می‌توانید [راهنماها][8] را برای درک بیشتر در مورد آن بررسی کنید.\n\n<br/>\n\n::: tip یادداشت‌ها\n>\n> **فقط در مواقع ضروری از این فعال‌سازی استفاده کنید.**\n> در ویندوز 10/11، سیستم ممکن است بعداً نسخه ویندوز را به طور تصادفی تغییر دهد. این یک مشکل ویندوز است و می‌توان آن را با خیال راحت نادیده گرفت.\n> مجوز میزبان KMS باعث می‌شود سرویس sppsvc به طور مداوم اجرا شود.\n\n:::\n\n\n## میزبان KMS آفیس\n\n- می‌توانید مجوز میزبان KMS آفیس را با استفاده از گزینه TSforge در MAS فعال کنید.\n- برای فعال کردن یک میزبان KMS آفیس، باید نصب‌کننده بسته مجوز مناسب را دانلود و اجرا کنید.\n- همراه با فعال‌سازی، میزبان را با 25 کلاینت برای یک میزبان KMS در حال کار شارژ می‌کند.\n- با میزبان KMS آفیس، می‌توانید کلاینت KMS آفیس را در شبکه خود فعال کنید.\n- این گزینه برای کاربران پیشرفته است، می‌توانید [راهنماها][9] را برای درک بیشتر در مورد آن بررسی کنید.\n\n<br/>\n\n::: tip توجه\n\n> **فقط در مواقع ضروری از این فعال‌سازی استفاده کنید.**\n> مجوز میزبان KMS باعث می‌شود سرویس sppsvc به طور مداوم اجرا شود.\n\n:::\n\n::: details لینک‌های میزبان KMS آفیس\n\nتمام لینک‌های ارائه شده در زیر لینک‌های رسمی هستند که توسط مایکروسافت میزبانی می‌شوند.\n\n| نسخه              | لینک                                                                                                                                     |\n|----------------------|------------------------------------------------------------------------------------------------------------------------------------------|\n| میزبان KMS آفیس 2010 | `https://download.microsoft.com/download/E/4/E/E4EF2B72-9F16-4D5F-9A1D-D9BE39A1C127/KeyManagementServiceHost_en-us.exe`                  |\n| میزبان KMS آفیس 2013 | `https://download.microsoft.com/download/3/4/2/342F1FEA-CCB2-4F68-A6DE-041934383C18/office2013volumelicensepack_4701-1000_en-us_x86.exe` |\n| میزبان KMS آفیس 2016 | `https://download.microsoft.com/download/5/E/3/5E329B97-6DC5-4AA7-9AA7-A5B5D46AF82F/office2016volumelicensepack_4324-1002_en-us_x86.exe` |\n| میزبان KMS آفیس 2019 | `https://download.microsoft.com/download/F/6/0/F60CA746-5F03-482D-A331-15F38FB4AACA/office2019volumelicensepack_x86.exe`                 |\n| میزبان KMS آفیس 2021 | `https://download.microsoft.com/download/8/e/e/8eef6160-396a-4c26-830d-9e2a24c00309/Office2021VolumeLicensePack_x86.exe`                 |\n| میزبان KMS آفیس 2024 | `https://download.microsoft.com/download/1/4/0/140c97ae-7360-4dfc-9ba0-5f509600a06e/Office2024VolumeLicensePack_x86.exe`                 |\n\n - هنگامی که در حین نصب از شما کلید محصول میزبان KMS خواسته شد، \"No\" را انتخاب کنید.\n - در ویندوز 11 24H2/سرور 2025 و جدیدتر، FoD VBScript باید برای کار کردن این نصب‌کننده‌ها فعال باشد.\n - بسته‌های آفیس 2019-2024 فقط در ویندوز 8/سرور 2012 و جدیدتر پشتیبانی می‌شوند.\n - اگر چندین بسته مجوز را روی یک دستگاه نصب می‌کنید، مطمئن شوید که نسخه‌های قدیمی‌تر را قبل از نسخه‌های جدیدتر نصب کنید (مثلاً آفیس 2016 را قبل از آفیس 2024 نصب کنید).\n\n:::\n\n<br/>\n\n::: details  راه‌حل نصب‌کننده میزبان KMS آفیس 2010\n\n - نصب‌کننده مجوز آفیس 2010 برای نصب در ویندوز 10/11/سرور 2016-2025 به یک راه‌حل نیاز دارد:\n   - نصب‌کننده را اجرا کنید و پیام خطای حاصل را رد کنید.\n   - Command Prompt را به عنوان Administrator راه‌اندازی کنید.\n   - اگر از ویندوز 32 بیتی استفاده می‌کنید، `notepad \"%programfiles%\\MSECache\\OfficeKMS\\kms_host.vbs\"` را اجرا کنید.\n   - اگر از ویندوز 64 بیتی یا ARM64 استفاده می‌کنید، `notepad \"%programfiles(x86)%\\MSECache\\OfficeKMS\\kms_host.vbs\"` را اجرا کنید\n   - روی `Edit > Replace` کلیک کنید.\n   - در کادر متنی \"Find\" تایپ کنید `>= \"7\"`، در کادر متنی \"Replace\" تایپ کنید `>= 1`.\n   - روی \"Replace All\" کلیک کنید.\n   - فایل را ذخیره کرده و Notepad را ببندید.\n   - اگر از ویندوز 32 بیتی استفاده می‌کنید، `cscript \"%programfiles%\\MSECache\\OfficeKMS\\kms_host.vbs\"` را اجرا کنید.\n   - اگر از ویندوز 64 بیتی یا ARM64 استفاده می‌کنید، `cscript \"%programfiles(x86)%\\MSECache\\OfficeKMS\\kms_host.vbs\"` را اجرا کنید\n\n:::\n\n<br/>\n\n::: details راه‌حل نصب در ویندوز دارای مجوز غیر حجمی\n\n - همه نصب‌کننده‌ها به طور معمول به ویندوز دارای مجوز حجمی نیاز دارند، اما این را نیز می‌توان دور زد:\n   - همان روشی را که برای راه‌حل آفیس 2010 در بالا دنبال کردید، دنبال کنید، اما `If isVL = False` را با `If False` جایگزین کنید.\n   - برای بسته‌های آفیس 2019-2024، اسکریپت نصب‌کننده برای ویرایش به نام نسخه آفیس نامگذاری شده است (مثلاً `kms_host19.vbs` برای آفیس 2019).\n\n:::\n\n## بازنشانی Rearm / تایمرها / دستکاری / قفل\n\n- می‌توانید از این ویژگی در گزینه TSforge در MAS استفاده کنید.\n\n| ویژگی‌ها                   | اطلاعات                                                               |\n|----------------------------|--------------------------------------------------------------------|\n| بازنشانی شمارنده Rearm          | بازنشانی شمارنده rearm برای ارزیابی بی‌نهایت                        |\n| بازنشانی دوره ارزیابی          | بازنشانی دوره ارزیابی برای ارزیابی بی‌نهایت                    |\n| پاک کردن حالت دستکاری         | پاک کردن حالت دستکاری تنظیم شده به دلیل خرابی یا حذف فروشگاه     |\n| حذف قفل کلید ارزیابی | حذف قفل تغییر کلید محصول تنظیم شده برای کلیدهای محصول ارزیابی |\n\n<br/>\n\n## چگونه TSforge را حذف کنیم\n\n::: danger راهنما\n\n> این روش فعال‌سازی هیچ یک از اجزای ویندوز را تغییر نمی‌دهد و هیچ فایل جدیدی نصب نمی‌کند.\n> در عوض، داده‌ها را به یکی از فایل‌های داده مورد استفاده توسط پلتفرم حفاظت از نرم‌افزار اضافه می‌کند.\n> اگر می‌خواهید وضعیت فعال‌سازی را بازنشانی کنید،\n> در اسکریپت MAS، به Troubleshoot بروید و گزینه Fix Licensing را اعمال کنید.\n> انجام شد ✔️\n\n:::\n\n\n## فعال‌سازی دستی\n\nبرای اطلاعات در مورد استفاده دستی از TSforge، به [README TSforge][2] مراجعه کنید.\n\n\n## راه‌اندازی پیش‌فعال‌سازی\n\n- گزینه Extract OEM را در بخش Extras MAS بررسی کنید اگر می‌خواهید نصب ویندوز از قبل فعال شده داشته باشید.\n- بیشتر بخوانید [اینجا](./oem-folder).\n\n\n::: danger رفع مشکلات\n\nاگر سوالی دارید، ابتدا صفحه [**سوالات پرتکرار**](./faq) را مرور کنید — به احتمال زیاد جواب‌تان اینجاست.\n\nاگر همچنان مشکل پابرجا بود — با ما [**در ارتباط**](./troubleshoot) باشید.\n\n:::\n\n## قدردانی\n\nاز شما برای ارائه این پروژه فوق‌العاده سپاسگزاریم 🤍\n\n[massgrave.dev][2]\n\n\n[N]: https://github.com/NiREvil/windows-activation/\n[1]: https://github.com/UMSKT/writeups/blob/main/PKEY2005.md\n[2]: https://github.com/massgravel/TSforge\n[3]: https://betawiki.net/wiki/Windows_11_build_27802\n[4]: https://github.com/dadorner-msft/activationws\n[5]: https://learn.microsoft.com/en-us/windows/deployment/volume-activation/introduction-vamt\n[6]: https://github.com/massgravel/massgrave.dev/blob/main/blog/2025-02-14-TSforge/index.md\n[7]: https://learn.microsoft.com/en-us/lifecycle/faq/extended-security-updates\n[8]: https://learn.microsoft.com/en-us/windows-server/get-started/kms-create-host\n[9]: https://learn.microsoft.com/en-us/office/volume-license-activation/plan-volume-activation-of-office#key-management-service-kms-activation-of-office\n"
  },
  {
    "path": "docs/fa/wa/unsupported_products_activation.md",
    "content": "---\nlayout: doc\noutline: deep\nlang: fa-IR\ndir: rtl\ntitle: 'فعال‌سازی محصولات پشتیبانی نشده'\ndescription: 'در این صفحه فقط روش‌های فعال‌سازی محصولاتی ذکر شده است که توسط اسکریپت MAS پشتیبانی نمی‌شوند'\ndate: 2025-01-19\neditLink: true\n---\n\n# فعال‌سازی محصولات پشتیبانی نشده\n\n::: info نکته\n\n- در این صفحه، فقط روش‌های فعال‌سازی محصولاتی ذکر شده است که توسط اسکریپت **MAS** پشتیبانی نمی‌شوند.\n- اگر مطمئن نیستید، ابتدا گزینه‌های فعال‌سازی اسکریپت [**MAS**](./index#مرحله-۲) را اجرا کنید.\n\n:::\n\n## MS Office For Mac\n\n- [**اینجا**][1] را بررسی کنید.\n\n## Windows XP Pro VL\n\n- دانلود ویندوز XP Pro VL - [**لینک**](./windows_xp_links)\n\n- کلید فعال‌سازی ISO 32 بیتی (x86) Windows XP Pro VL SP3:\n\n```shell\nXCYBK-2B3KV-G8T8F-WXJM7-WCTYT\n```\n\n- کلید فعال‌سازی ISO 64 بیتی (x64) Windows XP Pro VL SP2:\n\n```shell\nVCFQD-V9FX9-46WVH-K3CD4-4J3JM\n```\n\n<hr/><br/>\n\n## Office 2010 on Windows XP / Server 2003\n\n- [**نصب‌کننده آفیس 2010**][2]\n\n- [**اسکریپت Ohook برای آفیس 2010 توسط abbodi1406**][3] *(رمز عبور: `2010`)*\n\n1. آرشیو Ohook را استخراج کنید.\n2. `_install.cmd` را به عنوان مدیر اجرا کنید.\n3. یک کلید از [**اینجا**](./ohook#آفیس-2010-14-0) برای محصول نصب شده آفیس 2010 دریافت کنید.\n4. یک برنامه آفیس را باز کنید > `File > Help > Activate/Change Product Key`.\n5. کلید را وارد کرده و فعال‌سازی را به پایان برسانید.\n\nآفیس 2010 اکنون باید به طور دائم فعال شده باشد.\n\n> - **توجه:** MAS از آفیس در ویندوز ویستا و بالاتر پشتیبانی می‌کند.\n\n## Office 2007 Enterprise\n\n- دانلود آفیس 2007 Enterprise - [**لینک**][5]\n- کلید فعال‌سازی:\n\n```shell\nBQDQB-KRRY9-43DBR-4P9J4-DH7D8\n```\n\n## Remote Desktop Services — Client Access Licenses (RDS CALs)\n\n**نصب**\n\n::: details برای مشاهده اطلاعات اینجا کلیک کنید\n\n- با استفاده از یک حساب مدیر به سروری که می‌خواهید به عنوان سرور لایسنس استفاده کنید وارد شوید.\n- در Server Manager، Manage > Add Roles and Features را انتخاب کنید.\n- در صفحه Select installation type، Role-based or feature-based installation را انتخاب کنید.\n- سروری را که می‌خواهید نقش لایسنس را روی آن نصب کنید مشخص کنید.\n- در صفحه Server Roles، کادر Remote Desktop Services را علامت بزنید، سپس Next را انتخاب کنید تا به صفحه Remote Desktop Services برسید.\n- نقش‌هایی را که می‌خواهید نصب کنید انتخاب کنید. مطمئن شوید که نقش Remote Desktop Licensing را شامل می‌شود.\n- در کادر محاوره‌ای Add Roles and Features Wizard، Add Features را انتخاب کنید.\n- Next را انتخاب کنید تا به صفحه Confirmation برسید، سپس Install را انتخاب کنید.\n\n:::\n\n**فعال‌سازی**\n\nدر حین فعال‌سازی لایسنس‌های RDS هیچ اعتبارسنجی وجود ندارد.\n\n- \"Remote Desktop Licensing Manager\" را باز کنید\n- روی سرور راست کلیک کرده و \"Activate Server\" را کلیک کنید\n- روش اتصال مورد نظر خود را انتخاب کرده و next را کلیک کنید (پیش‌فرض خوب است)\n- اطلاعات شرکت اول را با اطلاعات بی‌معنی پر کنید و next را کلیک کنید\n- صفحه بعدی را خالی بگذارید و next را کلیک کنید\n- ویزارد باید تکمیل شود و بگوید \"The license server has been successfully activated\"\n- \"Start Install Licenses Wizard\" را علامت زده نگه دارید و next را کلیک کنید تا از شما بخواهد یک \"License program\" را انتخاب کنید\n- License Program را به \"Service Provider License Agreement\" در منوی کشویی تغییر دهید و next را کلیک کنید\n- شماره توافقنامه را روی `1234567` تنظیم کنید و next را کلیک کنید\n- صفحه بعدی را با مقادیر انتخابی خود پر کنید و next را کلیک کنید\n- ویزارد لایسنس باید گزارش دهد \"The requested licenses have been successfully installed\"\n\nبه طور جایگزین، می‌توانید یک کلید در صفحه زیر ایجاد کنید. از گزینه مرورگر وب در فرآیند فعال‌سازی برای دریافت شناسه محصول استفاده کنید. این روی نسخه‌های قدیمی سرور نیز کار می‌کند.\n\nوب‌سایت:\n[thecatontheceiling.github.io/Lyssa][6]\n\nکد منبع و جزئیات:\n\n[LyssaRDSGen][7]\n\n[gist.github.com/WitherOrNot][8]\n\n## HEVC Video Extensions\n\n- این یک [افزونه پولی مایکروسافت][9] برای پخش ویدیوهای High Efficiency Video Coding (HEVC) در هر برنامه ویدیویی روی دستگاه ویندوز 10/11 شما است.\n- مایکروسافت نصب‌کننده‌های امضا شده دیجیتالی را به مشترکین مرکز مدیریت M365 ارائه می‌دهد، می‌توانید آنها را در زیر دانلود کنید.\n\nلینک دانلود: [**app.box.com/s/rozw**][10]\nبه طور جایگزین، می‌توانید نصب‌کننده AppxBundle را از [**store.rg-adguard.net**][11] با جستجوی `9nmzlz57r3t7` در ProductId دانلود کنید.\n\n## Visual Studio\n\n- دانلود - [visualstudio.microsoft.com/downloads/][12]\n- کلیدهای فعال‌سازی:\n\n| نسخه‌ها | کلید فعال‌سازی |\n|---|---|\n| Visual Studio 2022 Professional | `TD244-P4NB7-YQ6XK-Y8MMM-YWV2J` |\n| Visual Studio 2022 Enterprise | VHF9H-`NXBBB-638P6-6JHCY-88JWH` |\n| Visual Studio 2019 Professional | `NYWVH-HT4XC-R2WYW-9Y3CM-X4V3Y` |\n| Visual Studio 2019 Enterprise | BF8Y8-`GN2QH-T84XB-QVY3B-RC4DF` |\n\n## Microsoft DaRT\n\nMicrosoft DaRT (Diagnostics and Recovery Toolset، که قبلاً ERD Commander نام داشت) یک ایمیج بازیابی رسمی مبتنی بر WinPE قابل بوت از مایکروسافت است که شامل ابزارهای تشخیصی و عیب‌یابی برای بازیابی ویندوز است.\n\nاین محصول دیگر تحت توسعه فعال نیست.\n\n**لینک دانلود:** Microsoft Desktop Optimization Pack 2015\n[mu_microsoft_desktop_optimization_pack_2015_x86_x64.iso][13]\n\n**راهنما:** [woshub.com/create-dart-10-recovery-image/][14]\n\n## SQL Server\n\n- دانلود - [microsoft.com/evaluate-sql-server-2022][15]\n- کلیدهای فعال‌سازی:\n\n| نسخه‌ها | کلید فعال‌سازی |\n|---|---|\n| SQL Server 2022 Enterprise | `J4V48-P8MM4-9N3J9-HD97X-DYMRM` |\n| SQL Server 2022 Enterprise Core | `2Q48Q-PB48J-DRCVN-GB844-X2H4Q` |\n| SQL Server 2022 Standard | `FG86G-CHH2T-CB7NJ-XT7D2-V8V4X` |\n| SQL Server 2022 Web | `2R97W-F4XNT-T6MYV-3TKB7-6X3JM` |\n| SQL Server 2022 Developer | `22222-00000-00000-00000-00000` |\n| SQL Server 2019 Enterprise | `HMWJ3-KY3J2-NMVD7-KG4JR-X2G8G` |\n| SQL Server 2019 Standard | `PMBDC-FXVM3-T777P-N4FY8-PKFF4` |\n\n## Microsoft Configuration Manager\n\nهمچنین به عنوان ConfigMgr، Microsoft Endpoint Configuration Manager (MECM) شناخته می‌شود.  \n\nقبلاً به عنوان Systems Management Server (SMS)، System Center Configuration Manager (SCCM) شناخته می‌شد. [**اطلاعات بیشتر**][16] در مورد تغییرات نام.\n\n**Microsoft Configuration Manager (Current Branch)**\n\nدانلود - [microsoft.com/evaluate-endpoint-config-manager][17]\nکلید فعال‌سازی:\n\n```shell\nBXH69-M62YX-QQD6R-3GPWX-8WMFY\n```\n\n## مشکلات\n\n::: danger مشکلات\n\n- اگر در این مورد به کمکی نیاز دارید، ابتدا [**سوالات متداول**](./faq) را مرور کنید — به احتمال زیاد پاسخ شما در آنجا خواهد بود.\n\n- اگر مشکل شما همچنان ادامه داشت — می‌توانید [**با ما تماس بگیرید**](./troubleshoot).\n\n:::\n\n[1]: https://massgrave.dev/office_for_mac\n[2]: https://massgrave.dev/office_msi_links#office-2010\n[3]: https://gitlab.com/-/project/11037551/uploads/bbdc7aae987d08f8e2bf6533942e623a/office2010_ohook.7z\n[4]: https://app.box.com/s/q0nyib6bfylosvbbm5x8ztg87vy0kl8a\n[5]: https://massgrave.dev/office_msi_links#office-2007\n[6]: https://thecatontheceiling.github.io/LyssaRDSGen/\n[7]: https://github.com/thecatontheceiling/LyssaRDSGen\n[8]: https://gist.github.com/WitherOrNot/c34c4c7b893e89ab849ce04e007d89a9\n[9]: https://apps.microsoft.com/detail/9nmzlz57r3t7\n[10]: https://app.box.com/s/rozwl3zsx6o90xw2568by61fhp3z3icw\n[11]: https://store.rg-adguard.net/\n[12]: https://visualstudio.microsoft.com/downloads/\n[13]: https://drive.massgrave.dev/mu_microsoft_desktop_optimization_pack_2015_x86_x64_dvd_5975282.iso\n[14]: https://woshub.com/create-dart-10-recovery-image/\n[15]: https://www.microsoft.com/en-us/evalcenter/evaluate-sql-server-2022\n[16]: https://craigtwall.com/how-sccm-became-memcm-or-just-configmgr/\n[17]: https://www.microsoft.com/en-us/evalcenter/evaluate-microsoft-endpoint-configuration-manager\n"
  },
  {
    "path": "docs/fa/wa/windows10_eol.md",
    "content": "---\nlayout: doc\noutline: deep\nlang: fa-IR\ndir: rtl\ntitle: 'به‌روزرسانی‌های ویندوز 10 پس از پایان عمر'\ndescription: 'این سند توضیح می‌دهد که چگونه کاربران می‌توانند پس از تاریخ بازنشستگی ویندوز 10 در 14 اکتبر 2025، به‌روزرسانی‌های رسمی را دریافت کنند.'\ndate: 2025-04-30\neditLink: true\n---\n\n# به‌روزرسانی‌های ویندوز 10 پس از پایان عمر\n\nاین سند توضیح می‌دهد که چگونه کاربران می‌توانند پس از تاریخ بازنشستگی ویندوز 10 در 14 اکتبر 2025، به‌روزرسانی‌های رسمی را دریافت کنند.\n\n::: tip برای بسیاری از مردم\n\nواضح‌ترین راه‌حل ارتقا به ویندوز 11 خواهد بود، اما آنها نمی‌توانند زیرا سخت‌افزار برای ویندوز 11 پشتیبانی نمی‌شود. برخی از کاربران نیز ممکن است ویندوز 11 را دوست نداشته باشند و می‌خواهند تا زمانی که می‌توانند روی ویندوز 10 بمانند.\n\n- در اینجا چندین راه‌حل برای انتخاب شما وجود دارد؛ هر کدام را که بیشتر ترجیح می‌دهید انتخاب کنید.\n\n:::\n\n## به‌روزرسانی‌های ESU ویندوز 10\n\nمایکروسافت [به‌روزرسانی‌های امنیتی تمدید شده (ESU)][1] را اعلام کرد که در آن کاربران می‌توانند اشتراک ESU را برای دریافت به‌روزرسانی‌های ویندوز خریداری کنند. این به‌روزرسانی‌ها از نوامبر 2025 شروع به انتشار می‌کنند.\n\nمی‌توانید از [**گزینه TSforge در MAS**](./index#مرحله-۲)  برای فعال‌سازی 3 سال ESU (اکتبر 2025 تا اکتبر 2028) استفاده کنید.\n\n<br/>\n\n## ویندوز 10 (IoT) Enterprise LTSC 2021\n\n### مایکروسافت ویندوز 10/11 را در دو کانال سرویس‌دهی منتشر می‌کند.\n\n1. **GAC — کانال دسترسی عمومی**\n\n- یعنی Home، Pro، Enterprise.\n- این کانال در [14 اکتبر 2025][2] به پایان پشتیبانی خود می‌رسد.\n\n2. **LTSC — کانال سرویس‌دهی بلندمدت**\n\n- یعنی Enterprise LTSC—  IoT Enterprise LTSC\n- ویندوز 10 Enterprise LTSC 2021 در [12 ژانویه 2027][3] به پایان پشتیبانی خود می‌رسد.\n- و ویندوز 10 IoT Enterprise LTSC 2021 در [13 ژانویه 2032][4] به پایان پشتیبانی خود می‌رسد.\n\nراه‌حل ساده است. شما می‌توانید فقط از نسخه رسمی Windows 10 IoT Enterprise LTSC 2021 برای دریافت به‌روزرسانی تا 13 ژانویه 2032 استفاده کنید.\n\n::: details نصب تمیز ویندوز 10 (IoT) Enterprise LTSC 2021\n\nISO نسخه IoT فقط به زبان انگلیسی موجود است، اما نگران نباشید.\n\n- ISO [Enterprise LTSC 2021][5] را به زبان مورد نظر خود دانلود کنید.\n- ویندوز را با استفاده از [**این راهنمای نصب تمیز**](./clean_install_windows) نصب کنید.\n- پس از نصب ویندوز، برای تغییر نسخه، کلید IoT LTSC 2021 را در صفحه فعال‌سازی در تنظیمات ویندوز وارد کنید:\n\n```shell\nQPM6N-7J2WJ-P88HH-P3YRH-YY74H\n```\n\n:::\n\n::: details ارتقاء نسخه‌های ویندوز 10 Home، Pro و غیره به Windows 10 IoT Enterprise LTSC 2021 با حفظ فایل‌ها و برنامه‌ها\n\n- ISO ویندوز 10 Enterprise LTSC را از [اینجا][5] با **همان زبان و معماری ویندوز** دانلود کنید.\n\n- برای بررسی معماری ویندوز نصب شده، Powershell را به عنوان مدیر باز کنید و دستور زیر را وارد کنید،\n\n```shell\nGet-WmiObject -Class Win32_OperatingSystem | Format-List OSArchitecture\n```\n\n‏- x64 به معنای 64 بیتی، x86 به معنای 32 بیتی است.\n- برای بررسی زبان ویندوز نصب شده، Powershell را در حالت ادمین باز کنید و دستور زیر را وارد کنید:\n\n```powerahell\ndism /english /online /get-intl | find /i \"Default system UI language\"\n```\n\n- روی فایل ISO دانلود شده راست کلیک کنید، Open With → Windows Explorer را انتخاب کنید.\n- یک درایو DVD جدید در Windows Explorer ظاهر می‌شود، که به این معنی است که ایمیج نصب با موفقیت مونت شده است.\n- اکنون command prompt را به عنوان مدیر باز کنید و دستور زیر را وارد کنید:\n\n```powershell\nreg add \"HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\" /v EditionID /d IoTEnterpriseS /f\n```\n\n- اکنون به سرعت وارد آن درایو DVD شوید و setup.exe را اجرا کنید، و تا زمانی که به صفحه تأیید نهایی برسید ادامه دهید. (در این مرحله تأخیر نکنید، در غیر این صورت گزینه‌ای برای حفظ فایل‌ها و برنامه‌ها نشان داده نمی‌شود)\n- مطمئن شوید که در صفحه نهایی عبارت **«Keep personal files and apps»** را می‌بینید. سپس می‌توانید فرآیند را ادامه دهید و منتظر بمانید تا تمام شود.  \nهمین.\n\n:::\n\n::: details نکات مهم\n\n- نسخه‌های LTSC به طور پیش‌فرض برنامه‌های فروشگاه را نصب نمی‌کنند. با این حال، اگر از GAC به LTSC ارتقا دهید، تمام برنامه‌های فروشگاه شما حفظ خواهند شد. در مقابل، اگر نصب تمیز ویندوز LTSC را انجام دهید، برنامه‌های فروشگاه نصب نخواهند شد. برای دستورالعمل‌های نحوه نصب دستی آنها، لطفاً به این [صفحه][6] مراجعه کنید.\n- نسخه‌های IoT از نظر [باینری با نسخه‌های Enterprise یکسان هستند][7]. تفاوت در لایسنس است. شما می‌توانید از آن به خوبی در یک دستگاه با کاربرد عمومی استفاده کنید.\n- برای آشنایی با مزایا و معایب LTSC، [اینجا][8] کلیک کنید.\n\n:::\n\n## ویندوز 11 IoT Enterprise Editions\n\n### قابل اجرا برای:  \n- ویندوز ۱۱ اینترنت اشیا سازمانی، از نسخه ۲۴H2 (بیلد ۲۶۱۰۰ و جدیدتر)\n- ویندوز ۱۱ اینترنت اشیا سازمانی LTSC 2024 (بیلد ۲۶۱۰۰)\n\nبسیاری از کاربران به دلیل محدودیت‌های سخت‌افزاری، مانند عدم وجود TPM، Secure Boot یا پشتیبانی از UEFI، از ویندوز 11 استفاده نمی‌کنند. در حالی که امکان دور زدن این محدودیت‌ها وجود دارد، انجام این کار به طور رسمی پشتیبانی نمی‌شود و ممکن است منجر به مشکلاتی در به‌روزرسانی‌های آینده شود.\n\nبا این حال، یک جایگزین امیدوارکننده در دسترس است.\n\nدر سال 2024، مایکروسافت Windows 11 IoT Enterprise 24H2 (GAC) / IoT Enterprise LTSC 2024 (LTSC) را منتشر کرد که دارای [نیازمندی‌های سخت‌افزاری آرام‌تری][9] است.\n\nشما می‌توانید به طور رسمی این نسخه‌های ویندوز 11 را بدون برآورده کردن نیازمندی‌های سخت‌افزاری معمول، مانند TPM، Secure Boot و UEFI، نصب کنید و همچنان در آینده پشتیبانی مداوم دریافت کنید.\n\n::: details نصب تمیز ویندوز 11 IoT Enterprise (GAC/LTSC) 2024\n\nISO نسخه IoT فقط به زبان انگلیسی موجود است، اما نگران نباشید.\n\n- هر ISO [ویندوز 11 24H2][10] (برای GAC) یا [Enterprise LTSC 2024][11] (برای LTSC) را به زبان مورد نظر خود دانلود کنید.\n- اگر از ISO زبان انگلیسی نسخه IoT استفاده می‌کنید، [راهنمای نصب تمیز معمولی](./clean_install_windows) را دنبال کنید.\n- اگر از ISO غیر IoT استفاده می‌کنید، برای نصب نسخه IoT از ابتدا، [روش PID.txt](./clean_install_windows#پشتیبانی-نشده) را دنبال کنید.\n\nاز طرف دیگر، می‌توانید هر فایل ISO ویندوز 11 24H2 (برای GAC) یا Enterprise LTSC 2024 (برای LTSC) را با [Rufus](./clean_install_windows#بووت) نصب کنید و پس از اتمام نصب، می‌توانید از گزینه تغییر نسخه در MAS برای تغییر نسخه به IoT Enterprise استفاده کنید و از پشتیبانی رسمی روی سخت‌افزار پشتیبانی‌نشده لذت ببرید.\n\n:::\n\n::: details ارتقاء نسخه‌های ویندوز 10 Home، Pro و غیره به Windows 11 IoT Enterprise (GAC/LTSC) 2024 با حفظ فایل‌ها و برنامه‌ها\n\nنسخه IoT فقط به زبان انگلیسی موجود است، اما نگران نباشید.\n\n- هر ISO [ویندوز 11 24H2][10] (برای GAC) یا [Enterprise LTSC 2024][11] (برای LTSC) را با **همان زبان و معماری ویندوز** دانلود کنید.\n- برای بررسی معماری ویندوز نصب شده، Powershell را با حالت ادمین باز کنید و دستور زیر را وارد کنید:\n\n```powershell\nGet-WmiObject -Class Win32_OperatingSystem | Format-List OSArchitecture\n```\n\n- x64 به معنای 64 بیتی، x86 به معنای 32 بیتی است.\n- برای بررسی زبان ویندوز نصب شده، Powershell را با حالت ادمین باز کنید و دستور زیر را وارد کنید،\n\n```powershell\ndism /english /online /get-intl | find /i \"Default system UI language\"\n```\n\n- روی فایل ISO دانلود شده راست کلیک کنید،\n- Open With → Windows Explorer را انتخاب کنید.\n- یک درایو DVD جدید در Windows Explorer ظاهر می‌شود، که به این معنی است که ایمیج نصب با موفقیت مونت شده است.\n- اکنون command prompt (CMD) را با حالت ادمین باز کنید و دستور زیر را وارد کنید:\n\n- **برای GAC**\n\n```powershell\nreg add \"HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\" /v EditionID /d IoTEnterprise /f\n```\n\n- **برای LTSC**\n\n```powershell\nreg add \"HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\" /v EditionID /d IoTEnterpriseS /f\n```\n\n- اکنون به سرعت وارد آن درایو DVD شوید و setup.exe را اجرا کنید، و تا زمانی که به صفحه تأیید نهایی برسید ادامه دهید. (در این مرحله تأخیر نکنید، در غیر این صورت گزینه‌ای برای حفظ فایل‌ها و برنامه‌ها نشان داده نمی‌شود)\n- مطمئن شوید که در صفحه نهایی عبارت **«Keep personal files and apps»** را می‌بینید. سپس می‌توانید فرآیند را ادامه دهید و منتظر بمانید تا تمام شود.  \nهمین.\n\n::: danger نکات مهم\n\n- بسیاری از ابزارها می‌توانند به شما اجازه دهند ویندوز 11 را نصب کنید اگر سخت‌افزار پشتیبانی نشود و به‌روزرسانی‌های ماهانه به خوبی کار کنند. با این حال، به‌روزرسانی‌های ویژگی سالانه در صورت عدم برآورده شدن نیازمندی‌های سخت‌افزاری، نصب نخواهند شد.\n- به همین دلیل است که نسخه‌های IoT (24H2/2024) ذکر شده‌اند تا بتوانید از پشتیبانی رسمی در ارتقاءهای ویژگی آینده برخوردار شوید.\n- نسخه‌های LTSC به طور پیش‌فرض برنامه‌های فروشگاه را نصب نمی‌کنند. با این حال، اگر از GAC به LTSC ارتقا دهید، تمام برنامه‌های فروشگاه شما حفظ خواهند شد. در مقابل، اگر نصب تمیز ویندوز LTSC را انجام دهید، برنامه‌های فروشگاه نصب نخواهند شد. برای دستورالعمل‌های نحوه نصب دستی آنها، لطفاً به این [صفحه][6] مراجعه کنید.\n- ویندوز 11 24H2 / 2024 به پردازنده‌هایی نیاز دارد که از دستورالعمل‌های SSE4.2 و POPCNT پشتیبانی کنند.\n- نسخه‌های IoT از نظر [باینری با نسخه‌های Enterprise یکسان هستند][12]. تفاوت در لایسنس است. شما می‌توانید از آن به خوبی در یک دستگاه با کاربرد عمومی استفاده کنید.\n\n- برای آشنایی با مزایا و معایب LTSC، [اینجا][8] کلیک کنید.\n- شما می‌توانید نسخه‌های [رسماً پشتیبانی شده][13] ویندوز 11 24H2 IoT را روی سیستمی بدون TPM نصب کنید؛ با این حال، برخی از بازی‌ها ممکن است به شما اجازه ندهند اگر سیستم شما در ویندوز 11 فاقد TPM باشد، بازی کنید. در این صورت، باید با ویندوز 10 بمانید.\n\n:::\n\n::: danger عیب یابی\n\n- اگر در این مورد به کمکی نیاز دارید، ابتدا بخش [**سوالات متداول**](./faq) را مرور کنید — به احتمال زیاد پاسخ شما در آنجا خواهد بود.\n\n- اگر مشکل شما همچنان ادامه داشت — می‌توانید [**با ما تماس بگیرید**](./troubleshoot).\n\n:::\n\n[1]: https://learn.microsoft.com/en-us/windows/whats-new/extended-security-updates\n[2]: https://learn.microsoft.com/en-us/lifecycle/products/windows-10-home-and-pro\n[3]: https://learn.microsoft.com/en-us/lifecycle/products/windows-10-enterprise-ltsc-2021\n[4]: https://learn.microsoft.com/en-us/lifecycle/products/windows-10-iot-enterprise-ltsc-2021\n[5]: https://massgrave.dev/windows_ltsc_links\n[6]: https://massgrave.dev/windows_ltsc_links#microsoft-store-app-installation-on-ltsc\n[7]: https://learn.microsoft.com/en-us/windows/iot/iot-enterprise/Overview\n[8]: https://massgrave.dev/windows_ltsc_links#what-is-ltsc-and-is-it-the-right-choice-for-you\n[9]: https://learn.microsoft.com/en-us/windows/iot/iot-enterprise/Hardware/System_Requirements?tabs=Windows11LTSC#optional-minimum-requirements\n[10]: https://massgrave.dev/windows_11_links\n[11]: https://massgrave.dev/windows_ltsc_links\n[12]: https://learn.microsoft.com/en-us/windows/iot/iot-enterprise/Overview\n[13]: https://learn.microsoft.com/en-us/windows/iot/iot-enterprise/Hardware/System_Requirements?tabs=Windows11LTSC#optional-minimum-requirements\n"
  },
  {
    "path": "docs/fa/wa/windows_10_links.md",
    "content": "---\nlayout: doc\noutline: deep\nlang: fa-IR\ndir: rtl\ntitle: 'دانلود ویندور 10'\ndescription: 'تمام لینک‌های دانلود فقط به فایل‌های اصلی منتهی می‌شوند.'\ndate: 2025-04-19\neditLink: true\n---\n\n# دانلود ویندور 10\n\n::: info تمام لینک‌های دانلود فقط به **`فایل‌های اصلی`** منتهی می‌شوند\n\n- [**سوالات متداول**](./genuine-installation-media#سوالات-متداول)\n\n- [**چگونه اصالت این فایل‌ها رو تایید کنیم؟**][Genuine]\n\n- [**ویندوز 10 پس از پایان عمر**](./windows10_eol)\n\nایزوی مخصوص مصرف‌کنندگان شامل همه نسخه‌ها، مانند خانگی، حرفه‌ای و آموزشی می‌شود، اما نسخه سازمانی را شامل نمی‌شود. در مقابل، ایزوی مخصوص کسب‌وکار شامل همه نسخه‌ها به جز نسخه‌های خانگی است.\n\n:::\n\n<br/>\n\n## لینک های دانلود\n\n:::tabs\n\n== Windows 10 Consumer 22H2 🤍\n\n<details>\n  <summary>اطلاعات لینک های رسمی</summary>\n\nمایکروسافت لینک‌های عمومی رسمی برای ویندوز ۱۰ نسخه ۲۲H2 (بیلد ۱۹۰۴۵.۲۹۶۵) ارائه می‌دهد و این نسخه قدیمی است و مشکلی که دارد این است که ممکن است در آن به‌روزرسانی‌های ویندوز نصب نشود. [KB5028997][1].  \nبه همین دلیل توصیه می‌کنیم آخرین فایل ISO ویندوز ۱۰ را از جدول زیر دریافت کنید، این ISOها از سایت رسمی MVS گرفته شده‌اند.\n\nبا این حال، اگر فقط لینک‌های رسمی مستقیم می‌خواهید، بررسی کنید.\nاین برنامه [MSDL] لینک‌های رسمی را مستقیماً از مایکروسافت ارائه می‌دهد و حتی اگر مایکروسافت دانلود را برای کاربران روسی/VPN مسدود کرده باشد، کار می‌کند.\nدانلود ویندوز ۱۰ از [microsoft.com/en-us/software-download][8] توصیه نمی‌شود زیرا از یک فایل ESD برای تولید ISO استفاده می‌کند و این فرآیند گاهی اوقات ممکن است ISO خراب تولید کند که با چک‌سام‌های شناخته‌شده قابل تأیید نیست.\n\n</details>\n\n**ویندوز 10 نسخه 22H2 مصرف‌کننده**\n\n> - بیلد 19045.6093 (جولای 2025)\n\n\n| زبان                   | معماری | لینک                                                                                                                                                                                                                     |\n|:-----------------------|:-----|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| عربی                   | x64  | [ar-sa_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/ar-sa_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| عربی                   | x86  | [ar-sa_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/ar-sa_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| بلغاری                  | x64  | [bg-bg_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/bg-bg_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| بلغاری                  | x86  | [bg-bg_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/bg-bg_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| چکی                    | x64  | [cs-cz_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/cs-cz_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| چکی                    | x86  | [cs-cz_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/cs-cz_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| دانمارکی                | x64  | [da-dk_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/da-dk_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| دانمارکی                | x86  | [da-dk_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/da-dk_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| آلمانی                  | x64  | [de-de_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/de-de_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| آلمانی                  | x86  | [de-de_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/de-de_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| یونانی                  | x64  | [el-gr_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/el-gr_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| یونانی                  | x86  | [el-gr_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/el-gr_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| انگلیسی (بریتانیا)      | x64  | [en-gb_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/en-gb_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| انگلیسی (بریتانیا)      | x86  | [en-gb_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/en-gb_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| انگلیسی                | x64  | [en-us_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/en-us_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| انگلیسی                | x86  | [en-us_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/en-us_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| اسپانیایی               | x64  | [es-es_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/es-es_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| اسپانیایی               | x86  | [es-es_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/es-es_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| اسپانیایی (مکزیک)      | x64  | [es-mx_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/es-mx_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| اسپانیایی (مکزیک)      | x86  | [es-mx_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/es-mx_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| استونیایی               | x64  | [et-ee_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/et-ee_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| استونیایی               | x86  | [et-ee_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/et-ee_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| فنلاندی                | x64  | [fi-fi_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/fi-fi_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| فنلاندی                | x86  | [fi-fi_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/fi-fi_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| فرانسوی (کانادا)        | x64  | [fr-ca_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/fr-ca_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| فرانسوی (کانادا)        | x86  | [fr-ca_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/fr-ca_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| فرانسوی                 | x64  | [fr-fr_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/fr-fr_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| فرانسوی                 | x86  | [fr-fr_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/fr-fr_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| عبری                   | x64  | [he-il_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/he-il_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| عبری                   | x86  | [he-il_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/he-il_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| کروات                  | x64  | [hr-hr_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/hr-hr_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| کروات                  | x86  | [hr-hr_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/hr-hr_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| مجارستانی               | x64  | [hu-hu_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/hu-hu_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| مجارستانی               | x86  | [hu-hu_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/hu-hu_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| ایتالیایی               | x64  | [it-it_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/it-it_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| ایتالیایی               | x86  | [it-it_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/it-it_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| ژاپنی                  | x64  | [ja-jp_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/ja-jp_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| ژاپنی                  | x86  | [ja-jp_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/ja-jp_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| کره‌ای                  | x64  | [ko-kr_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/ko-kr_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| کره‌ای                  | x86  | [ko-kr_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/ko-kr_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| لیتوانیایی             | x64  | [lt-lt_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/lt-lt_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| لیتوانیایی             | x86  | [lt-lt_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/lt-lt_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| لتونیایی                | x64  | [lv-lv_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/lv-lv_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| لتونیایی                | x86  | [lv-lv_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/lv-lv_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| نروژی (بوکمال)          | x64  | [nb-no_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/nb-no_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| نروژی (بوکمال)          | x86  | [nb-no_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/nb-no_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| هلندی (هلند)            | x64  | [nl-nl_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/nl-nl_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| هلندی (هلند)            | x86  | [nl-nl_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/nl-nl_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| لهستانی                 | x64  | [pl-pl_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/pl-pl_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| لهستانی                 | x86  | [pl-pl_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/pl-pl_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| پرتغالی (برزیل)         | x64  | [pt-br_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/pt-br_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| پرتغالی (برزیل)         | x86  | [pt-br_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/pt-br_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| پرتغالی (پرتغال)       | x64  | [pt-pt_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/pt-pt_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| پرتغالی (پرتغال)       | x86  | [pt-pt_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/pt-pt_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| رومانیایی               | x64  | [ro-ro_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/ro-ro_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| رومانیایی               | x86  | [ro-ro_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/ro-ro_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| روسی                   | x64  | [ru-ru_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/ru-ru_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| روسی                   | x86  | [ru-ru_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/ru-ru_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| اسلواکی                 | x64  | [sk-sk_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/sk-sk_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| اسلواکی                 | x86  | [sk-sk_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/sk-sk_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| اسلوونیایی              | x64  | [sl-si_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/sl-si_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| اسلوونیایی              | x86  | [sl-si_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/sl-si_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| صربی (لاتین)           | x64  | [sr-latn-rs_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/sr-latn-rs_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| صربی (لاتین)           | x86  | [sr-latn-rs_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/sr-latn-rs_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| سوئدی                  | x64  | [sv-se_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/sv-se_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| سوئدی                  | x86  | [sv-se_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/sv-se_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| تایلندی                 | x64  | [th-th_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/th-th_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| تایلندی                 | x86  | [th-th_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/th-th_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| ترکی                   | x64  | [tr-tr_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/tr-tr_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| ترکی                   | x86  | [tr-tr_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/tr-tr_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| اوکراینی                | x64  | [uk-ua_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/uk-ua_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| اوکراینی                | x86  | [uk-ua_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/uk-ua_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| چینی (ساده‌شده)         | x64  | [zh-cn_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/zh-cn_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| چینی (ساده‌شده)         | x86  | [zh-cn_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/zh-cn_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| چینی (سنتی)            | x64  | [zh-tw_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/zh-tw_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| چینی (سنتی)            | x86  | [zh-tw_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/zh-tw_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n\n---\n\n== Windows 10 Business 22H2\n\n**ویندوز 10 نسخه 22H2 تجاری**\n\n> - بیلد 19045.6093 (جولای 2025)\n\n\n| زبان                   | معماری | لینک                                                                                                                                                                                                                     |\n|:-----------------------|:-----|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| عربی                   | x64  | [ar-sa_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_9ff53440.iso](https://drive.massgrave.dev/ar-sa_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_9ff53440.iso) |\n| عربی                   | x86  | [ar-sa_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_eaf8ff91.iso](https://drive.massgrave.dev/ar-sa_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_eaf8ff91.iso) |\n| بلغاری                  | x64  | [bg-bg_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_93375e94.iso](https://drive.massgrave.dev/bg-bg_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_93375e94.iso) |\n| بلغاری                  | x86  | [bg-bg_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_ce19e713.iso](https://drive.massgrave.dev/bg-bg_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_ce19e713.iso) |\n| چکی                    | x64  | [cs-cz_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_064b3df0.iso](https://drive.massgrave.dev/cs-cz_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_064b3df0.iso) |\n| چکی                    | x86  | [cs-cz_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_3e8b17f5.iso](https://drive.massgrave.dev/cs-cz_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_3e8b17f5.iso) |\n| دانمارکی                | x64  | [da-dk_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_e2e46109.iso](https://drive.massgrave.dev/da-dk_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_e2e46109.iso) |\n| دانمارکی                | x86  | [da-dk_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_7a2dbdbf.iso](https://drive.massgrave.dev/da-dk_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_7a2dbdbf.iso) |\n| آلمانی                  | x64  | [de-de_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_e239971d.iso](https://drive.massgrave.dev/de-de_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_e239971d.iso) |\n| آلمانی                  | x86  | [de-de_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_232e3276.iso](https://drive.massgrave.dev/de-de_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_232e3276.iso) |\n| یونانی                  | x64  | [el-gr_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_c8306420.iso](https://drive.massgrave.dev/el-gr_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_c8306420.iso) |\n| یونانی                  | x86  | [el-gr_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_c480f5e6.iso](https://drive.massgrave.dev/el-gr_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_c480f5e6.iso) |\n| انگلیسی (بریتانیا)      | x64  | [en-gb_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_26b1839e.iso](https://drive.massgrave.dev/en-gb_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_26b1839e.iso) |\n| انگلیسی (بریتانیا)      | x86  | [en-gb_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_3a7bc827.iso](https://drive.massgrave.dev/en-gb_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_3a7bc827.iso) |\n| انگلیسی                | x64  | [en-us_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_9528639e.iso](https://drive.massgrave.dev/en-us_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_9528639e.iso) |\n| انگلیسی                | x86  | [en-us_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_a8c993a0.iso](https://drive.massgrave.dev/en-us_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_a8c993a0.iso) |\n| اسپانیایی               | x64  | [es-es_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_65a3bf4c.iso](https://drive.massgrave.dev/es-es_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_65a3bf4c.iso) |\n| اسپانیایی               | x86  | [es-es_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_6d7c222d.iso](https://drive.massgrave.dev/es-es_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_6d7c222d.iso) |\n| اسپانیایی (مکزیک)      | x64  | [es-mx_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_c154ce4e.iso](https://drive.massgrave.dev/es-mx_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_c154ce4e.iso) |\n| اسپانیایی (مکزیک)      | x86  | [es-mx_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_fc874b58.iso](https://drive.massgrave.dev/es-mx_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_fc874b58.iso) |\n| استونیایی               | x64  | [et-ee_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_6ed54329.iso](https://drive.massgrave.dev/et-ee_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_6ed54329.iso) |\n| استونیایی               | x86  | [et-ee_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_84bfa4ff.iso](https://drive.massgrave.dev/et-ee_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_84bfa4ff.iso) |\n| فنلاندی                | x64  | [fi-fi_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_56d5c0f1.iso](https://drive.massgrave.dev/fi-fi_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_56d5c0f1.iso) |\n| فنلاندی                | x86  | [fi-fi_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_59495388.iso](https://drive.massgrave.dev/fi-fi_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_59495388.iso) |\n| فرانسوی (کانادا)        | x64  | [fr-ca_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_50613eda.iso](https://drive.massgrave.dev/fr-ca_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_50613eda.iso) |\n| فرانسوی (کانادا)        | x86  | [fr-ca_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_26f23663.iso](https://drive.massgrave.dev/fr-ca_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_26f23663.iso) |\n| فرانسوی                 | x64  | [fr-fr_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_b6a08000.iso](https://drive.massgrave.dev/fr-fr_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_b6a08000.iso) |\n| فرانسوی                 | x86  | [fr-fr_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_44f358ae.iso](https://drive.massgrave.dev/fr-fr_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_44f358ae.iso) |\n| عبری                   | x64  | [he-il_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_b7757a64.iso](https://drive.massgrave.dev/he-il_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_b7757a64.iso) |\n| عبری                   | x86  | [he-il_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_0bc35d32.iso](https://drive.massgrave.dev/he-il_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_0bc35d32.iso) |\n| کروات                  | x64  | [hr-hr_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_f628be05.iso](https://drive.massgrave.dev/hr-hr_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_f628be05.iso) |\n| کروات                  | x86  | [hr-hr_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_c80f4574.iso](https://drive.massgrave.dev/hr-hr_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_c80f4574.iso) |\n| مجارستانی               | x64  | [hu-hu_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_05e5bd4b.iso](https://drive.massgrave.dev/hu-hu_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_05e5bd4b.iso) |\n| مجارستانی               | x86  | [hu-hu_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_4eecf204.iso](https://drive.massgrave.dev/hu-hu_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_4eecf204.iso) |\n| ایتالیایی               | x64  | [it-it_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_4c46f798.iso](https://drive.massgrave.dev/it-it_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_4c46f798.iso) |\n| ایتالیایی               | x86  | [it-it_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_cbacbda0.iso](https://drive.massgrave.dev/it-it_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_cbacbda0.iso) |\n| ژاپنی                  | x64  | [ja-jp_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_3f86bb4f.iso](https://drive.massgrave.dev/ja-jp_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_3f86bb4f.iso) |\n| ژاپنی                  | x86  | [ja-jp_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_2918ab65.iso](https://drive.massgrave.dev/ja-jp_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_2918ab65.iso) |\n| کره‌ای                  | x64  | [ko-kr_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_a18f3ced.iso](https://drive.massgrave.dev/ko-kr_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_a18f3ced.iso) |\n| کره‌ای                  | x86  | [ko-kr_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_e13eaf3c.iso](https://drive.massgrave.dev/ko-kr_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_e13eaf3c.iso) |\n| لیتوانیایی             | x64  | [lt-lt_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_83bc05f9.iso](https://drive.massgrave.dev/lt-lt_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_83bc05f9.iso) |\n| لیتوانیایی             | x86  | [lt-lt_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_ef710add.iso](https://drive.massgrave.dev/lt-lt_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_ef710add.iso) |\n| لتونیایی                | x64  | [lv-lv_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_8a84a649.iso](https://drive.massgrave.dev/lv-lv_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_8a84a649.iso) |\n| لتونیایی                | x86  | [lv-lv_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_20785672.iso](https://drive.massgrave.dev/lv-lv_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_20785672.iso) |\n| نروژی (بوکمال)          | x64  | [nb-no_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_ab547635.iso](https://drive.massgrave.dev/nb-no_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_ab547635.iso) |\n| نروژی (بوکمال)          | x86  | [nb-no_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_0cfdb100.iso](https://drive.massgrave.dev/nb-no_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_0cfdb100.iso) |\n| هلندی (هلند)            | x64  | [nl-nl_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_a44ad94e.iso](https://drive.massgrave.dev/nl-nl_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_a44ad94e.iso) |\n| هلندی (هلند)            | x86  | [nl-nl_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_5a672ffd.iso](https://drive.massgrave.dev/nl-nl_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_5a672ffd.iso) |\n| لهستانی                 | x64  | [pl-pl_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_31a4fae8.iso](https://drive.massgrave.dev/pl-pl_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_31a4fae8.iso) |\n| لهستانی                 | x86  | [pl-pl_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_caa770b4.iso](https://drive.massgrave.dev/pl-pl_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_caa770b4.iso) |\n| پرتغالی (برزیل)         | x64  | [pt-br_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_b8ea5f19.iso](https://drive.massgrave.dev/pt-br_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_b8ea5f19.iso) |\n| پرتغالی (برزیل)         | x86  | [pt-br_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_bdba8b1e.iso](https://drive.massgrave.dev/pt-br_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_bdba8b1e.iso) |\n| پرتغالی (پرتغال)       | x64  | [pt-pt_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_201d1577.iso](https://drive.massgrave.dev/pt-pt_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_201d1577.iso) |\n| پرتغالی (پرتغال)       | x86  | [pt-pt_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_0623fe5c.iso](https://drive.massgrave.dev/pt-pt_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_0623fe5c.iso) |\n| رومانیایی               | x64  | [ro-ro_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_1c09e112.iso](https://drive.massgrave.dev/ro-ro_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_1c09e112.iso) |\n| رومانیایی               | x86  | [ro-ro_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_c0379a0d.iso](https://drive.massgrave.dev/ro-ro_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_c0379a0d.iso) |\n| روسی                   | x64  | [ru-ru_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_7f4a7be6.iso](https://drive.massgrave.dev/ru-ru_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_7f4a7be6.iso) |\n| روسی                   | x86  | [ru-ru_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_c8da2269.iso](https://drive.massgrave.dev/ru-ru_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_c8da2269.iso) |\n| اسلواکی                 | x64  | [sk-sk_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_74671853.iso](https://drive.massgrave.dev/sk-sk_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_74671853.iso) |\n| اسلواکی                 | x86  | [sk-sk_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_aeeff18d.iso](https://drive.massgrave.dev/sk-sk_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_aeeff18d.iso) |\n| اسلوونیایی              | x64  | [sl-si_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_b2e87da5.iso](https://drive.massgrave.dev/sl-si_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_b2e87da5.iso) |\n| اسلوونیایی              | x86  | [sl-si_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_13c039a7.iso](https://drive.massgrave.dev/sl-si_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_13c039a7.iso) |\n| صربی (لاتین)           | x64  | [sr-latn-rs_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_e088ede7.iso](https://drive.massgrave.dev/sr-latn-rs_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_e088ede7.iso) |\n| صربی (لاتین)           | x86  | [sr-latn-rs_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_02fee63a.iso](https://drive.massgrave.dev/sr-latn-rs_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_02fee63a.iso) |\n| سوئدی                  | x64  | [sv-se_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_f057124e.iso](https://drive.massgrave.dev/sv-se_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_f057124e.iso) |\n| سوئدی                  | x86  | [sv-se_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_5f1e7d95.iso](https://drive.massgrave.dev/sv-se_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_5f1e7d95.iso) |\n| تایلندی                 | x64  | [th-th_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_6760ba98.iso](https://drive.massgrave.dev/th-th_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_6760ba98.iso) |\n| تایلندی                 | x86  | [th-th_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_550fc8fe.iso](https://drive.massgrave.dev/th-th_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_550fc8fe.iso) |\n| ترکی                   | x64  | [tr-tr_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_56190279.iso](https://drive.massgrave.dev/tr-tr_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_56190279.iso) |\n| ترکی                   | x86  | [tr-tr_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_b7aa976e.iso](https://drive.massgrave.dev/tr-tr_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_b7aa976e.iso) |\n| اوکراینی                | x64  | [uk-ua_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_55333ce6.iso](https://drive.massgrave.dev/uk-ua_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_55333ce6.iso) |\n| اوکراینی                | x86  | [uk-ua_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_59f7ba23.iso](https://drive.massgrave.dev/uk-ua_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_59f7ba23.iso) |\n| چینی (ساده‌شده)         | x64  | [zh-cn_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_7a96a427.iso](https://drive.massgrave.dev/zh-cn_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_7a96a427.iso) |\n| چینی (ساده‌شده)         | x86  | [zh-cn_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_5648cb96.iso](https://drive.massgrave.dev/zh-cn_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_5648cb96.iso) |\n| چینی (سنتی)            | x64  | [zh-tw_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_3bcee6f7.iso](https://drive.massgrave.dev/zh-tw_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_3bcee6f7.iso) |\n| چینی (سنتی)            | x86  | [zh-tw_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_4c18674b.iso](https://drive.massgrave.dev/zh-tw_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_4c18674b.iso) |\n\n== Windows 10 IoT Enterprise 22H2\n\n**ویندوز 10 نسخه 22H2 اینترپرایز IoT**\n\n> **نسخه LTSC نیست**\n> \n> - به‌روزرسانی اکتبر ۲۰۲۲\n> - بیلد ۱۹۰۴۵.۲۰۰۶\n> - این فایل ISO هر ماه به‌روزرسانی نمی‌شود  \n\n| زبان    | معماری | لینک                                                                                                                                                               |\n|:--------|:-----|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| انگلیسی | x64  | [en-us_windows_10_iot_enterprise_version_22h2_x64_dvd_51cc370f.iso](https://drive.massgrave.dev/en-us_windows_10_iot_enterprise_version_22h2_x64_dvd_51cc370f.iso) |\n\n <br/> \n\n## نکته مهم برای نسخه IoT Enterprise (GAC): \n\n::: danger **`این نسخه، LTSC نیست`**\n\n### هنگام نصب ویندوز نسخه IoT Enterprise (GAC) به این نکات توجه کنید:\n\n- اگر سیستم شما دارای **مجوز OEM** در مادربرد (نسخه Pro یا بالاتر) باشد،\n- و کلید مورد استفاده در Setup **OEM** باشد،\n- آنگاه Windows Setup در مرحله نهایی، کلید OEM را از مادربرد اعمال خواهد کرد.\n\n### این به چه معناست؟  \n- شما می‌توانید **IoT Enterprise** را با ویژگی‌های آن (از جمله الزامات سخت‌افزاری ساده در ویندوز ۱۱ نسخه ۲۴H2 و غیره) نصب کنید.\n- پس از نصب، سیستم نسخه Pro را نشان می‌دهد، نه IoT Enterprise.\n- این اتفاق می‌افتد زیرا IoT Enterprise (GAC) تنها با یک کلید OEM توزیع می‌شود.\n- این رفتار طبیعی است و نمی‌توان از آن اجتناب کرد.\n\n### رفع مشکل  \nپس از نصب، با اجرای دستور زیر در ابزار خط فرمان (CMD) در حالت ادمین، نسخه را تغییر دهید:  \n\n```shell\nslmgr.vbs /ipk XQQYW-NFFMW-XJPBH-K8732-CKFFD\n```\n\n== Windows 10 ARM64 22H2\n\n**ویندوز 10 ARM64 نسخه 22H2**\n\nلینک‌های [**ویندوز ARM**](./windows_arm_links) را بررسی کنید.\n\n== Windows 10 Enterprise LTSC\n\n**ویندوز 10 اینترپرایز LTSC**\n\nلینک‌های [**ویندوز LTSC**](./windows_ltsc_links) را بررسی کنید\n\n\n== Other Versions\n\n**نسخه‌های دیگر**\n\n- [ربات MVS][2]\n- [os.click/][3]\n- [files.rg-adguard.net/version/216fefbe94c5][4]\n- فایل [رسمی ESD مایکروسافت][5] و [مبدل ESD به ISO][6] توسط [abbodi1406][7] را دانلود کنید\n  - فایل ESD را کنار `decrypt.cmd` قرار دهید و آن اسکریپت را اجرا کنید\n  - این کار فایل ISO را ایجاد می‌کند\n  - این فرآیند همانند روشی است که ابزار رسمی MCT برای ایجاد ISOهای ویندوز 10 و 11 استفاده می‌کند\n\n:::\n\n[1]: https://support.microsoft.com/topic/kb5028997-instructions-to-manually-resize-your-partition-to-install-the-winre-update-400faa27-9343-461c-ada9-24c8229763bf\n[2]: https://discord.gg/FajfGaH3nD\n[3]: https://os.click/\n[4]: https://files.rg-adguard.net/version/f0bd8307-d897-ef77-dbd6-216fefbe94c5\n[5]: https://worproject.com/esd\n[6]: https://github.com/abbodi1406/WHD/raw/master/scripts/esd-decrypter-wimlib-65.7z\n[7]: https://forums.mydigitallife.net/threads/abbodi1406s-batch-scripts-repo.74197/\n[8]: https://www.microsoft.com/en-us/software-download\n[MSDL]: https://msdl.gravesoft.dev/#2618\n[genuine]: https://nirevil.github.io/windows-activation/fa/wa/genuine-installation-media#%D8%AA%D8%A7%D9%94%DB%8C%DB%8C%D8%AF-%D8%A7%D8%B5%D8%A7%D9%84%D8%AA-%D9%81%D8%A7%DB%8C%D9%84%E2%80%8C%D9%87%D8%A7\n"
  },
  {
    "path": "docs/fa/wa/windows_11_links.md",
    "content": "---\nlayout: doc\noutline: deep\nlang: fa-IR\ndir: rtl\ntitle: 'دانلود ویندوز 11'\ndescription: 'تمام لینک‌های دانلود فقط به فایل‌های اصلی منتهی می‌شوند'\ndate: 2025-07-19\neditLink: true\n---\n\n# دانلود ویندوز 11\n\n::: info تمام لینک‌های دانلود فقط به **`فایل‌های اصلی`** منتهی می‌شوند\n\n- [**سوالات متداول**](./genuine-installation-media#سوالات-متداول)\n\n- [**چگونه اصالت این فایل‌ها رو تایید کنیم؟**][Genuine]\n\nفایل‌های Iso مخصوص مصرف‌کنندگان شامل همه نسخه‌ها، مانند خانگی، حرفه‌ای و آموزشی می‌شود، اما نسخه سازمانی را شامل نمی‌شود. در مقابل، ایزوی مخصوص کسب‌وکار شامل همه نسخه‌ها به جز نسخه‌های خانگی است.\n\n:::\n\n<br/>\n\n## لینک های دانلود\n\n### ویندوز ۱۱ نسخه 24H2\n\n:::tabs\n\n== Windows 11 Consumer 24H2 🤍\n\n**ویندوز ۱۱ نسخه مصرف‌کننده 24H2**\n\n> - بیلد 26100.1742 (RTM)\n\n**لینک‌های دانلود:** [MSDL 🤍][MSDL] / [مایکروسافت][1]\n\n== Windows 11 Consumer 24H2\n\n**ویندوز ۱۱ نسخه مصرف‌کننده 24H2**\n\n> - بیلد 26100.4652 (جولای ۲۰۲۵)  \n\n| زبان | معماری | لینک |\n|:---|:---|:---|\n| عربی | x64 | [ar-sa_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/ar-sa_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| بلغاری | x64 | [bg-bg_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/bg-bg_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| چکی | x64 | [cs-cz_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/cs-cz_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| دانمارکی | x64 | [da-dk_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/da-dk_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| آلمانی | x64 | [de-de_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/de-de_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| یونانی | x64 | [el-gr_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/el-gr_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| انگلیسی (بریتانیا) | x64 | [en-gb_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/en-gb_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| انگلیسی | x64 | [en-us_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/en-us_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| اسپانیایی | x64 | [es-es_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/es-es_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| اسپانیایی (مکزیک) | x64 | [es-mx_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/es-mx_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| استونیایی | x64 | [et-ee_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/et-ee_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| فنلاندی | x64 | [fi-fi_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/fi-fi_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| فرانسوی (کانادا) | x64 | [fr-ca_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/fr-ca_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| فرانسوی | x64 | [fr-fr_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/fr-fr_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| عبری | x64 | [he-il_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/he-il_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| کروات | x64 | [hr-hr_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/hr-hr_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| مجارستانی | x64 | [hu-hu_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/hu-hu_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| ایتالیایی | x64 | [it-it_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/it-it_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| ژاپنی | x64 | [ja-jp_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/ja-jp_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| کره‌ای | x64 | [ko-kr_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/ko-kr_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| لیتوانیایی | x64 | [lt-lt_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/lt-lt_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| لتونیایی | x64 | [lv-lv_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/lv-lv_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| نروژی (بوکمال) | x64 | [nb-no_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/nb-no_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| هلندی (هلند) | x64 | [nl-nl_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/nl-nl_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| لهستانی | x64 | [pl-pl_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/pl-pl_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| پرتغالی (برزیل) | x64 | [pt-br_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/pt-br_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| پرتغالی (پرتغال) | x64 | [pt-pt_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/pt-pt_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| رومانیایی | x64 | [ro-ro_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/ro-ro_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| روسی | x64 | [ru-ru_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/ru-ru_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| اسلواکی | x64 | [sk-sk_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/sk-sk_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| اسلوونیایی | x64 | [sl-si_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/sl-si_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| صربی (لاتین) | x64 | [sr-latn-rs_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/sr-latn-rs_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| سوئدی | x64 | [sv-se_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/sv-se_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| تایلندی | x64 | [th-th_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/th-th_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| ترکی | x64 | [tr-tr_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/tr-tr_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| اوکراینی | x64 | [uk-ua_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/uk-ua_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| چینی (ساده‌شده) | x64 | [zh-cn_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/zh-cn_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| چینی (سنتی) | x64 | [zh-tw_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/zh-tw_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n\n\n== Windows 11 Business 24H2\n\n**ویندوز ۱۱ نسخه تجاری 24H2**\n\n> - بیلد 26100.4652 (جولای ۲۰۲۵)  \n\n| زبان | معماری | لینک |\n|:---|:---|:---|\n| عربی | x64 | [ar-sa_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_0af13ec2.iso](https://drive.massgrave.dev/ar-sa_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_0af13ec2.iso) |\n| بلغاری | x64 | [bg-bg_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_fd57752d.iso](https://drive.massgrave.dev/bg-bg_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_fd57752d.iso) |\n| چکی | x64 | [cs-cz_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_0b114ea9.iso](https://drive.massgrave.dev/cs-cz_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_0b114ea9.iso) |\n| دانمارکی | x64 | [da-dk_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_80ec9188.iso](https://drive.massgrave.dev/da-dk_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_80ec9188.iso) |\n| آلمانی | x64 | [de-de_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_294f3ab2.iso](https://drive.massgrave.dev/de-de_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_294f3ab2.iso) |\n| یونانی | x64 | [el-gr_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_ac44df73.iso](https://drive.massgrave.dev/el-gr_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_ac44df73.iso) |\n| انگلیسی (بریتانیا) | x64 | [en-gb_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_f3d32c03.iso](https://drive.massgrave.dev/en-gb_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_f3d32c03.iso) |\n| انگلیسی | x64 | [en-us_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_d32522f0.iso](https://drive.massgrave.dev/en-us_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_d32522f0.iso) |\n| اسپانیایی | x64 | [es-es_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_764f21b5.iso](https://drive.massgrave.dev/es-es_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_764f21b5.iso) |\n| اسپانیایی (مکزیک) | x64 | [es-mx_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_bba0e40e.iso](https://drive.massgrave.dev/es-mx_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_bba0e40e.iso) |\n| استونیایی | x64 | [et-ee_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_1658e819.iso](https://drive.massgrave.dev/et-ee_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_1658e819.iso) |\n| فنلاندی | x64 | [fi-fi_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_1933118a.iso](https://drive.massgrave.dev/fi-fi_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_1933118a.iso) |\n| فرانسوی (کانادا) | x64 | [fr-ca_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_bc5a0c07.iso](https://drive.massgrave.dev/fr-ca_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_bc5a0c07.iso) |\n| فرانسوی | x64 | [fr-fr_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_d3855cb1.iso](https://drive.massgrave.dev/fr-fr_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_d3855cb1.iso) |\n| عبری | x64 | [he-il_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_42d8b9ae.iso](https://drive.massgrave.dev/he-il_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_42d8b9ae.iso) |\n| کروات | x64 | [hr-hr_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_6dc8d8b0.iso](https://drive.massgrave.dev/hr-hr_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_6dc8d8b0.iso) |\n| مجارستانی | x64 | [hu-hu_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_cb51f40a.iso](https://drive.massgrave.dev/hu-hu_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_cb51f40a.iso) |\n| ایتالیایی | x64 | [it-it_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_a9cca85c.iso](https://drive.massgrave.dev/it-it_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_a9cca85c.iso) |\n| ژاپنی | x64 | [ja-jp_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_1c229723.iso](https://drive.massgrave.dev/ja-jp_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_1c229723.iso) |\n| کره‌ای | x64 | [ko-kr_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_c7242852.iso](https://drive.massgrave.dev/ko-kr_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_c7242852.iso) |\n| لیتوانیایی | x64 | [lt-lt_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_d8e117e5.iso](https://drive.massgrave.dev/lt-lt_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_d8e117e5.iso) |\n| لتونیایی | x64 | [lv-lv_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_726bf584.iso](https://drive.massgrave.dev/lv-lv_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_726bf584.iso) |\n| نروژی (بوکمال) | x64 | [nb-no_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_7cdcbe2a.iso](https://drive.massgrave.dev/nb-no_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_7cdcbe2a.iso) |\n| هلندی (هلند) | x64 | [nl-nl_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_82ad739e.iso](https://drive.massgrave.dev/nl-nl_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_82ad739e.iso) |\n| لهستانی | x64 | [pl-pl_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_b494aad2.iso](https://drive.massgrave.dev/pl-pl_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_b494aad2.iso) |\n| پرتغالی (برزیل) | x64 | [pt-br_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_b82ad142.iso](https://drive.massgrave.dev/pt-br_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_b82ad142.iso) |\n| پرتغالی (پرتغال) | x64 | [pt-pt_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_1b939611.iso](https://drive.massgrave.dev/pt-pt_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_1b939611.iso) |\n| رومانیایی | x64 | [ro-ro_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_09b09214.iso](https://drive.massgrave.dev/ro-ro_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_09b09214.iso) |\n| روسی | x64 | [ru-ru_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_52b1a858.iso](https://drive.massgrave.dev/ru-ru_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_52b1a858.iso) |\n| اسلواکی | x64 | [sk-sk_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_bd5d106f.iso](https://drive.massgrave.dev/sk-sk_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_bd5d106f.iso) |\n| اسلوونیایی | x64 | [sl-si_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_b2bc297c.iso](https://drive.massgrave.dev/sl-si_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_b2bc297c.iso) |\n| صربی (لاتین) | x64 | [sr-latn-rs_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_da2409a9.iso](https://drive.massgrave.dev/sr-latn-rs_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_da2409a9.iso) |\n| سوئدی | x64 | [sv-se_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_2fb79b0c.iso](https://drive.massgrave.dev/sv-se_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_2fb79b0c.iso) |\n| تایلندی | x64 | [th-th_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_137cdfa2.iso](https://drive.massgrave.dev/th-th_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_137cdfa2.iso) |\n| ترکی | x64 | [tr-tr_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_6f274429.iso](https://drive.massgrave.dev/tr-tr_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_6f274429.iso) |\n| اوکراینی | x64 | [uk-ua_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_9dafad4e.iso](https://drive.massgrave.dev/uk-ua_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_9dafad4e.iso) |\n| چینی (ساده‌شده) | x64 | [zh-cn_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_272dc7af.iso](https://drive.massgrave.dev/zh-cn_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_272dc7af.iso) |\n| چینی (سنتی) | x64 | [zh-tw_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_283d8a64.iso](https://drive.massgrave.dev/zh-tw_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_283d8a64.iso) |\n\n== Windows 11 IoT Enterprise 24H2\n\n**ویندوز ۱۱ اینترپرایز IoT نسخه 24H2**\n\n> **نسخه LTSC نیست**\n> \n> - نسخه ساخت ۲۶۱۰۰.۱۷۴۲ (RTM)\n> - این فایل ISO هر ماه به‌روزرسانی نمی‌شود\n> - ISO مربوط به IoT Enterprise فقط به زبان انگلیسی موجود است.  \n\n| زبان | معماری | لینک |\n|:---|:---|:---|\n| انگلیسی | x64 | [en-us_windows_11_iot_enterprise_version_24h2_x64_dvd_3a99b72b.iso](https://drive.massgrave.dev/en-us_windows_11_iot_enterprise_version_24h2_x64_dvd_3a99b72b.iso) |\n\n<br/> \n\n## نکته مهم برای نسخه IoT Enterprise (GAC): \n\n::: danger **`این نسخه، LTSC نیست`**\n\n### هنگام نصب ویندوز نسخه IoT Enterprise (GAC) به این نکات توجه کنید:\n\n- اگر سیستم شما دارای **مجوز OEM** در مادربرد (نسخه Pro یا بالاتر) باشد،\n- و کلید مورد استفاده در Setup **OEM** باشد،\n- آنگاه Windows Setup در مرحله نهایی، کلید OEM را از مادربرد اعمال خواهد کرد.\n\n### این به چه معناست؟  \n- شما می‌توانید **IoT Enterprise** را با ویژگی‌های آن (از جمله الزامات سخت‌افزاری ساده در ویندوز ۱۱ نسخه ۲۴H2 و غیره) نصب کنید.\n- پس از نصب، سیستم نسخه Pro را نشان می‌دهد، نه IoT Enterprise.\n- این اتفاق می‌افتد زیرا IoT Enterprise (GAC) تنها با یک کلید OEM توزیع می‌شود.\n- این رفتار طبیعی است و نمی‌توان از آن اجتناب کرد.\n\n### رفع مشکل  \nپس از نصب، با اجرای دستور زیر در ابزار خط فرمان (CMD) در حالت ادمین، نسخه را تغییر دهید:  \n\n```shell\nslmgr.vbs /ipk XQQYW-NFFMW-XJPBH-K8732-CKFFD\n```\n\n== Windows 11 ARM64 24H2\n\n**ویندوز ۱۱ ARM64 نسخه 24H2**\n\n[**این صفحه**](./windows_arm_links) را بررسی کنید\n\n== Windows 11 (IoT) Enterprise LTSC 2024\n\n**ویندوز ۱۱ (IoT) اینترپرایز LTSC 2024**\n\n[**این صفحه**](./windows_ltsc_links) را بررسی کنید\n\n== Other Versions\n\n**نسخه‌های دیگر**\n\n- [ربات MVS][2]\n- [os.click/][3]\n- [files.rg-adguard.net/version/c5][4]\n- فایل [رسمی ESD مایکروسافت][5] و [مبدل ESD به ISO][6] از [abbodi1406][7] را دانلود کنید.\n  - فایل ESD را کنار `decrypt.cmd` قرار دهید و اسکریپت را اجرا کنید.\n  - این فایل ISO را ایجاد خواهد کرد.\n  - این فرآیند مشابه روشی است که ابزار رسمی MCT برای ایجاد فایل‌های ISO ویندوز ۱۰ و ۱۱ استفاده می‌کند.\n\n:::\n\n### ویندوز ۱۱ 23H2 (قدیمی)\n\n:::tabs\n\n== Windows 11 Consumer 23H2\n\n**ویندوز ۱۱ نسخه مصرف‌کننده 23H2**\n\n> بیلد 22631.5624 (جولای ۲۰۲۵)  \n\n| زبان | معماری | لینک |\n|:---|:---|:---|\n| عربی | x64 | [ar-sa_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/ar-sa_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| بلغاری | x64 | [bg-bg_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/bg-bg_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| چکی | x64 | [cs-cz_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/cs-cz_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| دانمارکی | x64 | [da-dk_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/da-dk_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| آلمانی | x64 | [de-de_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/de-de_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| یونانی | x64 | [el-gr_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/el-gr_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| انگلیسی (بریتانیا) | x64 | [en-gb_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/en-gb_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| انگلیسی | x64 | [en-us_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/en-us_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| اسپانیایی | x64 | [es-es_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/es-es_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| اسپانیایی (مکزیک) | x64 | [es-mx_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/es-mx_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| استونیایی | x64 | [et-ee_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/et-ee_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| فنلاندی | x64 | [fi-fi_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/fi-fi_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| فرانسوی (کانادا) | x64 | [fr-ca_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/fr-ca_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| فرانسوی | x64 | [fr-fr_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/fr-fr_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| عبری | x64 | [he-il_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/he-il_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| کروات | x64 | [hr-hr_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/hr-hr_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| مجارستانی | x64 | [hu-hu_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/hu-hu_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| ایتالیایی | x64 | [it-it_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/it-it_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| ژاپنی | x64 | [ja-jp_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/ja-jp_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| کره‌ای | x64 | [ko-kr_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/ko-kr_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| لیتوانیایی | x64 | [lt-lt_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/lt-lt_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| لتونیایی | x64 | [lv-lv_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/lv-lv_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| نروژی (بوکمال) | x64 | [nb-no_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/nb-no_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| هلندی (هلند) | x64 | [nl-nl_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/nl-nl_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| لهستانی | x64 | [pl-pl_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/pl-pl_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| پرتغالی (برزیل) | x64 | [pt-br_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/pt-br_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| پرتغالی (پرتغال) | x64 | [pt-pt_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/pt-pt_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| رومانیایی | x64 | [ro-ro_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/ro-ro_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| روسی | x64 | [ru-ru_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/ru-ru_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| اسلواکی | x64 | [sk-sk_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/sk-sk_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| اسلوونیایی | x64 | [sl-si_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/sl-si_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| صربی (لاتین) | x64 | [sr-latn-rs_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/sr-latn-rs_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| سوئدی | x64 | [sv-se_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/sv-se_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| تایلندی | x64 | [th-th_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/th-th_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| ترکی | x64 | [tr-tr_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/tr-tr_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| اوکراینی | x64 | [uk-ua_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/uk-ua_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| چینی (ساده‌شده) | x64 | [zh-cn_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/zh-cn_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| چینی (سنتی) | x64 | [zh-tw_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/zh-tw_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n\n== Windows 11 Business 23H2\n\n**ویندوز ۱۱ نسخه تجاری 23H2**\n\n> - بیلد 22631.5624 (جولای ۲۰۲۵)  \n\n| زبان | معماری | لینک |\n|:---|:---|:---|\n| عربی | x64 | [ar-sa_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_c2c4691f.iso](https://drive.massgrave.dev/ar-sa_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_c2c4691f.iso) |\n| بلغاری | x64 | [bg-bg_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_c5a4fd2a.iso](https://drive.massgrave.dev/bg-bg_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_c5a4fd2a.iso) |\n| چکی | x64 | [cs-cz_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_578b0f6e.iso](https://drive.massgrave.dev/cs-cz_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_578b0f6e.iso) |\n| دانمارکی | x64 | [da-dk_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_bb5bc9ef.iso](https://drive.massgrave.dev/da-dk_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_bb5bc9ef.iso) |\n| آلمانی | x64 | [de-de_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_39b3b0dc.iso](https://drive.massgrave.dev/de-de_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_39b3b0dc.iso) |\n| یونانی | x64 | [el-gr_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_8f40cbea.iso](https://drive.massgrave.dev/el-gr_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_8f40cbea.iso) |\n| انگلیسی (بریتانیا) | x64 | [en-gb_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_6e2b3463.iso](https://drive.massgrave.dev/en-gb_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_6e2b3463.iso) |\n| انگلیسی | x64 | [en-us_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_eaddbb3f.iso](https://drive.massgrave.dev/en-us_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_eaddbb3f.iso) |\n| اسپانیایی | x64 | [es-es_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_6dfbdb38.iso](https://drive.massgrave.dev/es-es_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_6dfbdb38.iso) |\n| اسپانیایی (مکزیک) | x64 | [es-mx_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_845ecdee.iso](https://drive.massgrave.dev/es-mx_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_845ecdee.iso) |\n| استونیایی | x64 | [et-ee_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_26ef3045.iso](https://drive.massgrave.dev/et-ee_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_26ef3045.iso) |\n| فنلاندی | x64 | [fi-fi_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_dde04765.iso](https://drive.massgrave.dev/fi-fi_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_dde04765.iso) |\n| فرانسوی (کانادا) | x64 | [fr-ca_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_f21592a1.iso](https://drive.massgrave.dev/fr-ca_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_f21592a1.iso) |\n| فرانسوی | x64 | [fr-fr_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_e8e8bd3f.iso](https://drive.massgrave.dev/fr-fr_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_e8e8bd3f.iso) |\n| عبری | x64 | [he-il_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_7a3307be.iso](https://drive.massgrave.dev/he-il_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_7a3307be.iso) |\n| کروات | x64 | [hr-hr_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_513c5e56.iso](https://drive.massgrave.dev/hr-hr_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_513c5e56.iso) |\n| مجارستانی | x64 | [hu-hu_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_eb4a355a.iso](https://drive.massgrave.dev/hu-hu_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_eb4a355a.iso) |\n| ایتالیایی | x64 | [it-it_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_13e78b2c.iso](https://drive.massgrave.dev/it-it_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_13e78b2c.iso) |\n| ژاپنی | x64 | [ja-jp_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_0e42e1be.iso](https://drive.massgrave.dev/ja-jp_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_0e42e1be.iso) |\n| کره‌ای | x64 | [ko-kr_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_d3a0b9aa.iso](https://drive.massgrave.dev/ko-kr_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_d3a0b9aa.iso) |\n| لیتوانیایی | x64 | [lt-lt_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_a947c18b.iso](https://drive.massgrave.dev/lt-lt_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_a947c18b.iso) |\n| لتونیایی | x64 | [lv-lv_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_470a49c6.iso](https://drive.massgrave.dev/lv-lv_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_470a49c6.iso) |\n| نروژی (بوکمال) | x64 | [nb-no_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_1b3cc06c.iso](https://drive.massgrave.dev/nb-no_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_1b3cc06c.iso) |\n| هلندی (هلند) | x64 | [nl-nl_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_88384b5f.iso](https://drive.massgrave.dev/nl-nl_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_88384b5f.iso) |\n| لهستانی | x64 | [pl-pl_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_89751e26.iso](https://drive.massgrave.dev/pl-pl_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_89751e26.iso) |\n| پرتغالی (برزیل) | x64 | [pt-br_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_4049e0c4.iso](https://drive.massgrave.dev/pt-br_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_4049e0c4.iso) |\n| پرتغالی (پرتغال) | x64 | [pt-pt_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_d7b70a3d.iso](https://drive.massgrave.dev/pt-pt_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_d7b70a3d.iso) |\n| رومانیایی | x64 | [ro-ro_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_c0acc1eb.iso](https://drive.massgrave.dev/ro-ro_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_c0acc1eb.iso) |\n| روسی | x64 | [ru-ru_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_ec767ad3.iso](https://drive.massgrave.dev/ru-ru_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_ec767ad3.iso) |\n| اسلواکی | x64 | [sk-sk_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_5704b0a6.iso](https://drive.massgrave.dev/sk-sk_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_5704b0a6.iso) |\n| اسلوونیایی | x64 | [sl-si_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_ad585748.iso](https://drive.massgrave.dev/sl-si_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_ad585748.iso) |\n| صربی (لاتین) | x64 | [sr-latn-rs_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_04829379.iso](https://drive.massgrave.dev/sr-latn-rs_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_04829379.iso) |\n| سوئدی | x64 | [sv-se_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_b1f9eab9.iso](https://drive.massgrave.dev/sv-se_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_b1f9eab9.iso) |\n| تایلندی | x64 | [th-th_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_cf38f1b8.iso](https://drive.massgrave.dev/th-th_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_cf38f1b8.iso) |\n| ترکی | x64 | [tr-tr_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_45748a26.iso](https://drive.massgrave.dev/tr-tr_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_45748a26.iso) |\n| اوکراینی | x64 | [uk-ua_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_922e2dfb.iso](https://drive.massgrave.dev/uk-ua_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_922e2dfb.iso) |\n| چینی (ساده‌شده) | x64 | [zh-cn_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_34457911.iso](https://drive.massgrave.dev/zh-cn_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_34457911.iso) |\n| چینی (سنتی) | x64 | [zh-tw_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_e12e35d1.iso](https://drive.massgrave.dev/zh-tw_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_e12e35d1.iso) |\n\n== Windows 11 Enterprise IoT 23H2\n\n**ویندوز ۱۱ اینترپرایز IoT نسخه 23H2**\n\n> **نسخه LTSC نیست**\n> \n> - نسخه ساخت 22631.2428 (۳۱ اکتبر ۲۰۲۳)\n> - این فایل ISO هر ماه به‌روزرسانی نمی‌شود\n\n| زبان | معماری | لینک |\n|:---|:---|:---|\n| انگلیسی | x64 | [en-us_windows_11_iot_enterprise_version_23h2_x64_dvd_fb37549c.iso](https://drive.massgrave.dev/en-us_windows_11_iot_enterprise_version_23h2_x64_dvd_fb37549c.iso) |\n\n<br/> \n\n## نکته مهم برای نسخه IoT Enterprise (GAC): \n\n::: danger **`این نسخه، LTSC نیست`**\n\n### هنگام نصب ویندوز نسخه IoT Enterprise (GAC) به این نکات توجه کنید:\n\n- اگر سیستم شما دارای **مجوز OEM** در مادربرد (نسخه Pro یا بالاتر) باشد،\n- و کلید مورد استفاده در Setup **OEM** باشد،\n- آنگاه Windows Setup در مرحله نهایی، کلید OEM را از مادربرد اعمال خواهد کرد.\n\n### این به چه معناست؟  \n- شما می‌توانید **IoT Enterprise** را با ویژگی‌های آن (از جمله الزامات سخت‌افزاری ساده در ویندوز ۱۱ نسخه ۲۴H2 و غیره) نصب کنید.\n- پس از نصب، سیستم نسخه Pro را نشان می‌دهد، نه IoT Enterprise.\n- این اتفاق می‌افتد زیرا IoT Enterprise (GAC) تنها با یک کلید OEM توزیع می‌شود.\n- این رفتار طبیعی است و نمی‌توان از آن اجتناب کرد.\n\n### رفع مشکل  \nپس از نصب، با اجرای دستور زیر در ابزار خط فرمان (CMD) در حالت ادمین، نسخه را تغییر دهید:  \n\n```shell\nslmgr.vbs /ipk XQQYW-NFFMW-XJPBH-K8732-CKFFD\n```\n\n:::\n\n[MSDL]: https://msdl.gravesoft.dev/#3113\n[1]: https://www.microsoft.com/en-us/software-download/windows11\n[2]: https://discord.gg/FajfGaH3nD\n[3]: https://os.click/\n[4]: https://files.rg-adguard.net/version/f0bd8307-d897-ef77-dbd6-216fefbe94c5\n[5]: https://worproject.com/esd\n[6]: https://github.com/abbodi1406/WHD/raw/master/scripts/esd-decrypter-wimlib-65.7z\n[7]: https://forums.mydigitallife.net/threads/abbodi1406s-batch-scripts-repo.74197/\n[genuine]: https://nirevil.github.io/windows-activation/fa/wa/genuine-installation-media#%D8%AA%D8%A7%D9%94%DB%8C%DB%8C%D8%AF-%D8%A7%D8%B5%D8%A7%D9%84%D8%AA-%D9%81%D8%A7%DB%8C%D9%84%E2%80%8C%D9%87%D8%A7\n"
  },
  {
    "path": "docs/fa/wa/windows_7_links.md",
    "content": "---\nlayout: doc\noutline: deep\nlang: fa-IR\ndir: rtl\ntitle: 'دانلود ویندوز 7'\ndescription: 'تمام لینک‌های دانلود فقط به فایل‌های اصلی منتهی می‌شوند'\ndate: 2023-01-19\neditLink: true\n---\n\n# دانلود ویندوز 7\n\n<br/> \n\n::: info تمام لینک‌های دانلود فقط به **`فایل‌های اصلی`** منتهی می‌شوند\n\n- [**سوالات متداول**](./genuine-installation-media#سوالات-متداول)\n\n- [**چگونه اصالت این فایل‌ها رو تایید کنیم؟**][Genuine]\n\n\n- شما می‌توانید ویندوز ۷ را با [گزینه TSforge در MAS](./index#مرحله-۲) به طور دائم فعال کنید.\n\n- فایل‌های ISO نسخه‌های Ultimate، Professional، Home Premium، Home Basic و Starter شامل همه نسخه‌ها به جز Enterprise هستند، اما به طور پیش‌فرض هنگام نصب ویندوز نمایش داده نمی‌شوند. می‌توانید به راحتی هر یک از آنها را هنگام نصب انتخاب کنید و برای این کار باید فایل `sources\\ei.cfg` را در USB یا ISO قابل بوت خود حذف یا ویرایش کنید.\n\n- برای دریافت آخرین به‌روزرسانی‌ها در نصب ویندوز ۷، می‌توانید از [**Simplix Pack**][1] استفاده کنید و ESU را با گزینه TSforge در MAS فعال کنید.\n:::\n\n<br/>\n\n## لینک های دانلود\n\n**ویندوز 7 SP1**\n\n> - بیلد 7601.17514\n\n:::tabs\n\n== ویندوز 7 Ultimate SP1 🤍\n\n**ویندوز 7 Ultimate SP1**  \n\n| زبان | معماری | لینک |\n|:---|:---|:---|\n| عربی | x64 | [ar_windows_7_ultimate_with_sp1_x64_dvd_u_677345.iso](https://drive.massgrave.dev/ar_windows_7_ultimate_with_sp1_x64_dvd_u_677345.iso) |\n| عربی | x86 | [ar_windows_7_ultimate_with_sp1_x86_dvd_u_677448.iso](https://drive.massgrave.dev/ar_windows_7_ultimate_with_sp1_x86_dvd_u_677448.iso) |\n| بلغاری | x64 | [bg_windows_7_ultimate_with_sp1_x64_dvd_u_677363.iso](https://drive.massgrave.dev/bg_windows_7_ultimate_with_sp1_x64_dvd_u_677363.iso) |\n| بلغاری | x86 | [bg_windows_7_ultimate_with_sp1_x86_dvd_u_677450.iso](https://drive.massgrave.dev/bg_windows_7_ultimate_with_sp1_x86_dvd_u_677450.iso) |\n| چینی (ساده‌شده) | x64 | [cn_windows_7_ultimate_with_sp1_x64_dvd_u_677408.iso](https://drive.massgrave.dev/cn_windows_7_ultimate_with_sp1_x64_dvd_u_677408.iso) |\n| چینی (ساده‌شده) | x86 | [cn_windows_7_ultimate_with_sp1_x86_dvd_u_677486.iso](https://drive.massgrave.dev/cn_windows_7_ultimate_with_sp1_x86_dvd_u_677486.iso) |\n| چکی | x64 | [cs_windows_7_ultimate_with_sp1_x64_dvd_u_677376.iso](https://drive.massgrave.dev/cs_windows_7_ultimate_with_sp1_x64_dvd_u_677376.iso) |\n| چکی | x86 | [cs_windows_7_ultimate_with_sp1_x86_dvd_u_677452.iso](https://drive.massgrave.dev/cs_windows_7_ultimate_with_sp1_x86_dvd_u_677452.iso) |\n| دانمارکی | x64 | [da_windows_7_ultimate_with_sp1_x64_dvd_u_677294.iso](https://drive.massgrave.dev/da_windows_7_ultimate_with_sp1_x64_dvd_u_677294.iso) |\n| دانمارکی | x86 | [da_windows_7_ultimate_with_sp1_x86_dvd_u_677454.iso](https://drive.massgrave.dev/da_windows_7_ultimate_with_sp1_x86_dvd_u_677454.iso) |\n| آلمانی | x64 | [de_windows_7_ultimate_with_sp1_x64_dvd_u_677306.iso](https://drive.massgrave.dev/de_windows_7_ultimate_with_sp1_x64_dvd_u_677306.iso) |\n| آلمانی | x86 | [de_windows_7_ultimate_with_sp1_x86_dvd_u_677456.iso](https://drive.massgrave.dev/de_windows_7_ultimate_with_sp1_x86_dvd_u_677456.iso) |\n| یونانی | x64 | [el_windows_7_ultimate_with_sp1_x64_dvd_u_677318.iso](https://drive.massgrave.dev/el_windows_7_ultimate_with_sp1_x64_dvd_u_677318.iso) |\n| یونانی | x86 | [el_windows_7_ultimate_with_sp1_x86_dvd_u_677458.iso](https://drive.massgrave.dev/el_windows_7_ultimate_with_sp1_x86_dvd_u_677458.iso) |\n| انگلیسی | x64 | [en_windows_7_ultimate_with_sp1_x64_dvd_u_677332.iso](https://drive.massgrave.dev/en_windows_7_ultimate_with_sp1_x64_dvd_u_677332.iso) |\n| انگلیسی | x86 | [en_windows_7_ultimate_with_sp1_x86_dvd_u_677460.iso](https://drive.massgrave.dev/en_windows_7_ultimate_with_sp1_x86_dvd_u_677460.iso) |\n| اسپانیایی | x64 | [es_windows_7_ultimate_with_sp1_x64_dvd_u_677350.iso](https://drive.massgrave.dev/es_windows_7_ultimate_with_sp1_x64_dvd_u_677350.iso) |\n| اسپانیایی | x86 | [es_windows_7_ultimate_with_sp1_x86_dvd_u_677462.iso](https://drive.massgrave.dev/es_windows_7_ultimate_with_sp1_x86_dvd_u_677462.iso) |\n| استونیایی | x64 | [et_windows_7_ultimate_with_sp1_x64_dvd_u_677368.iso](https://drive.massgrave.dev/et_windows_7_ultimate_with_sp1_x64_dvd_u_677368.iso) |\n| استونیایی | x86 | [et_windows_7_ultimate_with_sp1_x86_dvd_u_677464.iso](https://drive.massgrave.dev/et_windows_7_ultimate_with_sp1_x86_dvd_u_677464.iso) |\n| فنلاندی | x64 | [fi_windows_7_ultimate_with_sp1_x64_dvd_u_677378.iso](https://drive.massgrave.dev/fi_windows_7_ultimate_with_sp1_x64_dvd_u_677378.iso) |\n| فنلاندی | x86 | [fi_windows_7_ultimate_with_sp1_x86_dvd_u_677466.iso](https://drive.massgrave.dev/fi_windows_7_ultimate_with_sp1_x86_dvd_u_677466.iso) |\n| فرانسوی | x64 | [fr_windows_7_ultimate_with_sp1_x64_dvd_u_677299.iso](https://drive.massgrave.dev/fr_windows_7_ultimate_with_sp1_x64_dvd_u_677299.iso) |\n| فرانسوی | x86 | [fr_windows_7_ultimate_with_sp1_x86_dvd_u_677434.iso](https://drive.massgrave.dev/fr_windows_7_ultimate_with_sp1_x86_dvd_u_677434.iso) |\n| عبری | x64 | [he_windows_7_ultimate_with_sp1_x64_dvd_u_677312.iso](https://drive.massgrave.dev/he_windows_7_ultimate_with_sp1_x64_dvd_u_677312.iso) |\n| عبری | x86 | [he_windows_7_ultimate_with_sp1_x86_dvd_u_677436.iso](https://drive.massgrave.dev/he_windows_7_ultimate_with_sp1_x86_dvd_u_677436.iso) |\n| چینی (هنگ کنگ) | x64 | [hk_windows_7_ultimate_with_sp1_x64_dvd_u_677411.iso](https://drive.massgrave.dev/hk_windows_7_ultimate_with_sp1_x64_dvd_u_677411.iso) |\n| چینی (هنگ کنگ) | x86 | [hk_windows_7_ultimate_with_sp1_x86_dvd_u_677487.iso](https://drive.massgrave.dev/hk_windows_7_ultimate_with_sp1_x86_dvd_u_677487.iso) |\n| کروات | x64 | [hr_windows_7_ultimate_with_sp1_x64_dvd_u_677324.iso](https://drive.massgrave.dev/hr_windows_7_ultimate_with_sp1_x64_dvd_u_677324.iso) |\n| کروات | x86 | [hr_windows_7_ultimate_with_sp1_x86_dvd_u_677438.iso](https://drive.massgrave.dev/hr_windows_7_ultimate_with_sp1_x86_dvd_u_677438.iso) |\n| مجارستانی | x64 | [hu_windows_7_ultimate_with_sp1_x64_dvd_u_677338.iso](https://drive.massgrave.dev/hu_windows_7_ultimate_with_sp1_x64_dvd_u_677338.iso) |\n| مجارستانی | x86 | [hu_windows_7_ultimate_with_sp1_x86_dvd_u_677441.iso](https://drive.massgrave.dev/hu_windows_7_ultimate_with_sp1_x86_dvd_u_677441.iso) |\n| ایتالیایی | x64 | [it_windows_7_ultimate_with_sp1_x64_dvd_u_677356.iso](https://drive.massgrave.dev/it_windows_7_ultimate_with_sp1_x64_dvd_u_677356.iso) |\n| ایتالیایی | x86 | [it_windows_7_ultimate_with_sp1_x86_dvd_u_677443.iso](https://drive.massgrave.dev/it_windows_7_ultimate_with_sp1_x86_dvd_u_677443.iso) |\n| ژاپنی | x64 | [ja_windows_7_ultimate_with_sp1_x64_dvd_u_677372.iso](https://drive.massgrave.dev/ja_windows_7_ultimate_with_sp1_x64_dvd_u_677372.iso) |\n| ژاپنی | x86 | [ja_windows_7_ultimate_with_sp1_x86_dvd_u_677445.iso](https://drive.massgrave.dev/ja_windows_7_ultimate_with_sp1_x86_dvd_u_677445.iso) |\n| کره‌ای | x64 | [ko_windows_7_ultimate_k_with_sp1_x64_dvd_u_677502.iso](https://drive.massgrave.dev/ko_windows_7_ultimate_k_with_sp1_x64_dvd_u_677502.iso) |\n| کره‌ای | x86 | [ko_windows_7_ultimate_k_with_sp1_x86_dvd_u_677508.iso](https://drive.massgrave.dev/ko_windows_7_ultimate_k_with_sp1_x86_dvd_u_677508.iso) |\n| لیتوانیایی | x64 | [lt_windows_7_ultimate_with_sp1_x64_dvd_u_677379.iso](https://drive.massgrave.dev/lt_windows_7_ultimate_with_sp1_x64_dvd_u_677379.iso) |\n| لیتوانیایی | x86 | [lt_windows_7_ultimate_with_sp1_x86_dvd_u_677447.iso](https://drive.massgrave.dev/lt_windows_7_ultimate_with_sp1_x86_dvd_u_677447.iso) |\n| لتونیایی | x64 | [lv_windows_7_ultimate_with_sp1_x64_dvd_u_677302.iso](https://drive.massgrave.dev/lv_windows_7_ultimate_with_sp1_x64_dvd_u_677302.iso) |\n| لتونیایی | x86 | [lv_windows_7_ultimate_with_sp1_x86_dvd_u_677449.iso](https://drive.massgrave.dev/lv_windows_7_ultimate_with_sp1_x86_dvd_u_677449.iso) |\n| هلندی | x64 | [nl_windows_7_ultimate_with_sp1_x64_dvd_u_677325.iso](https://drive.massgrave.dev/nl_windows_7_ultimate_with_sp1_x64_dvd_u_677325.iso) |\n| هلندی | x86 | [nl_windows_7_ultimate_with_sp1_x86_dvd_u_677453.iso](https://drive.massgrave.dev/nl_windows_7_ultimate_with_sp1_x86_dvd_u_677453.iso) |\n| نروژی | x64 | [no_windows_7_ultimate_with_sp1_x64_dvd_u_677314.iso](https://drive.massgrave.dev/no_windows_7_ultimate_with_sp1_x64_dvd_u_677314.iso) |\n| نروژی | x86 | [no_windows_7_ultimate_with_sp1_x86_dvd_u_677451.iso](https://drive.massgrave.dev/no_windows_7_ultimate_with_sp1_x86_dvd_u_677451.iso) |\n| لهستانی | x64 | [pl_windows_7_ultimate_with_sp1_x64_dvd_u_677341.iso](https://drive.massgrave.dev/pl_windows_7_ultimate_with_sp1_x64_dvd_u_677341.iso) |\n| لهستانی | x86 | [pl_windows_7_ultimate_with_sp1_x86_dvd_u_677455.iso](https://drive.massgrave.dev/pl_windows_7_ultimate_with_sp1_x86_dvd_u_677455.iso) |\n| پرتغالی (پرتغال) | x64 | [pp_windows_7_ultimate_with_sp1_x64_dvd_u_677373.iso](https://drive.massgrave.dev/pp_windows_7_ultimate_with_sp1_x64_dvd_u_677373.iso) |\n| پرتغالی (پرتغال) | x86 | [pp_windows_7_ultimate_with_sp1_x86_dvd_u_677459.iso](https://drive.massgrave.dev/pp_windows_7_ultimate_with_sp1_x86_dvd_u_677459.iso) |\n| پرتغالی (برزیل) | x64 | [pt_windows_7_ultimate_with_sp1_x64_dvd_u_677358.iso](https://drive.massgrave.dev/pt_windows_7_ultimate_with_sp1_x64_dvd_u_677358.iso) |\n| پرتغالی (برزیل) | x86 | [pt_windows_7_ultimate_with_sp1_x86_dvd_u_677457.iso](https://drive.massgrave.dev/pt_windows_7_ultimate_with_sp1_x86_dvd_u_677457.iso) |\n| رومانیایی | x64 | [ro_windows_7_ultimate_with_sp1_x64_dvd_u_677380.iso](https://drive.massgrave.dev/ro_windows_7_ultimate_with_sp1_x64_dvd_u_677380.iso) |\n| رومانیایی | x86 | [ro_windows_7_ultimate_with_sp1_x86_dvd_u_677461.iso](https://drive.massgrave.dev/ro_windows_7_ultimate_with_sp1_x86_dvd_u_677461.iso) |\n| روسی | x64 | [ru_windows_7_ultimate_with_sp1_x64_dvd_u_677391.iso](https://drive.massgrave.dev/ru_windows_7_ultimate_with_sp1_x64_dvd_u_677391.iso) |\n| روسی | x86 | [ru_windows_7_ultimate_with_sp1_x86_dvd_u_677463.iso](https://drive.massgrave.dev/ru_windows_7_ultimate_with_sp1_x86_dvd_u_677463.iso) |\n| اسلواکی | x64 | [sk_windows_7_ultimate_with_sp1_x64_dvd_u_677393.iso](https://drive.massgrave.dev/sk_windows_7_ultimate_with_sp1_x64_dvd_u_677393.iso) |\n| اسلواکی | x86 | [sk_windows_7_ultimate_with_sp1_x86_dvd_u_677465.iso](https://drive.massgrave.dev/sk_windows_7_ultimate_with_sp1_x86_dvd_u_677465.iso) |\n| اسلوونیایی | x64 | [sl_windows_7_ultimate_with_sp1_x64_dvd_u_677396.iso](https://drive.massgrave.dev/sl_windows_7_ultimate_with_sp1_x64_dvd_u_677396.iso) |\n| اسلوونیایی | x86 | [sl_windows_7_ultimate_with_sp1_x86_dvd_u_677467.iso](https://drive.massgrave.dev/sl_windows_7_ultimate_with_sp1_x86_dvd_u_677467.iso) |\n| صربی | x64 | [sr_windows_7_ultimate_with_sp1_x64_dvd_u_677398.iso](https://drive.massgrave.dev/sr_windows_7_ultimate_with_sp1_x64_dvd_u_677398.iso) |\n| صربی | x86 | [sr_windows_7_ultimate_with_sp1_x86_dvd_u_677468.iso](https://drive.massgrave.dev/sr_windows_7_ultimate_with_sp1_x86_dvd_u_677468.iso) |\n| سوئدی | x64 | [sv_windows_7_ultimate_with_sp1_x64_dvd_u_677400.iso](https://drive.massgrave.dev/sv_windows_7_ultimate_with_sp1_x64_dvd_u_677400.iso) |\n| سوئدی | x86 | [sv_windows_7_ultimate_with_sp1_x86_dvd_u_677482.iso](https://drive.massgrave.dev/sv_windows_7_ultimate_with_sp1_x86_dvd_u_677482.iso) |\n| تایلندی | x64 | [th_windows_7_ultimate_with_sp1_x64_dvd_u_677402.iso](https://drive.massgrave.dev/th_windows_7_ultimate_with_sp1_x64_dvd_u_677402.iso) |\n| تایلندی | x86 | [th_windows_7_ultimate_with_sp1_x86_dvd_u_677483.iso](https://drive.massgrave.dev/th_windows_7_ultimate_with_sp1_x86_dvd_u_677483.iso) |\n| ترکی | x64 | [tr_windows_7_ultimate_with_sp1_x64_dvd_u_677404.iso](https://drive.massgrave.dev/tr_windows_7_ultimate_with_sp1_x64_dvd_u_677404.iso) |\n| ترکی | x86 | [tr_windows_7_ultimate_with_sp1_x86_dvd_u_677484.iso](https://drive.massgrave.dev/tr_windows_7_ultimate_with_sp1_x86_dvd_u_677484.iso) |\n| چینی (سنتی) | x64 | [tw_windows_7_ultimate_with_sp1_x64_dvd_u_677414.iso](https://drive.massgrave.dev/tw_windows_7_ultimate_with_sp1_x64_dvd_u_677414.iso) |\n| چینی (سنتی) | x86 | [tw_windows_7_ultimate_with_sp1_x86_dvd_u_677488.iso](https://drive.massgrave.dev/tw_windows_7_ultimate_with_sp1_x86_dvd_u_677488.iso) |\n| اوکراینی | x64 | [uk_windows_7_ultimate_with_sp1_x64_dvd_u_677406.iso](https://drive.massgrave.dev/uk_windows_7_ultimate_with_sp1_x64_dvd_u_677406.iso) |\n| اوکراینی | x86 | [uk_windows_7_ultimate_with_sp1_x86_dvd_u_677485.iso](https://drive.massgrave.dev/uk_windows_7_ultimate_with_sp1_x86_dvd_u_677485.iso) |  \n\n== Windows 7 Enterprise SP1\n\n**ویندوز ۷ Enterprise SP1**\n\n| زبان | معماری | لینک |\n|:---|:---|:---|\n| عربی | x64 | [ar_windows_7_enterprise_with_sp1_x64_dvd_u_677643.iso](https://drive.massgrave.dev/ar_windows_7_enterprise_with_sp1_x64_dvd_u_677643.iso) |\n| عربی | x86 | [ar_windows_7_enterprise_with_sp1_x86_dvd_u_677691.iso](https://drive.massgrave.dev/ar_windows_7_enterprise_with_sp1_x86_dvd_u_677691.iso) |\n| بلغاری | x64 | [bg_windows_7_enterprise_with_sp1_x64_dvd_u_677644.iso](https://drive.massgrave.dev/bg_windows_7_enterprise_with_sp1_x64_dvd_u_677644.iso) |\n| بلغاری | x86 | [bg_windows_7_enterprise_with_sp1_x86_dvd_u_677693.iso](https://drive.massgrave.dev/bg_windows_7_enterprise_with_sp1_x86_dvd_u_677693.iso) |\n| چینی (ساده‌شده) | x64 | [cn_windows_7_enterprise_with_sp1_x64_dvd_u_677685.iso](https://drive.massgrave.dev/cn_windows_7_enterprise_with_sp1_x64_dvd_u_677685.iso) |\n| چینی (ساده‌شده) | x86 | [cn_windows_7_enterprise_with_sp1_x86_dvd_u_677716.iso](https://drive.massgrave.dev/cn_windows_7_enterprise_with_sp1_x86_dvd_u_677716.iso) |\n| چکی | x64 | [cs_windows_7_enterprise_with_sp1_x64_dvd_u_677646.iso](https://drive.massgrave.dev/cs_windows_7_enterprise_with_sp1_x64_dvd_u_677646.iso) |\n| چکی | x86 | [cs_windows_7_enterprise_with_sp1_x86_dvd_u_677695.iso](https://drive.massgrave.dev/cs_windows_7_enterprise_with_sp1_x86_dvd_u_677695.iso) |\n| دانمارکی | x64 | [da_windows_7_enterprise_with_sp1_x64_dvd_u_677648.iso](https://drive.massgrave.dev/da_windows_7_enterprise_with_sp1_x64_dvd_u_677648.iso) |\n| دانمارکی | x86 | [da_windows_7_enterprise_with_sp1_x86_dvd_u_677698.iso](https://drive.massgrave.dev/da_windows_7_enterprise_with_sp1_x86_dvd_u_677698.iso) |\n| آلمانی | x64 | [de_windows_7_enterprise_with_sp1_x64_dvd_u_677649.iso](https://drive.massgrave.dev/de_windows_7_enterprise_with_sp1_x64_dvd_u_677649.iso) |\n| آلمانی | x86 | [de_windows_7_enterprise_with_sp1_x86_dvd_u_677702.iso](https://drive.massgrave.dev/de_windows_7_enterprise_with_sp1_x86_dvd_u_677702.iso) |\n| یونانی | x64 | [el_windows_7_enterprise_with_sp1_x64_dvd_u_677650.iso](https://drive.massgrave.dev/el_windows_7_enterprise_with_sp1_x64_dvd_u_677650.iso) |\n| یونانی | x86 | [el_windows_7_enterprise_with_sp1_x86_dvd_u_677706.iso](https://drive.massgrave.dev/el_windows_7_enterprise_with_sp1_x86_dvd_u_677706.iso) |\n| انگلیسی | x64 | [en_windows_7_enterprise_with_sp1_x64_dvd_u_677651.iso](https://drive.massgrave.dev/en_windows_7_enterprise_with_sp1_x64_dvd_u_677651.iso) |\n| انگلیسی | x86 | [en_windows_7_enterprise_with_sp1_x86_dvd_u_677710.iso](https://drive.massgrave.dev/en_windows_7_enterprise_with_sp1_x86_dvd_u_677710.iso) |\n| اسپانیایی | x64 | [es_windows_7_enterprise_with_sp1_x64_dvd_u_677652.iso](https://drive.massgrave.dev/es_windows_7_enterprise_with_sp1_x64_dvd_u_677652.iso) |\n| اسپانیایی | x86 | [es_windows_7_enterprise_with_sp1_x86_dvd_u_677714.iso](https://drive.massgrave.dev/es_windows_7_enterprise_with_sp1_x86_dvd_u_677714.iso) |\n| استونیایی | x64 | [et_windows_7_enterprise_with_sp1_x64_dvd_u_677653.iso](https://drive.massgrave.dev/et_windows_7_enterprise_with_sp1_x64_dvd_u_677653.iso) |\n| استونیایی | x86 | [et_windows_7_enterprise_with_sp1_x86_dvd_u_677718.iso](https://drive.massgrave.dev/et_windows_7_enterprise_with_sp1_x86_dvd_u_677718.iso) |\n| فنلاندی | x64 | [fi_windows_7_enterprise_with_sp1_x64_dvd_u_677655.iso](https://drive.massgrave.dev/fi_windows_7_enterprise_with_sp1_x64_dvd_u_677655.iso) |\n| فنلاندی | x86 | [fi_windows_7_enterprise_with_sp1_x86_dvd_u_677722.iso](https://drive.massgrave.dev/fi_windows_7_enterprise_with_sp1_x86_dvd_u_677722.iso) |\n| فرانسوی | x64 | [fr_windows_7_enterprise_with_sp1_x64_dvd_u_677656.iso](https://drive.massgrave.dev/fr_windows_7_enterprise_with_sp1_x64_dvd_u_677656.iso) |\n| فرانسوی | x86 | [fr_windows_7_enterprise_with_sp1_x86_dvd_u_677727.iso](https://drive.massgrave.dev/fr_windows_7_enterprise_with_sp1_x86_dvd_u_677727.iso) |\n| عبری | x64 | [he_windows_7_enterprise_with_sp1_x64_dvd_u_677657.iso](https://drive.massgrave.dev/he_windows_7_enterprise_with_sp1_x64_dvd_u_677657.iso) |\n| عبری | x86 | [he_windows_7_enterprise_with_sp1_x86_dvd_u_677733.iso](https://drive.massgrave.dev/he_windows_7_enterprise_with_sp1_x86_dvd_u_677733.iso) |\n| چینی (هنگ کنگ) | x64 | [hk_windows_7_enterprise_with_sp1_x64_dvd_u_677687.iso](https://drive.massgrave.dev/hk_windows_7_enterprise_with_sp1_x64_dvd_u_677687.iso) |\n| چینی (هنگ کنگ) | x86 | [hk_windows_7_enterprise_with_sp1_x86_dvd_u_677720.iso](https://drive.massgrave.dev/hk_windows_7_enterprise_with_sp1_x86_dvd_u_677720.iso) |\n| کروات | x64 | [hr_windows_7_enterprise_with_sp1_x64_dvd_u_677658.iso](https://drive.massgrave.dev/hr_windows_7_enterprise_with_sp1_x64_dvd_u_677658.iso) |\n| کروات | x86 | [hr_windows_7_enterprise_with_sp1_x86_dvd_u_677739.iso](https://drive.massgrave.dev/hr_windows_7_enterprise_with_sp1_x86_dvd_u_677739.iso) |\n| مجارستانی | x64 | [hu_windows_7_enterprise_with_sp1_x64_dvd_u_677659.iso](https://drive.massgrave.dev/hu_windows_7_enterprise_with_sp1_x64_dvd_u_677659.iso) |\n| مجارستانی | x86 | [hu_windows_7_enterprise_with_sp1_x86_dvd_u_677744.iso](https://drive.massgrave.dev/hu_windows_7_enterprise_with_sp1_x86_dvd_u_677744.iso) |\n| ایتالیایی | x64 | [it_windows_7_enterprise_with_sp1_x64_dvd_u_677660.iso](https://drive.massgrave.dev/it_windows_7_enterprise_with_sp1_x64_dvd_u_677660.iso) |\n| ایتالیایی | x86 | [it_windows_7_enterprise_with_sp1_x86_dvd_u_677749.iso](https://drive.massgrave.dev/it_windows_7_enterprise_with_sp1_x86_dvd_u_677749.iso) |\n| ژاپنی | x64 | [ja_windows_7_enterprise_with_sp1_x64_dvd_u_677662.iso](https://drive.massgrave.dev/ja_windows_7_enterprise_with_sp1_x64_dvd_u_677662.iso) |\n| ژاپنی | x86 | [ja_windows_7_enterprise_with_sp1_x86_dvd_u_677757.iso](https://drive.massgrave.dev/ja_windows_7_enterprise_with_sp1_x86_dvd_u_677757.iso) |\n| کره‌ای | x64 | NA |\n| کره‌ای | x86 | NA |\n| لیتوانیایی | x64 | [lt_windows_7_enterprise_with_sp1_x64_dvd_u_677663.iso](https://drive.massgrave.dev/lt_windows_7_enterprise_with_sp1_x64_dvd_u_677663.iso) |\n| لیتوانیایی | x86 | [lt_windows_7_enterprise_with_sp1_x86_dvd_u_677764.iso](https://drive.massgrave.dev/lt_windows_7_enterprise_with_sp1_x86_dvd_u_677764.iso) |\n| لتونیایی | x64 | [lv_windows_7_enterprise_with_sp1_x64_dvd_u_677664.iso](https://drive.massgrave.dev/lv_windows_7_enterprise_with_sp1_x64_dvd_u_677664.iso) |\n| لتونیایی | x86 | [lv_windows_7_enterprise_with_sp1_x86_dvd_u_677677.iso](https://drive.massgrave.dev/lv_windows_7_enterprise_with_sp1_x86_dvd_u_677677.iso) |\n| هلندی | x64 | [nl_windows_7_enterprise_with_sp1_x64_dvd_u_677666.iso](https://drive.massgrave.dev/nl_windows_7_enterprise_with_sp1_x64_dvd_u_677666.iso) |\n| هلندی | x86 | [nl_windows_7_enterprise_with_sp1_x86_dvd_u_677682.iso](https://drive.massgrave.dev/nl_windows_7_enterprise_with_sp1_x86_dvd_u_677682.iso) |\n| نروژی | x64 | [no_windows_7_enterprise_with_sp1_x64_dvd_u_677665.iso](https://drive.massgrave.dev/no_windows_7_enterprise_with_sp1_x64_dvd_u_677665.iso) |\n| نروژی | x86 | [no_windows_7_enterprise_with_sp1_x86_dvd_u_677679.iso](https://drive.massgrave.dev/no_windows_7_enterprise_with_sp1_x86_dvd_u_677679.iso) |\n| لهستانی | x64 | [pl_windows_7_enterprise_with_sp1_x64_dvd_u_677667.iso](https://drive.massgrave.dev/pl_windows_7_enterprise_with_sp1_x64_dvd_u_677667.iso) |\n| لهستانی | x86 | [pl_windows_7_enterprise_with_sp1_x86_dvd_u_677684.iso](https://drive.massgrave.dev/pl_windows_7_enterprise_with_sp1_x86_dvd_u_677684.iso) |\n| پرتغالی (پرتغال) | x64 | [pp_windows_7_enterprise_with_sp1_x64_dvd_u_677669.iso](https://drive.massgrave.dev/pp_windows_7_enterprise_with_sp1_x64_dvd_u_677669.iso) |\n| پرتغالی (پرتغال) | x86 | [pp_windows_7_enterprise_with_sp1_x86_dvd_u_677688.iso](https://drive.massgrave.dev/pp_windows_7_enterprise_with_sp1_x86_dvd_u_677688.iso) |\n| پرتغالی (برزیل) | x64 | [pt_windows_7_enterprise_with_sp1_x64_dvd_u_677668.iso](https://drive.massgrave.dev/pt_windows_7_enterprise_with_sp1_x64_dvd_u_677668.iso) |\n| پرتغالی (برزیل) | x86 | [pt_windows_7_enterprise_with_sp1_x86_dvd_u_677686.iso](https://drive.massgrave.dev/pt_windows_7_enterprise_with_sp1_x86_dvd_u_677686.iso) |\n| رومانیایی | x64 | [ro_windows_7_enterprise_with_sp1_x64_dvd_u_677670.iso](https://drive.massgrave.dev/ro_windows_7_enterprise_with_sp1_x64_dvd_u_677670.iso) |\n| رومانیایی | x86 | [ro_windows_7_enterprise_with_sp1_x86_dvd_u_677690.iso](https://drive.massgrave.dev/ro_windows_7_enterprise_with_sp1_x86_dvd_u_677690.iso) |\n| روسی | x64 | [ru_windows_7_enterprise_with_sp1_x64_dvd_u_677671.iso](https://drive.massgrave.dev/ru_windows_7_enterprise_with_sp1_x64_dvd_u_677671.iso) |\n| روسی | x86 | [ru_windows_7_enterprise_with_sp1_x86_dvd_u_677692.iso](https://drive.massgrave.dev/ru_windows_7_enterprise_with_sp1_x86_dvd_u_677692.iso) |\n| اسلواکی | x64 | [sk_windows_7_enterprise_with_sp1_x64_dvd_u_677673.iso](https://drive.massgrave.dev/sk_windows_7_enterprise_with_sp1_x64_dvd_u_677673.iso) |\n| اسلواکی | x86 | [sk_windows_7_enterprise_with_sp1_x86_dvd_u_677694.iso](https://drive.massgrave.dev/sk_windows_7_enterprise_with_sp1_x86_dvd_u_677694.iso) |\n| اسلوونیایی | x64 | [sl_windows_7_enterprise_with_sp1_x64_dvd_u_677674.iso](https://drive.massgrave.dev/sl_windows_7_enterprise_with_sp1_x64_dvd_u_677674.iso) |\n| اسلوونیایی | x86 | [sl_windows_7_enterprise_with_sp1_x86_dvd_u_677696.iso](https://drive.massgrave.dev/sl_windows_7_enterprise_with_sp1_x86_dvd_u_677696.iso) |\n| صربی | x64 | [sr_windows_7_enterprise_with_sp1_x64_dvd_u_677675.iso](https://drive.massgrave.dev/sr_windows_7_enterprise_with_sp1_x64_dvd_u_677675.iso) |\n| صربی | x86 | [sr_windows_7_enterprise_with_sp1_x86_dvd_u_677699.iso](https://drive.massgrave.dev/sr_windows_7_enterprise_with_sp1_x86_dvd_u_677699.iso) |\n| سوئدی | x64 | [sv_windows_7_enterprise_with_sp1_x64_dvd_u_677676.iso](https://drive.massgrave.dev/sv_windows_7_enterprise_with_sp1_x64_dvd_u_677676.iso) |\n| سوئدی | x86 | [sv_windows_7_enterprise_with_sp1_x86_dvd_u_677701.iso](https://drive.massgrave.dev/sv_windows_7_enterprise_with_sp1_x86_dvd_u_677701.iso) |\n| تایلندی | x64 | [th_windows_7_enterprise_with_sp1_x64_dvd_u_677678.iso](https://drive.massgrave.dev/th_windows_7_enterprise_with_sp1_x64_dvd_u_677678.iso) |\n| تایلندی | x86 | [th_windows_7_enterprise_with_sp1_x86_dvd_u_677705.iso](https://drive.massgrave.dev/th_windows_7_enterprise_with_sp1_x86_dvd_u_677705.iso) |\n| ترکی | x64 | [tr_windows_7_enterprise_with_sp1_x64_dvd_u_677681.iso](https://drive.massgrave.dev/tr_windows_7_enterprise_with_sp1_x64_dvd_u_677681.iso) |\n| ترکی | x86 | [tr_windows_7_enterprise_with_sp1_x86_dvd_u_677708.iso](https://drive.massgrave.dev/tr_windows_7_enterprise_with_sp1_x86_dvd_u_677708.iso) |\n| چینی (سنتی) | x64 | [tw_windows_7_enterprise_with_sp1_x64_dvd_u_677689.iso](https://drive.massgrave.dev/tw_windows_7_enterprise_with_sp1_x64_dvd_u_677689.iso) |\n| چینی (سنتی) | x86 | [tw_windows_7_enterprise_with_sp1_x86_dvd_u_677723.iso](https://drive.massgrave.dev/tw_windows_7_enterprise_with_sp1_x86_dvd_u_677723.iso) |\n| اوکراینی | x64 | [uk_windows_7_enterprise_with_sp1_x64_dvd_u_677683.iso](https://drive.massgrave.dev/uk_windows_7_enterprise_with_sp1_x64_dvd_u_677683.iso) |\n| اوکراینی | x86 | [uk_windows_7_enterprise_with_sp1_x86_dvd_u_677712.iso](https://drive.massgrave.dev/uk_windows_7_enterprise_with_sp1_x86_dvd_u_677712.iso) |\n\n== Windows 7 Professional VL SP1\n\n**ویندوز ۷ حرفه‌ای VL SP1**\n\n> - این نسخه فقط شامل فهرست نسخه حرفه‌ای است.  \n\n| زبان | معماری | لینک |\n|:---|:---|:---|\n| عربی | x64 | [ar_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677754.iso](https://drive.massgrave.dev/ar_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677754.iso) |\n| عربی | x86 | [ar_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677837.iso](https://drive.massgrave.dev/ar_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677837.iso) |\n| بلغاری | x64 | [bg_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677761.iso](https://drive.massgrave.dev/bg_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677761.iso) |\n| بلغاری | x86 | [bg_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677846.iso](https://drive.massgrave.dev/bg_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677846.iso) |\n| چینی (ساده‌شده) | x64 | [cn_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677816.iso](https://drive.massgrave.dev/cn_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677816.iso) |\n| چینی (ساده‌شده) | x86 | [cn_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677939.iso](https://drive.massgrave.dev/cn_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677939.iso) |\n| چکی | x64 | [cs_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677767.iso](https://drive.massgrave.dev/cs_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677767.iso) |\n| چکی | x86 | [cs_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677860.iso](https://drive.massgrave.dev/cs_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677860.iso) |\n| دانمارکی | x64 | [da_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677772.iso](https://drive.massgrave.dev/da_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677772.iso) |\n| دانمارکی | x86 | [da_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677876.iso](https://drive.massgrave.dev/da_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677876.iso) |\n| آلمانی | x64 | [de_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677778.iso](https://drive.massgrave.dev/de_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677778.iso) |\n| آلمانی | x86 | [de_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677883.iso](https://drive.massgrave.dev/de_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677883.iso) |\n| یونانی | x64 | [el_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677783.iso](https://drive.massgrave.dev/el_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677783.iso) |\n| یونانی | x86 | [el_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677889.iso](https://drive.massgrave.dev/el_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677889.iso) |\n| انگلیسی | x64 | [en_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677791.iso](https://drive.massgrave.dev/en_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677791.iso) |\n| انگلیسی | x86 | [en_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677896.iso](https://drive.massgrave.dev/en_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677896.iso) |\n| اسپانیایی | x64 | [es_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677798.iso](https://drive.massgrave.dev/es_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677798.iso) |\n| اسپانیایی | x86 | [es_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677903.iso](https://drive.massgrave.dev/es_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677903.iso) |\n| استونیایی | x64 | [et_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677802.iso](https://drive.massgrave.dev/et_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677802.iso) |\n| استونیایی | x86 | [et_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677912.iso](https://drive.massgrave.dev/et_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677912.iso) |\n| فنلاندی | x64 | [fi_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677808.iso](https://drive.massgrave.dev/fi_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677808.iso) |\n| فنلاندی | x86 | [fi_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677759.iso](https://drive.massgrave.dev/fi_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677759.iso) |\n| فرانسوی | x64 | [fr_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677814.iso](https://drive.massgrave.dev/fr_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677814.iso) |\n| فرانسوی | x86 | [fr_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677765.iso](https://drive.massgrave.dev/fr_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677765.iso) |\n| عبری | x64 | [he_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677820.iso](https://drive.massgrave.dev/he_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677820.iso) |\n| عبری | x86 | [he_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677769.iso](https://drive.massgrave.dev/he_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677769.iso) |\n| چینی (هنگ کنگ) | x64 | [hk_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677823.iso](https://drive.massgrave.dev/hk_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677823.iso) |\n| چینی (هنگ کنگ) | x86 | [hk_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677951.iso](https://drive.massgrave.dev/hk_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677951.iso) |\n| کروات | x64 | [hr_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677826.iso](https://drive.massgrave.dev/hr_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677826.iso) |\n| کروات | x86 | [hr_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677773.iso](https://drive.massgrave.dev/hr_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677773.iso) |\n| مجارستانی | x64 | [hu_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677833.iso](https://drive.massgrave.dev/hu_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677833.iso) |\n| مجارستانی | x86 | [hu_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677777.iso](https://drive.massgrave.dev/hu_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677777.iso) |\n| ایتالیایی | x64 | [it_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677841.iso](https://drive.massgrave.dev/it_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677841.iso) |\n| ایتالیایی | x86 | [it_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677781.iso](https://drive.massgrave.dev/it_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677781.iso) |\n| ژاپنی | x64 | [ja_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677851.iso](https://drive.massgrave.dev/ja_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677851.iso) |\n| ژاپنی | x86 | [ja_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677786.iso](https://drive.massgrave.dev/ja_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677786.iso) |\n| کره‌ای | x64 | NA |\n| کره‌ای | x86 | NA |\n| لیتوانیایی | x64 | [lt_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677861.iso](https://drive.massgrave.dev/lt_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677861.iso) |\n| لیتوانیایی | x86 | [lt_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677792.iso](https://drive.massgrave.dev/lt_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677792.iso) |\n| لتونیایی | x64 | [lv_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677872.iso](https://drive.massgrave.dev/lv_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677872.iso) |\n| لتونیایی | x86 | [lv_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677797.iso](https://drive.massgrave.dev/lv_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677797.iso) |\n| هلندی | x64 | [nl_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677745.iso](https://drive.massgrave.dev/nl_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677745.iso) |\n| هلندی | x86 | [nl_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677812.iso](https://drive.massgrave.dev/nl_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677812.iso) |\n| نروژی | x64 | [no_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677881.iso](https://drive.massgrave.dev/no_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677881.iso) |\n| نروژی | x86 | [no_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677805.iso](https://drive.massgrave.dev/no_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677805.iso) |\n| لهستانی | x64 | [pl_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677751.iso](https://drive.massgrave.dev/pl_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677751.iso) |\n| لهستانی | x86 | [pl_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677818.iso](https://drive.massgrave.dev/pl_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677818.iso) |\n| پرتغالی (پرتغال) | x64 | [pp_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677763.iso](https://drive.massgrave.dev/pp_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677763.iso) |\n| پرتغالی (پرتغال) | x86 | [pp_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677834.iso](https://drive.massgrave.dev/pp_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677834.iso) |\n| پرتغالی (برزیل) | x64 | [pt_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677756.iso](https://drive.massgrave.dev/pt_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677756.iso) |\n| پرتغالی (برزیل) | x86 | [pt_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677827.iso](https://drive.massgrave.dev/pt_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677827.iso) |\n| رومانیایی | x64 | [ro_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677768.iso](https://drive.massgrave.dev/ro_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677768.iso) |\n| رومانیایی | x86 | [ro_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677842.iso](https://drive.massgrave.dev/ro_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677842.iso) |\n| روسی | x64 | [ru_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677774.iso](https://drive.massgrave.dev/ru_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677774.iso) |\n| روسی | x86 | [ru_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677853.iso](https://drive.massgrave.dev/ru_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677853.iso) |\n| اسلواکی | x64 | [sk_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677779.iso](https://drive.massgrave.dev/sk_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677779.iso) |\n| اسلواکی | x86 | [sk_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677866.iso](https://drive.massgrave.dev/sk_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677866.iso) |\n| اسلوونیایی | x64 | [sl_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677785.iso](https://drive.massgrave.dev/sl_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677785.iso) |\n| اسلوونیایی | x86 | [sl_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677878.iso](https://drive.massgrave.dev/sl_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677878.iso) |\n| صربی | x64 | [sr_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677790.iso](https://drive.massgrave.dev/sr_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677790.iso) |\n| صربی | x86 | [sr_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677888.iso](https://drive.massgrave.dev/sr_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677888.iso) |\n| سوئدی | x64 | [sv_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677795.iso](https://drive.massgrave.dev/sv_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677795.iso) |\n| سوئدی | x86 | [sv_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677898.iso](https://drive.massgrave.dev/sv_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677898.iso) |\n| تایلندی | x64 | [th_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677800.iso](https://drive.massgrave.dev/th_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677800.iso) |\n| تایلندی | x86 | [th_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677909.iso](https://drive.massgrave.dev/th_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677909.iso) |\n| ترکی | x64 | [tr_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677806.iso](https://drive.massgrave.dev/tr_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677806.iso) |\n| ترکی | x86 | [tr_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677920.iso](https://drive.massgrave.dev/tr_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677920.iso) |\n| چینی (سنتی) | x64 | [tw_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677829.iso](https://drive.massgrave.dev/tw_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677829.iso) |\n| چینی (سنتی) | x86 | [tw_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677771.iso](https://drive.massgrave.dev/tw_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677771.iso) |\n| اوکراینی | x64 | [uk_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677811.iso](https://drive.massgrave.dev/uk_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677811.iso) |\n| اوکراینی | x86 | [uk_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677928.iso](https://drive.massgrave.dev/uk_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677928.iso) |\n\n== Windows 7 Home Premium SP1\n\n**ویندوز ۷ Home Premium SP1**\n\n| Language              | Arch | Link                                                                                                                                               |\n|:----------------------|:-----|:---------------------------------------------------------------------------------------------------------------------------------------------------|\n| Arabic                | x64  | [ar_windows_7_home_premium_with_sp1_x64_dvd_u_676551.iso](https://drive.massgrave.dev/ar_windows_7_home_premium_with_sp1_x64_dvd_u_676551.iso)     |\n| Arabic                | x86  | [ar_windows_7_home_premium_with_sp1_x86_dvd_u_676666.iso](https://drive.massgrave.dev/ar_windows_7_home_premium_with_sp1_x86_dvd_u_676666.iso)     |\n| Bulgarian             | x64  | [bg_windows_7_home_premium_with_sp1_x64_dvd_u_676515.iso](https://drive.massgrave.dev/bg_windows_7_home_premium_with_sp1_x64_dvd_u_676515.iso)     |\n| Bulgarian             | x86  | [bg_windows_7_home_premium_with_sp1_x86_dvd_u_676671.iso](https://drive.massgrave.dev/bg_windows_7_home_premium_with_sp1_x86_dvd_u_676671.iso)     |\n| Chinese-Simplified    | x64  | [cn_windows_7_home_premium_with_sp1_x64_dvd_u_676691.iso](https://drive.massgrave.dev/cn_windows_7_home_premium_with_sp1_x64_dvd_u_676691.iso)     |\n| Chinese-Simplified    | x86  | [cn_windows_7_home_premium_with_sp1_x86_dvd_u_676770.iso](https://drive.massgrave.dev/cn_windows_7_home_premium_with_sp1_x86_dvd_u_676770.iso)     |\n| Czech                 | x64  | [cs_windows_7_home_premium_with_sp1_x64_dvd_u_676522.iso](https://drive.massgrave.dev/cs_windows_7_home_premium_with_sp1_x64_dvd_u_676522.iso)     |\n| Czech                 | x86  | [cs_windows_7_home_premium_with_sp1_x86_dvd_u_676676.iso](https://drive.massgrave.dev/cs_windows_7_home_premium_with_sp1_x86_dvd_u_676676.iso)     |\n| Danish                | x64  | [da_windows_7_home_premium_with_sp1_x64_dvd_u_676529.iso](https://drive.massgrave.dev/da_windows_7_home_premium_with_sp1_x64_dvd_u_676529.iso)     |\n| Danish                | x86  | [da_windows_7_home_premium_with_sp1_x86_dvd_u_676681.iso](https://drive.massgrave.dev/da_windows_7_home_premium_with_sp1_x86_dvd_u_676681.iso)     |\n| German                | x64  | [de_windows_7_home_premium_with_sp1_x64_dvd_u_676536.iso](https://drive.massgrave.dev/de_windows_7_home_premium_with_sp1_x64_dvd_u_676536.iso)     |\n| German                | x86  | [de_windows_7_home_premium_with_sp1_x86_dvd_u_676687.iso](https://drive.massgrave.dev/de_windows_7_home_premium_with_sp1_x86_dvd_u_676687.iso)     |\n| Greek                 | x64  | [el_windows_7_home_premium_with_sp1_x64_dvd_u_676544.iso](https://drive.massgrave.dev/el_windows_7_home_premium_with_sp1_x64_dvd_u_676544.iso)     |\n| Greek                 | x86  | [el_windows_7_home_premium_with_sp1_x86_dvd_u_676694.iso](https://drive.massgrave.dev/el_windows_7_home_premium_with_sp1_x86_dvd_u_676694.iso)     |\n| English               | x64  | [en_windows_7_home_premium_with_sp1_x64_dvd_u_676549.iso](https://drive.massgrave.dev/en_windows_7_home_premium_with_sp1_x64_dvd_u_676549.iso)     |\n| English               | x86  | [en_windows_7_home_premium_with_sp1_x86_dvd_u_676701.iso](https://drive.massgrave.dev/en_windows_7_home_premium_with_sp1_x86_dvd_u_676701.iso)     |\n| Spanish               | x64  | [es_windows_7_home_premium_with_sp1_x64_dvd_u_676553.iso](https://drive.massgrave.dev/es_windows_7_home_premium_with_sp1_x64_dvd_u_676553.iso)     |\n| Spanish               | x86  | [es_windows_7_home_premium_with_sp1_x86_dvd_u_676707.iso](https://drive.massgrave.dev/es_windows_7_home_premium_with_sp1_x86_dvd_u_676707.iso)     |\n| Estonian              | x64  | [et_windows_7_home_premium_with_sp1_x64_dvd_u_676555.iso](https://drive.massgrave.dev/et_windows_7_home_premium_with_sp1_x64_dvd_u_676555.iso)     |\n| Estonian              | x86  | [et_windows_7_home_premium_with_sp1_x86_dvd_u_676713.iso](https://drive.massgrave.dev/et_windows_7_home_premium_with_sp1_x86_dvd_u_676713.iso)     |\n| Finnish               | x64  | [fi_windows_7_home_premium_with_sp1_x64_dvd_u_676517.iso](https://drive.massgrave.dev/fi_windows_7_home_premium_with_sp1_x64_dvd_u_676517.iso)     |\n| Finnish               | x86  | [fi_windows_7_home_premium_with_sp1_x86_dvd_u_676672.iso](https://drive.massgrave.dev/fi_windows_7_home_premium_with_sp1_x86_dvd_u_676672.iso)     |\n| French                | x64  | [fr_windows_7_home_premium_with_sp1_x64_dvd_u_676521.iso](https://drive.massgrave.dev/fr_windows_7_home_premium_with_sp1_x64_dvd_u_676521.iso)     |\n| French                | x86  | [fr_windows_7_home_premium_with_sp1_x86_dvd_u_676678.iso](https://drive.massgrave.dev/fr_windows_7_home_premium_with_sp1_x86_dvd_u_676678.iso)     |\n| Hebrew                | x64  | [he_windows_7_home_premium_with_sp1_x64_dvd_u_676527.iso](https://drive.massgrave.dev/he_windows_7_home_premium_with_sp1_x64_dvd_u_676527.iso)     |\n| Hebrew                | x86  | [he_windows_7_home_premium_with_sp1_x86_dvd_u_676683.iso](https://drive.massgrave.dev/he_windows_7_home_premium_with_sp1_x86_dvd_u_676683.iso)     |\n| Chinese-Hong Kong SAR | x64  | [hk_windows_7_home_premium_with_sp1_x64_dvd_u_676697.iso](https://drive.massgrave.dev/hk_windows_7_home_premium_with_sp1_x64_dvd_u_676697.iso)     |\n| Chinese-Hong Kong SAR | x86  | [hk_windows_7_home_premium_with_sp1_x86_dvd_u_676771.iso](https://drive.massgrave.dev/hk_windows_7_home_premium_with_sp1_x86_dvd_u_676771.iso)     |\n| Croatian              | x64  | [hr_windows_7_home_premium_with_sp1_x64_dvd_u_676533.iso](https://drive.massgrave.dev/hr_windows_7_home_premium_with_sp1_x64_dvd_u_676533.iso)     |\n| Croatian              | x86  | [hr_windows_7_home_premium_with_sp1_x86_dvd_u_676688.iso](https://drive.massgrave.dev/hr_windows_7_home_premium_with_sp1_x86_dvd_u_676688.iso)     |\n| Hungarian             | x64  | [hu_windows_7_home_premium_with_sp1_x64_dvd_u_676538.iso](https://drive.massgrave.dev/hu_windows_7_home_premium_with_sp1_x64_dvd_u_676538.iso)     |\n| Hungarian             | x86  | [hu_windows_7_home_premium_with_sp1_x86_dvd_u_676696.iso](https://drive.massgrave.dev/hu_windows_7_home_premium_with_sp1_x86_dvd_u_676696.iso)     |\n| Italian               | x64  | [it_windows_7_home_premium_with_sp1_x64_dvd_u_676543.iso](https://drive.massgrave.dev/it_windows_7_home_premium_with_sp1_x64_dvd_u_676543.iso)     |\n| Italian               | x86  | [it_windows_7_home_premium_with_sp1_x86_dvd_u_676702.iso](https://drive.massgrave.dev/it_windows_7_home_premium_with_sp1_x86_dvd_u_676702.iso)     |\n| Japanese              | x64  | [ja_windows_7_home_premium_with_sp1_x64_dvd_u_676548.iso](https://drive.massgrave.dev/ja_windows_7_home_premium_with_sp1_x64_dvd_u_676548.iso)     |\n| Japanese              | x86  | [ja_windows_7_home_premium_with_sp1_x86_dvd_u_676708.iso](https://drive.massgrave.dev/ja_windows_7_home_premium_with_sp1_x86_dvd_u_676708.iso)     |\n| Korean                | x64  | [ko_windows_7_home_premium_k_with_sp1_x64_dvd_u_676808.iso](https://drive.massgrave.dev/ko_windows_7_home_premium_k_with_sp1_x64_dvd_u_676808.iso) |\n| Korean                | x86  | [ko_windows_7_home_premium_k_with_sp1_x86_dvd_u_676814.iso](https://drive.massgrave.dev/ko_windows_7_home_premium_k_with_sp1_x86_dvd_u_676814.iso) |\n| Lithuanian            | x64  | [lt_windows_7_home_premium_with_sp1_x64_dvd_u_676552.iso](https://drive.massgrave.dev/lt_windows_7_home_premium_with_sp1_x64_dvd_u_676552.iso)     |\n| Lithuanian            | x86  | [lt_windows_7_home_premium_with_sp1_x86_dvd_u_676715.iso](https://drive.massgrave.dev/lt_windows_7_home_premium_with_sp1_x86_dvd_u_676715.iso)     |\n| Latvian               | x64  | [lv_windows_7_home_premium_with_sp1_x64_dvd_u_676523.iso](https://drive.massgrave.dev/lv_windows_7_home_premium_with_sp1_x64_dvd_u_676523.iso)     |\n| Latvian               | x86  | [lv_windows_7_home_premium_with_sp1_x86_dvd_u_676720.iso](https://drive.massgrave.dev/lv_windows_7_home_premium_with_sp1_x86_dvd_u_676720.iso)     |\n| Dutch                 | x64  | [nl_windows_7_home_premium_with_sp1_x64_dvd_u_676534.iso](https://drive.massgrave.dev/nl_windows_7_home_premium_with_sp1_x64_dvd_u_676534.iso)     |\n| Dutch                 | x86  | [nl_windows_7_home_premium_with_sp1_x86_dvd_u_676693.iso](https://drive.massgrave.dev/nl_windows_7_home_premium_with_sp1_x86_dvd_u_676693.iso)     |\n| Norwegian             | x64  | [no_windows_7_home_premium_with_sp1_x64_dvd_u_676528.iso](https://drive.massgrave.dev/no_windows_7_home_premium_with_sp1_x64_dvd_u_676528.iso)     |\n| Norwegian             | x86  | [no_windows_7_home_premium_with_sp1_x86_dvd_u_676724.iso](https://drive.massgrave.dev/no_windows_7_home_premium_with_sp1_x86_dvd_u_676724.iso)     |\n| Polish                | x64  | [pl_windows_7_home_premium_with_sp1_x64_dvd_u_676540.iso](https://drive.massgrave.dev/pl_windows_7_home_premium_with_sp1_x64_dvd_u_676540.iso)     |\n| Polish                | x86  | [pl_windows_7_home_premium_with_sp1_x86_dvd_u_676699.iso](https://drive.massgrave.dev/pl_windows_7_home_premium_with_sp1_x86_dvd_u_676699.iso)     |\n| Portuguese-Portugal   | x64  | [pp_windows_7_home_premium_with_sp1_x64_dvd_u_676550.iso](https://drive.massgrave.dev/pp_windows_7_home_premium_with_sp1_x64_dvd_u_676550.iso)     |\n| Portuguese-Portugal   | x86  | [pp_windows_7_home_premium_with_sp1_x86_dvd_u_676711.iso](https://drive.massgrave.dev/pp_windows_7_home_premium_with_sp1_x86_dvd_u_676711.iso)     |\n| Portuguese-Brazil     | x64  | [pt_windows_7_home_premium_with_sp1_x64_dvd_u_676545.iso](https://drive.massgrave.dev/pt_windows_7_home_premium_with_sp1_x64_dvd_u_676545.iso)     |\n| Portuguese-Brazil     | x86  | [pt_windows_7_home_premium_with_sp1_x86_dvd_u_676705.iso](https://drive.massgrave.dev/pt_windows_7_home_premium_with_sp1_x86_dvd_u_676705.iso)     |\n| Romanian              | x64  | [ro_windows_7_home_premium_with_sp1_x64_dvd_u_676554.iso](https://drive.massgrave.dev/ro_windows_7_home_premium_with_sp1_x64_dvd_u_676554.iso)     |\n| Romanian              | x86  | [ro_windows_7_home_premium_with_sp1_x86_dvd_u_676716.iso](https://drive.massgrave.dev/ro_windows_7_home_premium_with_sp1_x86_dvd_u_676716.iso)     |\n| Russian               | x64  | [ru_windows_7_home_premium_with_sp1_x64_dvd_u_676728.iso](https://drive.massgrave.dev/ru_windows_7_home_premium_with_sp1_x64_dvd_u_676728.iso)     |\n| Russian               | x86  | [ru_windows_7_home_premium_with_sp1_x86_dvd_u_676719.iso](https://drive.massgrave.dev/ru_windows_7_home_premium_with_sp1_x86_dvd_u_676719.iso)     |\n| Slovak                | x64  | [sk_windows_7_home_premium_with_sp1_x64_dvd_u_676654.iso](https://drive.massgrave.dev/sk_windows_7_home_premium_with_sp1_x64_dvd_u_676654.iso)     |\n| Slovak                | x86  | [sk_windows_7_home_premium_with_sp1_x86_dvd_u_676723.iso](https://drive.massgrave.dev/sk_windows_7_home_premium_with_sp1_x86_dvd_u_676723.iso)     |\n| Slovenian             | x64  | [sl_windows_7_home_premium_with_sp1_x64_dvd_u_676656.iso](https://drive.massgrave.dev/sl_windows_7_home_premium_with_sp1_x64_dvd_u_676656.iso)     |\n| Slovenian             | x86  | [sl_windows_7_home_premium_with_sp1_x86_dvd_u_676725.iso](https://drive.massgrave.dev/sl_windows_7_home_premium_with_sp1_x86_dvd_u_676725.iso)     |\n| Serbian               | x64  | [sr_windows_7_home_premium_with_sp1_x64_dvd_u_676659.iso](https://drive.massgrave.dev/sr_windows_7_home_premium_with_sp1_x64_dvd_u_676659.iso)     |\n| Serbian               | x86  | [sr_windows_7_home_premium_with_sp1_x86_dvd_u_676726.iso](https://drive.massgrave.dev/sr_windows_7_home_premium_with_sp1_x86_dvd_u_676726.iso)     |\n| Swedish               | x64  | [sv_windows_7_home_premium_with_sp1_x64_dvd_u_676664.iso](https://drive.massgrave.dev/sv_windows_7_home_premium_with_sp1_x64_dvd_u_676664.iso)     |\n| Swedish               | x86  | [sv_windows_7_home_premium_with_sp1_x86_dvd_u_676766.iso](https://drive.massgrave.dev/sv_windows_7_home_premium_with_sp1_x86_dvd_u_676766.iso)     |\n| Thai                  | x64  | [th_windows_7_home_premium_with_sp1_x64_dvd_u_676670.iso](https://drive.massgrave.dev/th_windows_7_home_premium_with_sp1_x64_dvd_u_676670.iso)     |\n| Thai                  | x86  | [th_windows_7_home_premium_with_sp1_x86_dvd_u_676767.iso](https://drive.massgrave.dev/th_windows_7_home_premium_with_sp1_x86_dvd_u_676767.iso)     |\n| Turkish               | x64  | [tr_windows_7_home_premium_with_sp1_x64_dvd_u_676677.iso](https://drive.massgrave.dev/tr_windows_7_home_premium_with_sp1_x64_dvd_u_676677.iso)     |\n| Turkish               | x86  | [tr_windows_7_home_premium_with_sp1_x86_dvd_u_676768.iso](https://drive.massgrave.dev/tr_windows_7_home_premium_with_sp1_x86_dvd_u_676768.iso)     |\n| Chinese-Traditional   | x64  | [tw_windows_7_home_premium_with_sp1_x64_dvd_u_676703.iso](https://drive.massgrave.dev/tw_windows_7_home_premium_with_sp1_x64_dvd_u_676703.iso)     |\n| Chinese-Traditional   | x86  | [tw_windows_7_home_premium_with_sp1_x86_dvd_u_676772.iso](https://drive.massgrave.dev/tw_windows_7_home_premium_with_sp1_x86_dvd_u_676772.iso)     |\n| Ukrainian             | x64  | [uk_windows_7_home_premium_with_sp1_x64_dvd_u_676684.iso](https://drive.massgrave.dev/uk_windows_7_home_premium_with_sp1_x64_dvd_u_676684.iso)     |\n| Ukrainian             | x86  | [uk_windows_7_home_premium_with_sp1_x86_dvd_u_676769.iso](https://drive.massgrave.dev/uk_windows_7_home_premium_with_sp1_x86_dvd_u_676769.iso)     |\n\n== Windows 7 Home Basic SP1\n\n**ویندوز ۷ Home Basic SP1**  \n\n> - در دسترس فقط برای پردازنده‌های با معماری x86روی  MVS\n\n| Language              | Arch | Link                                                                                                                                       |\n|:----------------------|:-----|:-------------------------------------------------------------------------------------------------------------------------------------------|\n| Arabic                | x86  | [ar_windows_7_home_basic_with_sp1_x86_dvd_u_676462.iso](https://drive.massgrave.dev/ar_windows_7_home_basic_with_sp1_x86_dvd_u_676462.iso) |\n| Bulgarian             | x86  | [bg_windows_7_home_basic_with_sp1_x86_dvd_u_676463.iso](https://drive.massgrave.dev/bg_windows_7_home_basic_with_sp1_x86_dvd_u_676463.iso) |\n| Chinese-Simplified    | x86  | [cn_windows_7_home_basic_with_sp1_x86_dvd_u_676500.iso](https://drive.massgrave.dev/cn_windows_7_home_basic_with_sp1_x86_dvd_u_676500.iso) |\n| Czech                 | x86  | [cs_windows_7_home_basic_with_sp1_x86_dvd_u_676464.iso](https://drive.massgrave.dev/cs_windows_7_home_basic_with_sp1_x86_dvd_u_676464.iso) |\n| Danish                | x86  | [da_windows_7_home_basic_with_sp1_x86_dvd_u_676465.iso](https://drive.massgrave.dev/da_windows_7_home_basic_with_sp1_x86_dvd_u_676465.iso) |\n| German                | x86  | [de_windows_7_home_basic_with_sp1_x86_dvd_u_676467.iso](https://drive.massgrave.dev/de_windows_7_home_basic_with_sp1_x86_dvd_u_676467.iso) |\n| Greek                 | x86  | [el_windows_7_home_basic_with_sp1_x86_dvd_u_676466.iso](https://drive.massgrave.dev/el_windows_7_home_basic_with_sp1_x86_dvd_u_676466.iso) |\n| English               | x86  | [en_windows_7_home_basic_with_sp1_x86_dvd_u_676470.iso](https://drive.massgrave.dev/en_windows_7_home_basic_with_sp1_x86_dvd_u_676470.iso) |\n| Spanish               | x86  | [es_windows_7_home_basic_with_sp1_x86_dvd_u_676468.iso](https://drive.massgrave.dev/es_windows_7_home_basic_with_sp1_x86_dvd_u_676468.iso) |\n| Estonian              | x86  | [et_windows_7_home_basic_with_sp1_x86_dvd_u_676471.iso](https://drive.massgrave.dev/et_windows_7_home_basic_with_sp1_x86_dvd_u_676471.iso) |\n| Finnish               | x86  | [fi_windows_7_home_basic_with_sp1_x86_dvd_u_676469.iso](https://drive.massgrave.dev/fi_windows_7_home_basic_with_sp1_x86_dvd_u_676469.iso) |\n| French                | x86  | [fr_windows_7_home_basic_with_sp1_x86_dvd_u_676472.iso](https://drive.massgrave.dev/fr_windows_7_home_basic_with_sp1_x86_dvd_u_676472.iso) |\n| Hebrew                | x86  | [he_windows_7_home_basic_with_sp1_x86_dvd_u_676473.iso](https://drive.massgrave.dev/he_windows_7_home_basic_with_sp1_x86_dvd_u_676473.iso) |\n| Chinese-Hong Kong SAR | x86  | [hk_windows_7_home_basic_with_sp1_x86_dvd_u_676504.iso](https://drive.massgrave.dev/hk_windows_7_home_basic_with_sp1_x86_dvd_u_676504.iso) |\n| Croatian              | x86  | [hr_windows_7_home_basic_with_sp1_x86_dvd_u_676474.iso](https://drive.massgrave.dev/hr_windows_7_home_basic_with_sp1_x86_dvd_u_676474.iso) |\n| Hungarian             | x86  | [hu_windows_7_home_basic_with_sp1_x86_dvd_u_676475.iso](https://drive.massgrave.dev/hu_windows_7_home_basic_with_sp1_x86_dvd_u_676475.iso) |\n| Italian               | x86  | [it_windows_7_home_basic_with_sp1_x86_dvd_u_676477.iso](https://drive.massgrave.dev/it_windows_7_home_basic_with_sp1_x86_dvd_u_676477.iso) |\n| Japanese              | x86  | [ja_windows_7_home_basic_with_sp1_x86_dvd_u_676480.iso](https://drive.massgrave.dev/ja_windows_7_home_basic_with_sp1_x86_dvd_u_676480.iso) |\n| Korean                | x86  | NA                                                                                                                                         |\n| Lithuanian            | x86  | [lt_windows_7_home_basic_with_sp1_x86_dvd_u_676485.iso](https://drive.massgrave.dev/lt_windows_7_home_basic_with_sp1_x86_dvd_u_676485.iso) |\n| Latvian               | x86  | [lv_windows_7_home_basic_with_sp1_x86_dvd_u_676476.iso](https://drive.massgrave.dev/lv_windows_7_home_basic_with_sp1_x86_dvd_u_676476.iso) |\n| Dutch                 | x86  | [nl_windows_7_home_basic_with_sp1_x86_dvd_u_676483.iso](https://drive.massgrave.dev/nl_windows_7_home_basic_with_sp1_x86_dvd_u_676483.iso) |\n| Norwegian             | x86  | [no_windows_7_home_basic_with_sp1_x86_dvd_u_676479.iso](https://drive.massgrave.dev/no_windows_7_home_basic_with_sp1_x86_dvd_u_676479.iso) |\n| Polish                | x86  | [pl_windows_7_home_basic_with_sp1_x86_dvd_u_676486.iso](https://drive.massgrave.dev/pl_windows_7_home_basic_with_sp1_x86_dvd_u_676486.iso) |\n| Portuguese-Portugal   | x86  | [pp_windows_7_home_basic_with_sp1_x86_dvd_u_676496.iso](https://drive.massgrave.dev/pp_windows_7_home_basic_with_sp1_x86_dvd_u_676496.iso) |\n| Portuguese-Brazil     | x86  | [pt_windows_7_home_basic_with_sp1_x86_dvd_u_676491.iso](https://drive.massgrave.dev/pt_windows_7_home_basic_with_sp1_x86_dvd_u_676491.iso) |\n| Romanian              | x86  | [ro_windows_7_home_basic_with_sp1_x86_dvd_u_676478.iso](https://drive.massgrave.dev/ro_windows_7_home_basic_with_sp1_x86_dvd_u_676478.iso) |\n| Russian               | x86  | [ru_windows_7_home_basic_with_sp1_x86_dvd_u_676482.iso](https://drive.massgrave.dev/ru_windows_7_home_basic_with_sp1_x86_dvd_u_676482.iso) |\n| Slovak                | x86  | [sk_windows_7_home_basic_with_sp1_x86_dvd_u_676487.iso](https://drive.massgrave.dev/sk_windows_7_home_basic_with_sp1_x86_dvd_u_676487.iso) |\n| Slovenian             | x86  | [sl_windows_7_home_basic_with_sp1_x86_dvd_u_676492.iso](https://drive.massgrave.dev/sl_windows_7_home_basic_with_sp1_x86_dvd_u_676492.iso) |\n| Serbian               | x86  | [sr_windows_7_home_basic_with_sp1_x86_dvd_u_676497.iso](https://drive.massgrave.dev/sr_windows_7_home_basic_with_sp1_x86_dvd_u_676497.iso) |\n| Swedish               | x86  | [sv_windows_7_home_basic_with_sp1_x86_dvd_u_676501.iso](https://drive.massgrave.dev/sv_windows_7_home_basic_with_sp1_x86_dvd_u_676501.iso) |\n| Thai                  | x86  | [th_windows_7_home_basic_with_sp1_x86_dvd_u_676481.iso](https://drive.massgrave.dev/th_windows_7_home_basic_with_sp1_x86_dvd_u_676481.iso) |\n| Turkish               | x86  | [tr_windows_7_home_basic_with_sp1_x86_dvd_u_676488.iso](https://drive.massgrave.dev/tr_windows_7_home_basic_with_sp1_x86_dvd_u_676488.iso) |\n| Chinese-Traditional   | x86  | [tw_windows_7_home_basic_with_sp1_x86_dvd_u_676507.iso](https://drive.massgrave.dev/tw_windows_7_home_basic_with_sp1_x86_dvd_u_676507.iso) |\n| Ukrainian             | x86  | [uk_windows_7_home_basic_with_sp1_x86_dvd_u_676494.iso](https://drive.massgrave.dev/uk_windows_7_home_basic_with_sp1_x86_dvd_u_676494.iso) |\n\n== Windows 7 Starter SP1\n\n**ویندوز ۷ Starter SP1**  \n\n> - در دسترس فقط برای پردازنده‌های با معماری x86\n\n| Language              | Arch | Link                                                                                                                                     |\n|:----------------------|:-----|:-----------------------------------------------------------------------------------------------------------------------------------------|\n| Arabic                | x86  | [ar_windows_7_starter_with_sp1_x86_dvd_u_678504.iso](https://drive.massgrave.dev/ar_windows_7_starter_with_sp1_x86_dvd_u_678504.iso)     |\n| Bulgarian             | x86  | [bg_windows_7_starter_with_sp1_x86_dvd_u_678517.iso](https://drive.massgrave.dev/bg_windows_7_starter_with_sp1_x86_dvd_u_678517.iso)     |\n| Chinese-Simplified    | x86  | [cn_windows_7_starter_with_sp1_x86_dvd_u_678536.iso](https://drive.massgrave.dev/cn_windows_7_starter_with_sp1_x86_dvd_u_678536.iso)     |\n| Czech                 | x86  | [cs_windows_7_starter_with_sp1_x86_dvd_u_678526.iso](https://drive.massgrave.dev/cs_windows_7_starter_with_sp1_x86_dvd_u_678526.iso)     |\n| Danish                | x86  | [da_windows_7_starter_with_sp1_x86_dvd_u_678537.iso](https://drive.massgrave.dev/da_windows_7_starter_with_sp1_x86_dvd_u_678537.iso)     |\n| German                | x86  | [de_windows_7_starter_with_sp1_x86_dvd_u_678545.iso](https://drive.massgrave.dev/de_windows_7_starter_with_sp1_x86_dvd_u_678545.iso)     |\n| Greek                 | x86  | [el_windows_7_starter_with_sp1_x86_dvd_u_678555.iso](https://drive.massgrave.dev/el_windows_7_starter_with_sp1_x86_dvd_u_678555.iso)     |\n| English               | x86  | [en_windows_7_starter_with_sp1_x86_dvd_u_678562.iso](https://drive.massgrave.dev/en_windows_7_starter_with_sp1_x86_dvd_u_678562.iso)     |\n| Spanish               | x86  | [es_windows_7_starter_with_sp1_x86_dvd_u_678236.iso](https://drive.massgrave.dev/es_windows_7_starter_with_sp1_x86_dvd_u_678236.iso)     |\n| Estonian              | x86  | [et_windows_7_starter_with_sp1_x86_dvd_u_678249.iso](https://drive.massgrave.dev/et_windows_7_starter_with_sp1_x86_dvd_u_678249.iso)     |\n| Finnish               | x86  | [fi_windows_7_starter_with_sp1_x86_dvd_u_678263.iso](https://drive.massgrave.dev/fi_windows_7_starter_with_sp1_x86_dvd_u_678263.iso)     |\n| French                | x86  | [fr_windows_7_starter_with_sp1_x86_dvd_u_678275.iso](https://drive.massgrave.dev/fr_windows_7_starter_with_sp1_x86_dvd_u_678275.iso)     |\n| Hebrew                | x86  | [he_windows_7_starter_with_sp1_x86_dvd_u_678290.iso](https://drive.massgrave.dev/he_windows_7_starter_with_sp1_x86_dvd_u_678290.iso)     |\n| Chinese-Hong Kong SAR | x86  | [hk_windows_7_starter_with_sp1_x86_dvd_u_678543.iso](https://drive.massgrave.dev/hk_windows_7_starter_with_sp1_x86_dvd_u_678543.iso)     |\n| Croatian              | x86  | [hr_windows_7_starter_with_sp1_x86_dvd_u_678304.iso](https://drive.massgrave.dev/hr_windows_7_starter_with_sp1_x86_dvd_u_678304.iso)     |\n| Hungarian             | x86  | [hu_windows_7_starter_with_sp1_x86_dvd_u_678318.iso](https://drive.massgrave.dev/hu_windows_7_starter_with_sp1_x86_dvd_u_678318.iso)     |\n| Italian               | x86  | [it_windows_7_starter_with_sp1_x86_dvd_u_678331.iso](https://drive.massgrave.dev/it_windows_7_starter_with_sp1_x86_dvd_u_678331.iso)     |\n| Japanese              | x86  | [ja_windows_7_starter_with_sp1_x86_dvd_u_678344.iso](https://drive.massgrave.dev/ja_windows_7_starter_with_sp1_x86_dvd_u_678344.iso)     |\n| Korean                | x86  | [ko_windows_7_starter_k_with_sp1_x86_dvd_u_678554.iso](https://drive.massgrave.dev/ko_windows_7_starter_k_with_sp1_x86_dvd_u_678554.iso) |\n| Lithuanian            | x86  | [lt_windows_7_starter_with_sp1_x86_dvd_u_678360.iso](https://drive.massgrave.dev/lt_windows_7_starter_with_sp1_x86_dvd_u_678360.iso)     |\n| Latvian               | x86  | [lv_windows_7_starter_with_sp1_x86_dvd_u_678374.iso](https://drive.massgrave.dev/lv_windows_7_starter_with_sp1_x86_dvd_u_678374.iso)     |\n| Dutch                 | x86  | [nl_windows_7_starter_with_sp1_x86_dvd_u_678399.iso](https://drive.massgrave.dev/nl_windows_7_starter_with_sp1_x86_dvd_u_678399.iso)     |\n| Norwegian             | x86  | [no_windows_7_starter_with_sp1_x86_dvd_u_678386.iso](https://drive.massgrave.dev/no_windows_7_starter_with_sp1_x86_dvd_u_678386.iso)     |\n| Polish                | x86  | [pl_windows_7_starter_with_sp1_x86_dvd_u_678412.iso](https://drive.massgrave.dev/pl_windows_7_starter_with_sp1_x86_dvd_u_678412.iso)     |\n| Portuguese-Portugal   | x86  | [pp_windows_7_starter_with_sp1_x86_dvd_u_678439.iso](https://drive.massgrave.dev/pp_windows_7_starter_with_sp1_x86_dvd_u_678439.iso)     |\n| Portuguese-Brazil     | x86  | [pt_windows_7_starter_with_sp1_x86_dvd_u_678426.iso](https://drive.massgrave.dev/pt_windows_7_starter_with_sp1_x86_dvd_u_678426.iso)     |\n| Romanian              | x86  | [ro_windows_7_starter_with_sp1_x86_dvd_u_678452.iso](https://drive.massgrave.dev/ro_windows_7_starter_with_sp1_x86_dvd_u_678452.iso)     |\n| Russian               | x86  | [ru_windows_7_starter_with_sp1_x86_dvd_u_678466.iso](https://drive.massgrave.dev/ru_windows_7_starter_with_sp1_x86_dvd_u_678466.iso)     |\n| Slovak                | x86  | [sk_windows_7_starter_with_sp1_x86_dvd_u_678478.iso](https://drive.massgrave.dev/sk_windows_7_starter_with_sp1_x86_dvd_u_678478.iso)     |\n| Slovenian             | x86  | [sl_windows_7_starter_with_sp1_x86_dvd_u_678490.iso](https://drive.massgrave.dev/sl_windows_7_starter_with_sp1_x86_dvd_u_678490.iso)     |\n| Serbian               | x86  | [sr_windows_7_starter_with_sp1_x86_dvd_u_678501.iso](https://drive.massgrave.dev/sr_windows_7_starter_with_sp1_x86_dvd_u_678501.iso)     |\n| Swedish               | x86  | [sv_windows_7_starter_with_sp1_x86_dvd_u_678508.iso](https://drive.massgrave.dev/sv_windows_7_starter_with_sp1_x86_dvd_u_678508.iso)     |\n| Thai                  | x86  | [th_windows_7_starter_with_sp1_x86_dvd_u_678516.iso](https://drive.massgrave.dev/th_windows_7_starter_with_sp1_x86_dvd_u_678516.iso)     |\n| Turkish               | x86  | [tr_windows_7_starter_with_sp1_x86_dvd_u_678523.iso](https://drive.massgrave.dev/tr_windows_7_starter_with_sp1_x86_dvd_u_678523.iso)     |\n| Chinese-Traditional   | x86  | [tw_windows_7_starter_with_sp1_x86_dvd_u_678549.iso](https://drive.massgrave.dev/tw_windows_7_starter_with_sp1_x86_dvd_u_678549.iso)     |\n| Ukrainian             | x86  | [uk_windows_7_starter_with_sp1_x86_dvd_u_678529.iso](https://drive.massgrave.dev/uk_windows_7_starter_with_sp1_x86_dvd_u_678529.iso)     |\n\n== Other Versions\n\n**نسخه‌های دیگر**\n\n- [archive.isdn/artifacts][2]\n- [MVS Bot][3]\n- [os.click/][4]\n- [files.rg-adguard.net/5e876ce4d2c3][5]\n\n:::\n\n[1]: https://blog-simplix-info.translate.goog/updatepack7r2/?_x_tr_sl=ru&_x_tr_tl=en&_x_tr_hl=nl&_x_tr_pto=sc\n[2]: https://archive.isdn.network/artifacts/\n[3]: https://discord.gg/FajfGaH3nD\n[4]: https://os.click/\n[5]:  https://files.rg-adguard.net/language/a9e697fb-a83e-ef89-8279-5e876ce4d2c3\n[genuine]: https://nirevil.github.io/windows-activation/fa/wa/genuine-installation-media#%D8%AA%D8%A7%D9%94%DB%8C%DB%8C%D8%AF-%D8%A7%D8%B5%D8%A7%D9%84%D8%AA-%D9%81%D8%A7%DB%8C%D9%84%E2%80%8C%D9%87%D8%A7\n"
  },
  {
    "path": "docs/fa/wa/windows_8.1_links.md",
    "content": "---\nlayout: doc\noutline: deep\nlang: fa-IR\ndir: rtl\ntitle: 'دانلود ویندوز 8.1'\ndescription: 'تمام لینک‌های دانلود فقط به فایل‌های اصلی منتهی می‌شوند'\ndate: 2024-04-19\neditLink: true\n---\n\n# دانلود ویندوز 8.1\n\n::: info تمام لینک‌های دانلود فقط به **`فایل‌های اصلی`** منتهی می‌شوند\n\n- [**سوالات متداول**](./genuine-installation-media#سوالات-متداول)\n\n- [**چگونه اصالت این فایل‌ها رو تایید کنیم؟**][Genuine]\n\n- در فرآیند نصب فایل ISO ویندوز ۸.۱ (Core / Pro)، از شما خواسته می‌شود که کلید را وارد کنید، می‌توانید کلیدهای عمومی زیر را برای نسخه مورد نظر وارد کنید.  \n> \n> **Windows 8.1 Core:**\n> \n> ```shell\n> 334NH-RXG76-64THK-C7CKG-D3VPT\n> ```\n>\n> \n> **Windows 8.1 Core N:**\n> \n> ```shell\n> 6NPQ8-PK64X-W4WMM-MF84V-RGB89\n> ```\n>\n> \n> **Windows 8.1 Core Single Language:**\n> \n> ```shell\n> Y9NXP-XT8MV-PT9TG-97CT3-9D6TC\n> ```\n>\n> \n> **Windows 8.1 Pro:**\n>\n> ```shell\n> XHQ8N-C3MCJ-RQXB6-WCHYG-C9WKB\n> ```\n>\n> \n> **Windows 8.1 Pro N:**\n> \n> ```shell\n> JRBBN-4Q997-H4RM2-H3B7W-Q68KC\n> ```\n> \n> - **ویندوز ۸.۱ را می‌توان با [گزینه TSforge در MAS](./index#مرحله-۲) به طور دائم فعال کرد.**\n> - نسخه‌های ویندوز ۸.۱ (Embedded) با برنامه‌های از پیش نصب‌شده‌ی فروشگاه ارائه نمی‌شوند.\n> \n\n:::\n\n<br/>\n\n## لینک‌های دانلود\n\n### ویندوز 8.1\n\n:::tabs\n\n== Windows 8.1 Core / Pro 🤍\n\n**ویندوز 8.1 پرو**  \n\n> - بیلد 9600.17415   \n\n[MSDL][MSDL] پیوندهای رسمی را مستقیماً از مایکروسافت ارائه می‌دهد.\n\n== Windows 8.1 Core / Pro\n\n**ویندوز 8.1 پرو**  \n\n> - بیلد 9600.17415\n\n| Language               | Arch | Link                                                                                                                                   |\n|:-----------------------|:-----|:---------------------------------------------------------------------------------------------------------------------------------------|\n| Arabic                 | x64  | [ar_windows_8.1_with_update_x64_dvd_6051471.iso](https://drive.massgrave.dev/ar_windows_8.1_with_update_x64_dvd_6051471.iso)           |\n| Arabic                 | x86  | [ar_windows_8.1_with_update_x86_dvd_6051513.iso](https://drive.massgrave.dev/ar_windows_8.1_with_update_x86_dvd_6051513.iso)           |\n| Bulgarian              | x64  | [bg_windows_8.1_with_update_x64_dvd_6051472.iso](https://drive.massgrave.dev/bg_windows_8.1_with_update_x64_dvd_6051472.iso)           |\n| Bulgarian              | x86  | [bg_windows_8.1_with_update_x86_dvd_6051520.iso](https://drive.massgrave.dev/bg_windows_8.1_with_update_x86_dvd_6051520.iso)           |\n| Chinese-Simplified     | x64  | [cn_windows_8.1_with_update_x64_dvd_6051473.iso](https://drive.massgrave.dev/cn_windows_8.1_with_update_x64_dvd_6051473.iso)           |\n| Chinese-Simplified     | x86  | [cn_windows_8.1_with_update_x86_dvd_6051523.iso](https://drive.massgrave.dev/cn_windows_8.1_with_update_x86_dvd_6051523.iso)           |\n| Czech                  | x64  | [cs_windows_8.1_with_update_x64_dvd_6051477.iso](https://drive.massgrave.dev/cs_windows_8.1_with_update_x64_dvd_6051477.iso)           |\n| Czech                  | x86  | [cs_windows_8.1_with_update_x86_dvd_6051535.iso](https://drive.massgrave.dev/cs_windows_8.1_with_update_x86_dvd_6051535.iso)           |\n| Danish                 | x64  | [da_windows_8.1_with_update_x64_dvd_6051478.iso](https://drive.massgrave.dev/da_windows_8.1_with_update_x64_dvd_6051478.iso)           |\n| Danish                 | x86  | [da_windows_8.1_with_update_x86_dvd_6051541.iso](https://drive.massgrave.dev/da_windows_8.1_with_update_x86_dvd_6051541.iso)           |\n| German                 | x64  | [de_windows_8.1_with_update_x64_dvd_6051485.iso](https://drive.massgrave.dev/de_windows_8.1_with_update_x64_dvd_6051485.iso)           |\n| German                 | x86  | [de_windows_8.1_with_update_x86_dvd_6051588.iso](https://drive.massgrave.dev/de_windows_8.1_with_update_x86_dvd_6051588.iso)           |\n| Greek                  | x64  | [el_windows_8.1_with_update_x64_dvd_6051486.iso](https://drive.massgrave.dev/el_windows_8.1_with_update_x64_dvd_6051486.iso)           |\n| Greek                  | x86  | [el_windows_8.1_with_update_x86_dvd_6051592.iso](https://drive.massgrave.dev/el_windows_8.1_with_update_x86_dvd_6051592.iso)           |\n| English-United Kingdom | x64  | [en-gb_windows_8.1_with_update_x64_dvd_6051481.iso](https://drive.massgrave.dev/en-gb_windows_8.1_with_update_x64_dvd_6051481.iso)     |\n| English-United Kingdom | x86  | [en-gb_windows_8.1_with_update_x86_dvd_6051555.iso](https://drive.massgrave.dev/en-gb_windows_8.1_with_update_x86_dvd_6051555.iso)     |\n| English                | x64  | [en_windows_8.1_with_update_x64_dvd_6051480.iso](https://drive.massgrave.dev/en_windows_8.1_with_update_x64_dvd_6051480.iso)           |\n| English                | x86  | [en_windows_8.1_with_update_x86_dvd_6051550.iso](https://drive.massgrave.dev/en_windows_8.1_with_update_x86_dvd_6051550.iso)           |\n| Spanish                | x64  | [es_windows_8.1_with_update_x64_dvd_6051503.iso](https://drive.massgrave.dev/es_windows_8.1_with_update_x64_dvd_6051503.iso)           |\n| Spanish                | x86  | [es_windows_8.1_with_update_x86_dvd_6051666.iso](https://drive.massgrave.dev/es_windows_8.1_with_update_x86_dvd_6051666.iso)           |\n| Estonian               | x64  | [et_windows_8.1_with_update_x64_dvd_6051482.iso](https://drive.massgrave.dev/et_windows_8.1_with_update_x64_dvd_6051482.iso)           |\n| Estonian               | x86  | [et_windows_8.1_with_update_x86_dvd_6051565.iso](https://drive.massgrave.dev/et_windows_8.1_with_update_x86_dvd_6051565.iso)           |\n| Finnish                | x64  | [fi_windows_8.1_with_update_x64_dvd_6051483.iso](https://drive.massgrave.dev/fi_windows_8.1_with_update_x64_dvd_6051483.iso)           |\n| Finnish                | x86  | [fi_windows_8.1_with_update_x86_dvd_6051575.iso](https://drive.massgrave.dev/fi_windows_8.1_with_update_x86_dvd_6051575.iso)           |\n| French                 | x64  | [fr_windows_8.1_with_update_x64_dvd_6051484.iso](https://drive.massgrave.dev/fr_windows_8.1_with_update_x64_dvd_6051484.iso)           |\n| French                 | x86  | [fr_windows_8.1_with_update_x86_dvd_6051583.iso](https://drive.massgrave.dev/fr_windows_8.1_with_update_x86_dvd_6051583.iso)           |\n| Hebrew                 | x64  | [he_windows_8.1_with_update_x64_dvd_6051487.iso](https://drive.massgrave.dev/he_windows_8.1_with_update_x64_dvd_6051487.iso)           |\n| Hebrew                 | x86  | [he_windows_8.1_with_update_x86_dvd_6051597.iso](https://drive.massgrave.dev/he_windows_8.1_with_update_x86_dvd_6051597.iso)           |\n| Chinese-Hong Kong SAR  | x64  | [hk_windows_8.1_with_update_x64_dvd_6051474.iso](https://drive.massgrave.dev/hk_windows_8.1_with_update_x64_dvd_6051474.iso)           |\n| Chinese-Hong Kong SAR  | x86  | [hk_windows_8.1_with_update_x86_dvd_6051524.iso](https://drive.massgrave.dev/hk_windows_8.1_with_update_x86_dvd_6051524.iso)           |\n| Croatian               | x64  | [hr_windows_8.1_with_update_x64_dvd_6051476.iso](https://drive.massgrave.dev/hr_windows_8.1_with_update_x64_dvd_6051476.iso)           |\n| Croatian               | x86  | [hr_windows_8.1_with_update_x86_dvd_6051529.iso](https://drive.massgrave.dev/hr_windows_8.1_with_update_x86_dvd_6051529.iso)           |\n| Hungarian              | x64  | [hu_windows_8.1_with_update_x64_dvd_6051488.iso](https://drive.massgrave.dev/hu_windows_8.1_with_update_x64_dvd_6051488.iso)           |\n| Hungarian              | x86  | [hu_windows_8.1_with_update_x86_dvd_6051602.iso](https://drive.massgrave.dev/hu_windows_8.1_with_update_x86_dvd_6051602.iso)           |\n| Italian                | x64  | [it_windows_8.1_with_update_x64_dvd_6051489.iso](https://drive.massgrave.dev/it_windows_8.1_with_update_x64_dvd_6051489.iso)           |\n| Italian                | x86  | [it_windows_8.1_with_update_x86_dvd_6051607.iso](https://drive.massgrave.dev/it_windows_8.1_with_update_x86_dvd_6051607.iso)           |\n| Japanese               | x64  | [ja_windows_8.1_with_update_x64_dvd_6051490.iso](https://drive.massgrave.dev/ja_windows_8.1_with_update_x64_dvd_6051490.iso)           |\n| Japanese               | x86  | [ja_windows_8.1_with_update_x86_dvd_6051612.iso](https://drive.massgrave.dev/ja_windows_8.1_with_update_x86_dvd_6051612.iso)           |\n| Korean                 | x64  | [ko_windows_8.1_with_update_x64_dvd_6051491.iso](https://drive.massgrave.dev/ko_windows_8.1_with_update_x64_dvd_6051491.iso)           |\n| Korean                 | x86  | [ko_windows_8.1_with_update_x86_dvd_6051617.iso](https://drive.massgrave.dev/ko_windows_8.1_with_update_x86_dvd_6051617.iso)           |\n| Lithuanian             | x64  | [lt_windows_8.1_with_update_x64_dvd_6051493.iso](https://drive.massgrave.dev/lt_windows_8.1_with_update_x64_dvd_6051493.iso)           |\n| Lithuanian             | x86  | [lt_windows_8.1_with_update_x86_dvd_6051625.iso](https://drive.massgrave.dev/lt_windows_8.1_with_update_x86_dvd_6051625.iso)           |\n| Latvian                | x64  | [lv_windows_8.1_with_update_x64_dvd_6051492.iso](https://drive.massgrave.dev/lv_windows_8.1_with_update_x64_dvd_6051492.iso)           |\n| Latvian                | x86  | [lv_windows_8.1_with_update_x86_dvd_6051621.iso](https://drive.massgrave.dev/lv_windows_8.1_with_update_x86_dvd_6051621.iso)           |\n| Norwegian-Bokmal       | x64  | [nb_windows_8.1_with_update_x64_dvd_6051494.iso](https://drive.massgrave.dev/nb_windows_8.1_with_update_x64_dvd_6051494.iso)           |\n| Norwegian-Bokmal       | x86  | [nb_windows_8.1_with_update_x86_dvd_6051631.iso](https://drive.massgrave.dev/nb_windows_8.1_with_update_x86_dvd_6051631.iso)           |\n| Dutch                  | x64  | [nl_windows_8.1_with_update_x64_dvd_6051479.iso](https://drive.massgrave.dev/nl_windows_8.1_with_update_x64_dvd_6051479.iso)           |\n| Dutch                  | x86  | [nl_windows_8.1_with_update_x86_dvd_6051545.iso](https://drive.massgrave.dev/nl_windows_8.1_with_update_x86_dvd_6051545.iso)           |\n| Polish                 | x64  | [pl_windows_8.1_with_update_x64_dvd_6051495.iso](https://drive.massgrave.dev/pl_windows_8.1_with_update_x64_dvd_6051495.iso)           |\n| Polish                 | x86  | [pl_windows_8.1_with_update_x86_dvd_6051637.iso](https://drive.massgrave.dev/pl_windows_8.1_with_update_x86_dvd_6051637.iso)           |\n| Portuguese-Portugal    | x64  | [pp_windows_8.1_with_update_x64_dvd_6051497.iso](https://drive.massgrave.dev/pp_windows_8.1_with_update_x64_dvd_6051497.iso)           |\n| Portuguese-Portugal    | x86  | [pp_windows_8.1_with_update_x86_dvd_6051655.iso](https://drive.massgrave.dev/pp_windows_8.1_with_update_x86_dvd_6051655.iso)           |\n| Portuguese-Brazil      | x64  | [pt_windows_8.1_with_update_x64_dvd_6051496.iso](https://drive.massgrave.dev/pt_windows_8.1_with_update_x64_dvd_6051496.iso)           |\n| Portuguese-Brazil      | x86  | [pt_windows_8.1_with_update_x86_dvd_6051647.iso](https://drive.massgrave.dev/pt_windows_8.1_with_update_x86_dvd_6051647.iso)           |\n| Romanian               | x64  | [ro_windows_8.1_with_update_x64_dvd_6051498.iso](https://drive.massgrave.dev/ro_windows_8.1_with_update_x64_dvd_6051498.iso)           |\n| Romanian               | x86  | [ro_windows_8.1_with_update_x86_dvd_6051661.iso](https://drive.massgrave.dev/ro_windows_8.1_with_update_x86_dvd_6051661.iso)           |\n| Russian                | x64  | [ru_windows_8.1_with_update_x64_dvd_6051499.iso](https://drive.massgrave.dev/ru_windows_8.1_with_update_x64_dvd_6051499.iso)           |\n| Russian                | x86  | [ru_windows_8.1_with_update_x86_dvd_6051662.iso](https://drive.massgrave.dev/ru_windows_8.1_with_update_x86_dvd_6051662.iso)           |\n| Slovak                 | x64  | [sk_windows_8.1_with_update_x64_dvd_6051501.iso](https://drive.massgrave.dev/sk_windows_8.1_with_update_x64_dvd_6051501.iso)           |\n| Slovak                 | x86  | [sk_windows_8.1_with_update_x86_dvd_6051664.iso](https://drive.massgrave.dev/sk_windows_8.1_with_update_x86_dvd_6051664.iso)           |\n| Slovenian              | x64  | [sl_windows_8.1_with_update_x64_dvd_6051502.iso](https://drive.massgrave.dev/sl_windows_8.1_with_update_x64_dvd_6051502.iso)           |\n| Slovenian              | x86  | [sl_windows_8.1_with_update_x86_dvd_6051665.iso](https://drive.massgrave.dev/sl_windows_8.1_with_update_x86_dvd_6051665.iso)           |\n| Serbian-Latin          | x64  | [sr-latn_windows_8.1_with_update_x64_dvd_6051500.iso](https://drive.massgrave.dev/sr-latn_windows_8.1_with_update_x64_dvd_6051500.iso) |\n| Serbian-Latin          | x86  | [sr-latn_windows_8.1_with_update_x86_dvd_6051663.iso](https://drive.massgrave.dev/sr-latn_windows_8.1_with_update_x86_dvd_6051663.iso) |\n| Swedish                | x64  | [sv_windows_8.1_with_update_x64_dvd_6051504.iso](https://drive.massgrave.dev/sv_windows_8.1_with_update_x64_dvd_6051504.iso)           |\n| Swedish                | x86  | [sv_windows_8.1_with_update_x86_dvd_6051667.iso](https://drive.massgrave.dev/sv_windows_8.1_with_update_x86_dvd_6051667.iso)           |\n| Thai                   | x64  | [th_windows_8.1_with_update_x64_dvd_6051506.iso](https://drive.massgrave.dev/th_windows_8.1_with_update_x64_dvd_6051506.iso)           |\n| Thai                   | x86  | [th_windows_8.1_with_update_x86_dvd_6051668.iso](https://drive.massgrave.dev/th_windows_8.1_with_update_x86_dvd_6051668.iso)           |\n| Turkish                | x64  | [tr_windows_8.1_with_update_x64_dvd_6051507.iso](https://drive.massgrave.dev/tr_windows_8.1_with_update_x64_dvd_6051507.iso)           |\n| Turkish                | x86  | [tr_windows_8.1_with_update_x86_dvd_6051669.iso](https://drive.massgrave.dev/tr_windows_8.1_with_update_x86_dvd_6051669.iso)           |\n| Chinese-Taiwan         | x64  | [tw_windows_8.1_with_update_x64_dvd_6051475.iso](https://drive.massgrave.dev/tw_windows_8.1_with_update_x64_dvd_6051475.iso)           |\n| Chinese-Taiwan         | x86  | [tw_windows_8.1_with_update_x86_dvd_6051525.iso](https://drive.massgrave.dev/tw_windows_8.1_with_update_x86_dvd_6051525.iso)           |\n| Ukrainian              | x64  | [uk_windows_8.1_with_update_x64_dvd_6051508.iso](https://drive.massgrave.dev/uk_windows_8.1_with_update_x64_dvd_6051508.iso)           |\n| Ukrainian              | x86  | [uk_windows_8.1_with_update_x86_dvd_6051671.iso](https://drive.massgrave.dev/uk_windows_8.1_with_update_x86_dvd_6051671.iso)           |\n\n== Windows 8.1 Pro VL\n\n**ویندوز 8.1 پرو VL**\n\n> - بیلد 9600.17415\n\n| Language               | Arch | Link                                                                                                                                                 |\n|:-----------------------|:-----|:-----------------------------------------------------------------------------------------------------------------------------------------------------|\n| Arabic                 | x64  | [ar_windows_8.1_pro_vl_with_update_x64_dvd_6050871.iso](https://drive.massgrave.dev/ar_windows_8.1_pro_vl_with_update_x64_dvd_6050871.iso)           |\n| Arabic                 | x86  | [ar_windows_8.1_pro_vl_with_update_x86_dvd_6050908.iso](https://drive.massgrave.dev/ar_windows_8.1_pro_vl_with_update_x86_dvd_6050908.iso)           |\n| Bulgarian              | x64  | [bg_windows_8.1_pro_vl_with_update_x64_dvd_6050872.iso](https://drive.massgrave.dev/bg_windows_8.1_pro_vl_with_update_x64_dvd_6050872.iso)           |\n| Bulgarian              | x86  | [bg_windows_8.1_pro_vl_with_update_x86_dvd_6050909.iso](https://drive.massgrave.dev/bg_windows_8.1_pro_vl_with_update_x86_dvd_6050909.iso)           |\n| Chinese-Simplified     | x64  | [cn_windows_8.1_pro_vl_with_update_x64_dvd_6050873.iso](https://drive.massgrave.dev/cn_windows_8.1_pro_vl_with_update_x64_dvd_6050873.iso)           |\n| Chinese-Simplified     | x86  | [cn_windows_8.1_pro_vl_with_update_x86_dvd_6050910.iso](https://drive.massgrave.dev/cn_windows_8.1_pro_vl_with_update_x86_dvd_6050910.iso)           |\n| Czech                  | x64  | [cs_windows_8.1_pro_vl_with_update_x64_dvd_6050877.iso](https://drive.massgrave.dev/cs_windows_8.1_pro_vl_with_update_x64_dvd_6050877.iso)           |\n| Czech                  | x86  | [cs_windows_8.1_pro_vl_with_update_x86_dvd_6050915.iso](https://drive.massgrave.dev/cs_windows_8.1_pro_vl_with_update_x86_dvd_6050915.iso)           |\n| Danish                 | x64  | [da_windows_8.1_pro_vl_with_update_x64_dvd_6050878.iso](https://drive.massgrave.dev/da_windows_8.1_pro_vl_with_update_x64_dvd_6050878.iso)           |\n| Danish                 | x86  | [da_windows_8.1_pro_vl_with_update_x86_dvd_6050916.iso](https://drive.massgrave.dev/da_windows_8.1_pro_vl_with_update_x86_dvd_6050916.iso)           |\n| German                 | x64  | [de_windows_8.1_pro_vl_with_update_x64_dvd_6050885.iso](https://drive.massgrave.dev/de_windows_8.1_pro_vl_with_update_x64_dvd_6050885.iso)           |\n| German                 | x86  | [de_windows_8.1_pro_vl_with_update_x86_dvd_6050923.iso](https://drive.massgrave.dev/de_windows_8.1_pro_vl_with_update_x86_dvd_6050923.iso)           |\n| Greek                  | x64  | [el_windows_8.1_pro_vl_with_update_x64_dvd_6050886.iso](https://drive.massgrave.dev/el_windows_8.1_pro_vl_with_update_x64_dvd_6050886.iso)           |\n| Greek                  | x86  | [el_windows_8.1_pro_vl_with_update_x86_dvd_6050924.iso](https://drive.massgrave.dev/el_windows_8.1_pro_vl_with_update_x86_dvd_6050924.iso)           |\n| English-United Kingdom | x64  | [en-gb_windows_8.1_pro_vl_with_update_x64_dvd_6050881.iso](https://drive.massgrave.dev/en-gb_windows_8.1_pro_vl_with_update_x64_dvd_6050881.iso)     |\n| English-United Kingdom | x86  | [en-gb_windows_8.1_pro_vl_with_update_x86_dvd_6050919.iso](https://drive.massgrave.dev/en-gb_windows_8.1_pro_vl_with_update_x86_dvd_6050919.iso)     |\n| English                | x64  | [en_windows_8.1_pro_vl_with_update_x64_dvd_6050880.iso](https://drive.massgrave.dev/en_windows_8.1_pro_vl_with_update_x64_dvd_6050880.iso)           |\n| English                | x86  | [en_windows_8.1_pro_vl_with_update_x86_dvd_6050918.iso](https://drive.massgrave.dev/en_windows_8.1_pro_vl_with_update_x86_dvd_6050918.iso)           |\n| Spanish                | x64  | [es_windows_8.1_pro_vl_with_update_x64_dvd_6050903.iso](https://drive.massgrave.dev/es_windows_8.1_pro_vl_with_update_x64_dvd_6050903.iso)           |\n| Spanish                | x86  | [es_windows_8.1_pro_vl_with_update_x86_dvd_6050941.iso](https://drive.massgrave.dev/es_windows_8.1_pro_vl_with_update_x86_dvd_6050941.iso)           |\n| Estonian               | x64  | [et_windows_8.1_pro_vl_with_update_x64_dvd_6050882.iso](https://drive.massgrave.dev/et_windows_8.1_pro_vl_with_update_x64_dvd_6050882.iso)           |\n| Estonian               | x86  | [et_windows_8.1_pro_vl_with_update_x86_dvd_6050920.iso](https://drive.massgrave.dev/et_windows_8.1_pro_vl_with_update_x86_dvd_6050920.iso)           |\n| Finnish                | x64  | [fi_windows_8.1_pro_vl_with_update_x64_dvd_6050883.iso](https://drive.massgrave.dev/fi_windows_8.1_pro_vl_with_update_x64_dvd_6050883.iso)           |\n| Finnish                | x86  | [fi_windows_8.1_pro_vl_with_update_x86_dvd_6050921.iso](https://drive.massgrave.dev/fi_windows_8.1_pro_vl_with_update_x86_dvd_6050921.iso)           |\n| French                 | x64  | [fr_windows_8.1_pro_vl_with_update_x64_dvd_6050884.iso](https://drive.massgrave.dev/fr_windows_8.1_pro_vl_with_update_x64_dvd_6050884.iso)           |\n| French                 | x86  | [fr_windows_8.1_pro_vl_with_update_x86_dvd_6050922.iso](https://drive.massgrave.dev/fr_windows_8.1_pro_vl_with_update_x86_dvd_6050922.iso)           |\n| Hebrew                 | x64  | [he_windows_8.1_pro_vl_with_update_x64_dvd_6050887.iso](https://drive.massgrave.dev/he_windows_8.1_pro_vl_with_update_x64_dvd_6050887.iso)           |\n| Hebrew                 | x86  | [he_windows_8.1_pro_vl_with_update_x86_dvd_6050925.iso](https://drive.massgrave.dev/he_windows_8.1_pro_vl_with_update_x86_dvd_6050925.iso)           |\n| Chinese-Hong Kong SAR  | x64  | [hk_windows_8.1_pro_vl_with_update_x64_dvd_6050874.iso](https://drive.massgrave.dev/hk_windows_8.1_pro_vl_with_update_x64_dvd_6050874.iso)           |\n| Chinese-Hong Kong SAR  | x86  | [hk_windows_8.1_pro_vl_with_update_x86_dvd_6050911.iso](https://drive.massgrave.dev/hk_windows_8.1_pro_vl_with_update_x86_dvd_6050911.iso)           |\n| Croatian               | x64  | [hr_windows_8.1_pro_vl_with_update_x64_dvd_6050876.iso](https://drive.massgrave.dev/hr_windows_8.1_pro_vl_with_update_x64_dvd_6050876.iso)           |\n| Croatian               | x86  | [hr_windows_8.1_pro_vl_with_update_x86_dvd_6050913.iso](https://drive.massgrave.dev/hr_windows_8.1_pro_vl_with_update_x86_dvd_6050913.iso)           |\n| Hungarian              | x64  | [hu_windows_8.1_pro_vl_with_update_x64_dvd_6050888.iso](https://drive.massgrave.dev/hu_windows_8.1_pro_vl_with_update_x64_dvd_6050888.iso)           |\n| Hungarian              | x86  | [hu_windows_8.1_pro_vl_with_update_x86_dvd_6050926.iso](https://drive.massgrave.dev/hu_windows_8.1_pro_vl_with_update_x86_dvd_6050926.iso)           |\n| Italian                | x64  | [it_windows_8.1_pro_vl_with_update_x64_dvd_6050889.iso](https://drive.massgrave.dev/it_windows_8.1_pro_vl_with_update_x64_dvd_6050889.iso)           |\n| Italian                | x86  | [it_windows_8.1_pro_vl_with_update_x86_dvd_6050927.iso](https://drive.massgrave.dev/it_windows_8.1_pro_vl_with_update_x86_dvd_6050927.iso)           |\n| Japanese               | x64  | [ja_windows_8.1_pro_vl_with_update_x64_dvd_6050890.iso](https://drive.massgrave.dev/ja_windows_8.1_pro_vl_with_update_x64_dvd_6050890.iso)           |\n| Japanese               | x86  | [ja_windows_8.1_pro_vl_with_update_x86_dvd_6050928.iso](https://drive.massgrave.dev/ja_windows_8.1_pro_vl_with_update_x86_dvd_6050928.iso)           |\n| Korean                 | x64  | [ko_windows_8.1_pro_vl_with_update_x64_dvd_6050891.iso](https://drive.massgrave.dev/ko_windows_8.1_pro_vl_with_update_x64_dvd_6050891.iso)           |\n| Korean                 | x86  | [ko_windows_8.1_pro_vl_with_update_x86_dvd_6050929.iso](https://drive.massgrave.dev/ko_windows_8.1_pro_vl_with_update_x86_dvd_6050929.iso)           |\n| Lithuanian             | x64  | [lt_windows_8.1_pro_vl_with_update_x64_dvd_6050893.iso](https://drive.massgrave.dev/lt_windows_8.1_pro_vl_with_update_x64_dvd_6050893.iso)           |\n| Lithuanian             | x86  | [lt_windows_8.1_pro_vl_with_update_x86_dvd_6050931.iso](https://drive.massgrave.dev/lt_windows_8.1_pro_vl_with_update_x86_dvd_6050931.iso)           |\n| Latvian                | x64  | [lv_windows_8.1_pro_vl_with_update_x64_dvd_6050892.iso](https://drive.massgrave.dev/lv_windows_8.1_pro_vl_with_update_x64_dvd_6050892.iso)           |\n| Latvian                | x86  | [lv_windows_8.1_pro_vl_with_update_x86_dvd_6050930.iso](https://drive.massgrave.dev/lv_windows_8.1_pro_vl_with_update_x86_dvd_6050930.iso)           |\n| Norwegian-Bokmal       | x64  | [nb_windows_8.1_pro_vl_with_update_x64_dvd_6050894.iso](https://drive.massgrave.dev/nb_windows_8.1_pro_vl_with_update_x64_dvd_6050894.iso)           |\n| Norwegian-Bokmal       | x86  | [nb_windows_8.1_pro_vl_with_update_x86_dvd_6050932.iso](https://drive.massgrave.dev/nb_windows_8.1_pro_vl_with_update_x86_dvd_6050932.iso)           |\n| Dutch                  | x64  | [nl_windows_8.1_pro_vl_with_update_x64_dvd_6050879.iso](https://drive.massgrave.dev/nl_windows_8.1_pro_vl_with_update_x64_dvd_6050879.iso)           |\n| Dutch                  | x86  | [nl_windows_8.1_pro_vl_with_update_x86_dvd_6050917.iso](https://drive.massgrave.dev/nl_windows_8.1_pro_vl_with_update_x86_dvd_6050917.iso)           |\n| Polish                 | x64  | [pl_windows_8.1_pro_vl_with_update_x64_dvd_6050895.iso](https://drive.massgrave.dev/pl_windows_8.1_pro_vl_with_update_x64_dvd_6050895.iso)           |\n| Polish                 | x86  | [pl_windows_8.1_pro_vl_with_update_x86_dvd_6050933.iso](https://drive.massgrave.dev/pl_windows_8.1_pro_vl_with_update_x86_dvd_6050933.iso)           |\n| Portuguese-Portugal    | x64  | [pp_windows_8.1_pro_vl_with_update_x64_dvd_6050897.iso](https://drive.massgrave.dev/pp_windows_8.1_pro_vl_with_update_x64_dvd_6050897.iso)           |\n| Portuguese-Portugal    | x86  | [pp_windows_8.1_pro_vl_with_update_x86_dvd_6050935.iso](https://drive.massgrave.dev/pp_windows_8.1_pro_vl_with_update_x86_dvd_6050935.iso)           |\n| Portuguese-Brazil      | x64  | [pt_windows_8.1_pro_vl_with_update_x64_dvd_6050896.iso](https://drive.massgrave.dev/pt_windows_8.1_pro_vl_with_update_x64_dvd_6050896.iso)           |\n| Portuguese-Brazil      | x86  | [pt_windows_8.1_pro_vl_with_update_x86_dvd_6050934.iso](https://drive.massgrave.dev/pt_windows_8.1_pro_vl_with_update_x86_dvd_6050934.iso)           |\n| Romanian               | x64  | [ro_windows_8.1_pro_vl_with_update_x64_dvd_6050898.iso](https://drive.massgrave.dev/ro_windows_8.1_pro_vl_with_update_x64_dvd_6050898.iso)           |\n| Romanian               | x86  | [ro_windows_8.1_pro_vl_with_update_x86_dvd_6050936.iso](https://drive.massgrave.dev/ro_windows_8.1_pro_vl_with_update_x86_dvd_6050936.iso)           |\n| Russian                | x64  | [ru_windows_8.1_pro_vl_with_update_x64_dvd_6050899.iso](https://drive.massgrave.dev/ru_windows_8.1_pro_vl_with_update_x64_dvd_6050899.iso)           |\n| Russian                | x86  | [ru_windows_8.1_pro_vl_with_update_x86_dvd_6050937.iso](https://drive.massgrave.dev/ru_windows_8.1_pro_vl_with_update_x86_dvd_6050937.iso)           |\n| Slovak                 | x64  | [sk_windows_8.1_pro_vl_with_update_x64_dvd_6050901.iso](https://drive.massgrave.dev/sk_windows_8.1_pro_vl_with_update_x64_dvd_6050901.iso)           |\n| Slovak                 | x86  | [sk_windows_8.1_pro_vl_with_update_x86_dvd_6050939.iso](https://drive.massgrave.dev/sk_windows_8.1_pro_vl_with_update_x86_dvd_6050939.iso)           |\n| Slovenian              | x64  | [sl_windows_8.1_pro_vl_with_update_x64_dvd_6050902.iso](https://drive.massgrave.dev/sl_windows_8.1_pro_vl_with_update_x64_dvd_6050902.iso)           |\n| Slovenian              | x86  | [sl_windows_8.1_pro_vl_with_update_x86_dvd_6050940.iso](https://drive.massgrave.dev/sl_windows_8.1_pro_vl_with_update_x86_dvd_6050940.iso)           |\n| Serbian-Latin          | x64  | [sr-latn_windows_8.1_pro_vl_with_update_x64_dvd_6050900.iso](https://drive.massgrave.dev/sr-latn_windows_8.1_pro_vl_with_update_x64_dvd_6050900.iso) |\n| Serbian-Latin          | x86  | [sr-latn_windows_8.1_pro_vl_with_update_x86_dvd_6050938.iso](https://drive.massgrave.dev/sr-latn_windows_8.1_pro_vl_with_update_x86_dvd_6050938.iso) |\n| Swedish                | x64  | [sv_windows_8.1_pro_vl_with_update_x64_dvd_6050904.iso](https://drive.massgrave.dev/sv_windows_8.1_pro_vl_with_update_x64_dvd_6050904.iso)           |\n| Swedish                | x86  | [sv_windows_8.1_pro_vl_with_update_x86_dvd_6050942.iso](https://drive.massgrave.dev/sv_windows_8.1_pro_vl_with_update_x86_dvd_6050942.iso)           |\n| Thai                   | x64  | [th_windows_8.1_pro_vl_with_update_x64_dvd_6050905.iso](https://drive.massgrave.dev/th_windows_8.1_pro_vl_with_update_x64_dvd_6050905.iso)           |\n| Thai                   | x86  | [th_windows_8.1_pro_vl_with_update_x86_dvd_6050943.iso](https://drive.massgrave.dev/th_windows_8.1_pro_vl_with_update_x86_dvd_6050943.iso)           |\n| Turkish                | x64  | [tr_windows_8.1_pro_vl_with_update_x64_dvd_6050906.iso](https://drive.massgrave.dev/tr_windows_8.1_pro_vl_with_update_x64_dvd_6050906.iso)           |\n| Turkish                | x86  | [tr_windows_8.1_pro_vl_with_update_x86_dvd_6050944.iso](https://drive.massgrave.dev/tr_windows_8.1_pro_vl_with_update_x86_dvd_6050944.iso)           |\n| Chinese-Taiwan         | x64  | [tw_windows_8.1_pro_vl_with_update_x64_dvd_6050875.iso](https://drive.massgrave.dev/tw_windows_8.1_pro_vl_with_update_x64_dvd_6050875.iso)           |\n| Chinese-Taiwan         | x86  | [tw_windows_8.1_pro_vl_with_update_x86_dvd_6050912.iso](https://drive.massgrave.dev/tw_windows_8.1_pro_vl_with_update_x86_dvd_6050912.iso)           |\n| Ukrainian              | x64  | [uk_windows_8.1_pro_vl_with_update_x64_dvd_6050907.iso](https://drive.massgrave.dev/uk_windows_8.1_pro_vl_with_update_x64_dvd_6050907.iso)           |\n| Ukrainian              | x86  | [uk_windows_8.1_pro_vl_with_update_x86_dvd_6050945.iso](https://drive.massgrave.dev/uk_windows_8.1_pro_vl_with_update_x86_dvd_6050945.iso)           |\n\n\n== Windows 8.1 Enterprise\n\n**ویندوز 8.1 Enterprise**\n\n> - بیلد 9600.17415\n\n| Language               | Arch | Link                                                                                                                                                         |\n|:-----------------------|:-----|:-------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Arabic                 | x64  | [ar_windows_8.1_enterprise_with_update_x64_dvd_6050360.iso](https://drive.massgrave.dev/ar_windows_8.1_enterprise_with_update_x64_dvd_6050360.iso)           |\n| Arabic                 | x86  | [ar_windows_8.1_enterprise_with_update_x86_dvd_6050626.iso](https://drive.massgrave.dev/ar_windows_8.1_enterprise_with_update_x86_dvd_6050626.iso)           |\n| Bulgarian              | x64  | [bg_windows_8.1_enterprise_with_update_x64_dvd_6050367.iso](https://drive.massgrave.dev/bg_windows_8.1_enterprise_with_update_x64_dvd_6050367.iso)           |\n| Bulgarian              | x86  | [bg_windows_8.1_enterprise_with_update_x86_dvd_6050635.iso](https://drive.massgrave.dev/bg_windows_8.1_enterprise_with_update_x86_dvd_6050635.iso)           |\n| Chinese-Simplified     | x64  | [cn_windows_8.1_enterprise_with_update_x64_dvd_6050374.iso](https://drive.massgrave.dev/cn_windows_8.1_enterprise_with_update_x64_dvd_6050374.iso)           |\n| Chinese-Simplified     | x86  | [cn_windows_8.1_enterprise_with_update_x86_dvd_6050645.iso](https://drive.massgrave.dev/cn_windows_8.1_enterprise_with_update_x86_dvd_6050645.iso)           |\n| Czech                  | x64  | [cs_windows_8.1_enterprise_with_update_x64_dvd_6050393.iso](https://drive.massgrave.dev/cs_windows_8.1_enterprise_with_update_x64_dvd_6050393.iso)           |\n| Czech                  | x86  | [cs_windows_8.1_enterprise_with_update_x86_dvd_6050681.iso](https://drive.massgrave.dev/cs_windows_8.1_enterprise_with_update_x86_dvd_6050681.iso)           |\n| Danish                 | x64  | [da_windows_8.1_enterprise_with_update_x64_dvd_6050394.iso](https://drive.massgrave.dev/da_windows_8.1_enterprise_with_update_x64_dvd_6050394.iso)           |\n| Danish                 | x86  | [da_windows_8.1_enterprise_with_update_x86_dvd_6050691.iso](https://drive.massgrave.dev/da_windows_8.1_enterprise_with_update_x86_dvd_6050691.iso)           |\n| German                 | x64  | [de_windows_8.1_enterprise_with_update_x64_dvd_6050501.iso](https://drive.massgrave.dev/de_windows_8.1_enterprise_with_update_x64_dvd_6050501.iso)           |\n| German                 | x86  | [de_windows_8.1_enterprise_with_update_x86_dvd_6050753.iso](https://drive.massgrave.dev/de_windows_8.1_enterprise_with_update_x86_dvd_6050753.iso)           |\n| Greek                  | x64  | [el_windows_8.1_enterprise_with_update_x64_dvd_6050503.iso](https://drive.massgrave.dev/el_windows_8.1_enterprise_with_update_x64_dvd_6050503.iso)           |\n| Greek                  | x86  | [el_windows_8.1_enterprise_with_update_x86_dvd_6050759.iso](https://drive.massgrave.dev/el_windows_8.1_enterprise_with_update_x86_dvd_6050759.iso)           |\n| English-United Kingdom | x64  | [en-gb_windows_8.1_enterprise_with_update_x64_dvd_6054383.iso](https://drive.massgrave.dev/en-gb_windows_8.1_enterprise_with_update_x64_dvd_6054383.iso)     |\n| English-United Kingdom | x86  | [en-gb_windows_8.1_enterprise_with_update_x86_dvd_6050720.iso](https://drive.massgrave.dev/en-gb_windows_8.1_enterprise_with_update_x86_dvd_6050720.iso)     |\n| English                | x64  | [en_windows_8.1_enterprise_with_update_x64_dvd_6054382.iso](https://drive.massgrave.dev/en_windows_8.1_enterprise_with_update_x64_dvd_6054382.iso)           |\n| English                | x86  | [en_windows_8.1_enterprise_with_update_x86_dvd_6050710.iso](https://drive.massgrave.dev/en_windows_8.1_enterprise_with_update_x86_dvd_6050710.iso)           |\n| Spanish                | x64  | [es_windows_8.1_enterprise_with_update_x64_dvd_6050578.iso](https://drive.massgrave.dev/es_windows_8.1_enterprise_with_update_x64_dvd_6050578.iso)           |\n| Spanish                | x86  | [es_windows_8.1_enterprise_with_update_x86_dvd_6050864.iso](https://drive.massgrave.dev/es_windows_8.1_enterprise_with_update_x86_dvd_6050864.iso)           |\n| Estonian               | x64  | [et_windows_8.1_enterprise_with_update_x64_dvd_6054384.iso](https://drive.massgrave.dev/et_windows_8.1_enterprise_with_update_x64_dvd_6054384.iso)           |\n| Estonian               | x86  | [et_windows_8.1_enterprise_with_update_x86_dvd_6050731.iso](https://drive.massgrave.dev/et_windows_8.1_enterprise_with_update_x86_dvd_6050731.iso)           |\n| Finnish                | x64  | [fi_windows_8.1_enterprise_with_update_x64_dvd_6050497.iso](https://drive.massgrave.dev/fi_windows_8.1_enterprise_with_update_x64_dvd_6050497.iso)           |\n| Finnish                | x86  | [fi_windows_8.1_enterprise_with_update_x86_dvd_6050738.iso](https://drive.massgrave.dev/fi_windows_8.1_enterprise_with_update_x86_dvd_6050738.iso)           |\n| French                 | x64  | [fr_windows_8.1_enterprise_with_update_x64_dvd_6050499.iso](https://drive.massgrave.dev/fr_windows_8.1_enterprise_with_update_x64_dvd_6050499.iso)           |\n| French                 | x86  | [fr_windows_8.1_enterprise_with_update_x86_dvd_6050745.iso](https://drive.massgrave.dev/fr_windows_8.1_enterprise_with_update_x86_dvd_6050745.iso)           |\n| Hebrew                 | x64  | [he_windows_8.1_enterprise_with_update_x64_dvd_6050504.iso](https://drive.massgrave.dev/he_windows_8.1_enterprise_with_update_x64_dvd_6050504.iso)           |\n| Hebrew                 | x86  | [he_windows_8.1_enterprise_with_update_x86_dvd_6050766.iso](https://drive.massgrave.dev/he_windows_8.1_enterprise_with_update_x86_dvd_6050766.iso)           |\n| Chinese-Hong Kong SAR  | x64  | [hk_windows_8.1_enterprise_with_update_x64_dvd_6050380.iso](https://drive.massgrave.dev/hk_windows_8.1_enterprise_with_update_x64_dvd_6050380.iso)           |\n| Chinese-Hong Kong SAR  | x86  | [hk_windows_8.1_enterprise_with_update_x86_dvd_6050654.iso](https://drive.massgrave.dev/hk_windows_8.1_enterprise_with_update_x86_dvd_6050654.iso)           |\n| Croatian               | x64  | [hr_windows_8.1_enterprise_with_update_x64_dvd_6050391.iso](https://drive.massgrave.dev/hr_windows_8.1_enterprise_with_update_x64_dvd_6050391.iso)           |\n| Croatian               | x86  | [hr_windows_8.1_enterprise_with_update_x86_dvd_6050673.iso](https://drive.massgrave.dev/hr_windows_8.1_enterprise_with_update_x86_dvd_6050673.iso)           |\n| Hungarian              | x64  | [hu_windows_8.1_enterprise_with_update_x64_dvd_6050505.iso](https://drive.massgrave.dev/hu_windows_8.1_enterprise_with_update_x64_dvd_6050505.iso)           |\n| Hungarian              | x86  | [hu_windows_8.1_enterprise_with_update_x86_dvd_6050771.iso](https://drive.massgrave.dev/hu_windows_8.1_enterprise_with_update_x86_dvd_6050771.iso)           |\n| Italian                | x64  | [it_windows_8.1_enterprise_with_update_x64_dvd_6050507.iso](https://drive.massgrave.dev/it_windows_8.1_enterprise_with_update_x64_dvd_6050507.iso)           |\n| Italian                | x86  | [it_windows_8.1_enterprise_with_update_x86_dvd_6050777.iso](https://drive.massgrave.dev/it_windows_8.1_enterprise_with_update_x86_dvd_6050777.iso)           |\n| Japanese               | x64  | [ja_windows_8.1_enterprise_with_update_x64_dvd_6050508.iso](https://drive.massgrave.dev/ja_windows_8.1_enterprise_with_update_x64_dvd_6050508.iso)           |\n| Japanese               | x86  | [ja_windows_8.1_enterprise_with_update_x86_dvd_6050784.iso](https://drive.massgrave.dev/ja_windows_8.1_enterprise_with_update_x86_dvd_6050784.iso)           |\n| Korean                 | x64  | [ko_windows_8.1_enterprise_with_update_x64_dvd_6050509.iso](https://drive.massgrave.dev/ko_windows_8.1_enterprise_with_update_x64_dvd_6050509.iso)           |\n| Korean                 | x86  | [ko_windows_8.1_enterprise_with_update_x86_dvd_6050791.iso](https://drive.massgrave.dev/ko_windows_8.1_enterprise_with_update_x86_dvd_6050791.iso)           |\n| Lithuanian             | x64  | [lt_windows_8.1_enterprise_with_update_x64_dvd_6050511.iso](https://drive.massgrave.dev/lt_windows_8.1_enterprise_with_update_x64_dvd_6050511.iso)           |\n| Lithuanian             | x86  | [lt_windows_8.1_enterprise_with_update_x86_dvd_6050802.iso](https://drive.massgrave.dev/lt_windows_8.1_enterprise_with_update_x86_dvd_6050802.iso)           |\n| Latvian                | x64  | [lv_windows_8.1_enterprise_with_update_x64_dvd_6050510.iso](https://drive.massgrave.dev/lv_windows_8.1_enterprise_with_update_x64_dvd_6050510.iso)           |\n| Latvian                | x86  | [lv_windows_8.1_enterprise_with_update_x86_dvd_6050797.iso](https://drive.massgrave.dev/lv_windows_8.1_enterprise_with_update_x86_dvd_6050797.iso)           |\n| Norwegian-Bokmal       | x64  | [nb_windows_8.1_enterprise_with_update_x64_dvd_6050512.iso](https://drive.massgrave.dev/nb_windows_8.1_enterprise_with_update_x64_dvd_6050512.iso)           |\n| Norwegian-Bokmal       | x86  | [nb_windows_8.1_enterprise_with_update_x86_dvd_6050808.iso](https://drive.massgrave.dev/nb_windows_8.1_enterprise_with_update_x86_dvd_6050808.iso)           |\n| Dutch                  | x64  | [nl_windows_8.1_enterprise_with_update_x64_dvd_6054381.iso](https://drive.massgrave.dev/nl_windows_8.1_enterprise_with_update_x64_dvd_6054381.iso)           |\n| Dutch                  | x86  | [nl_windows_8.1_enterprise_with_update_x86_dvd_6050700.iso](https://drive.massgrave.dev/nl_windows_8.1_enterprise_with_update_x86_dvd_6050700.iso)           |\n| Polish                 | x64  | [pl_windows_8.1_enterprise_with_update_x64_dvd_6050515.iso](https://drive.massgrave.dev/pl_windows_8.1_enterprise_with_update_x64_dvd_6050515.iso)           |\n| Polish                 | x86  | [pl_windows_8.1_enterprise_with_update_x86_dvd_6050814.iso](https://drive.massgrave.dev/pl_windows_8.1_enterprise_with_update_x86_dvd_6050814.iso)           |\n| Portuguese-Portugal    | x64  | [pp_windows_8.1_enterprise_with_update_x64_dvd_6050526.iso](https://drive.massgrave.dev/pp_windows_8.1_enterprise_with_update_x64_dvd_6050526.iso)           |\n| Portuguese-Portugal    | x86  | [pp_windows_8.1_enterprise_with_update_x86_dvd_6050827.iso](https://drive.massgrave.dev/pp_windows_8.1_enterprise_with_update_x86_dvd_6050827.iso)           |\n| Portuguese-Brazil      | x64  | [pt_windows_8.1_enterprise_with_update_x64_dvd_6050521.iso](https://drive.massgrave.dev/pt_windows_8.1_enterprise_with_update_x64_dvd_6050521.iso)           |\n| Portuguese-Brazil      | x86  | [pt_windows_8.1_enterprise_with_update_x86_dvd_6050822.iso](https://drive.massgrave.dev/pt_windows_8.1_enterprise_with_update_x86_dvd_6050822.iso)           |\n| Romanian               | x64  | [ro_windows_8.1_enterprise_with_update_x64_dvd_6050534.iso](https://drive.massgrave.dev/ro_windows_8.1_enterprise_with_update_x64_dvd_6050534.iso)           |\n| Romanian               | x86  | [ro_windows_8.1_enterprise_with_update_x86_dvd_6050834.iso](https://drive.massgrave.dev/ro_windows_8.1_enterprise_with_update_x86_dvd_6050834.iso)           |\n| Russian                | x64  | [ru_windows_8.1_enterprise_with_update_x64_dvd_6050542.iso](https://drive.massgrave.dev/ru_windows_8.1_enterprise_with_update_x64_dvd_6050542.iso)           |\n| Russian                | x86  | [ru_windows_8.1_enterprise_with_update_x86_dvd_6050840.iso](https://drive.massgrave.dev/ru_windows_8.1_enterprise_with_update_x86_dvd_6050840.iso)           |\n| Slovak                 | x64  | [sk_windows_8.1_enterprise_with_update_x64_dvd_6050562.iso](https://drive.massgrave.dev/sk_windows_8.1_enterprise_with_update_x64_dvd_6050562.iso)           |\n| Slovak                 | x86  | [sk_windows_8.1_enterprise_with_update_x86_dvd_6050853.iso](https://drive.massgrave.dev/sk_windows_8.1_enterprise_with_update_x86_dvd_6050853.iso)           |\n| Slovenian              | x64  | [sl_windows_8.1_enterprise_with_update_x64_dvd_6050570.iso](https://drive.massgrave.dev/sl_windows_8.1_enterprise_with_update_x64_dvd_6050570.iso)           |\n| Slovenian              | x86  | [sl_windows_8.1_enterprise_with_update_x86_dvd_6050858.iso](https://drive.massgrave.dev/sl_windows_8.1_enterprise_with_update_x86_dvd_6050858.iso)           |\n| Serbian-Latin          | x64  | [sr-latn_windows_8.1_enterprise_with_update_x64_dvd_6050553.iso](https://drive.massgrave.dev/sr-latn_windows_8.1_enterprise_with_update_x64_dvd_6050553.iso) |\n| Serbian-Latin          | x86  | [sr-latn_windows_8.1_enterprise_with_update_x86_dvd_6050847.iso](https://drive.massgrave.dev/sr-latn_windows_8.1_enterprise_with_update_x86_dvd_6050847.iso) |\n| Swedish                | x64  | [sv_windows_8.1_enterprise_with_update_x64_dvd_6050590.iso](https://drive.massgrave.dev/sv_windows_8.1_enterprise_with_update_x64_dvd_6050590.iso)           |\n| Swedish                | x86  | [sv_windows_8.1_enterprise_with_update_x86_dvd_6050867.iso](https://drive.massgrave.dev/sv_windows_8.1_enterprise_with_update_x86_dvd_6050867.iso)           |\n| Thai                   | x64  | [th_windows_8.1_enterprise_with_update_x64_dvd_6050602.iso](https://drive.massgrave.dev/th_windows_8.1_enterprise_with_update_x64_dvd_6050602.iso)           |\n| Thai                   | x86  | [th_windows_8.1_enterprise_with_update_x86_dvd_6050868.iso](https://drive.massgrave.dev/th_windows_8.1_enterprise_with_update_x86_dvd_6050868.iso)           |\n| Turkish                | x64  | [tr_windows_8.1_enterprise_with_update_x64_dvd_6050609.iso](https://drive.massgrave.dev/tr_windows_8.1_enterprise_with_update_x64_dvd_6050609.iso)           |\n| Turkish                | x86  | [tr_windows_8.1_enterprise_with_update_x86_dvd_6050869.iso](https://drive.massgrave.dev/tr_windows_8.1_enterprise_with_update_x86_dvd_6050869.iso)           |\n| Chinese-Taiwan         | x64  | [tw_windows_8.1_enterprise_with_update_x64_dvd_6050387.iso](https://drive.massgrave.dev/tw_windows_8.1_enterprise_with_update_x64_dvd_6050387.iso)           |\n| Chinese-Taiwan         | x86  | [tw_windows_8.1_enterprise_with_update_x86_dvd_6050663.iso](https://drive.massgrave.dev/tw_windows_8.1_enterprise_with_update_x86_dvd_6050663.iso)           |\n| Ukrainian              | x64  | [uk_windows_8.1_enterprise_with_update_x64_dvd_6050618.iso](https://drive.massgrave.dev/uk_windows_8.1_enterprise_with_update_x64_dvd_6050618.iso)           |\n| Ukrainian              | x86  | [uk_windows_8.1_enterprise_with_update_x86_dvd_6050870.iso](https://drive.massgrave.dev/uk_windows_8.1_enterprise_with_update_x86_dvd_6050870.iso)           |\n\n\n== Windows 8.1 Embedded Pro\n\n**ویندوز 8.1 Embedded Pro**  \n\n> - بیلد 9600.17415\n\n| Language               | Arch | Link                                                                                                                                                                               |\n|:-----------------------|:-----|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Arabic                 | x64  | [ar_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052077.iso](https://drive.massgrave.dev/ar_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052077.iso)           |\n| Arabic                 | x86  | [ar_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052114.iso](https://drive.massgrave.dev/ar_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052114.iso)           |\n| Bulgarian              | x64  | [bg_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052078.iso](https://drive.massgrave.dev/bg_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052078.iso)           |\n| Bulgarian              | x86  | [bg_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052115.iso](https://drive.massgrave.dev/bg_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052115.iso)           |\n| Chinese-Simplified     | x64  | [cn_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052079.iso](https://drive.massgrave.dev/cn_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052079.iso)           |\n| Chinese-Simplified     | x86  | [cn_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052116.iso](https://drive.massgrave.dev/cn_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052116.iso)           |\n| Czech                  | x64  | [cs_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052083.iso](https://drive.massgrave.dev/cs_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052083.iso)           |\n| Czech                  | x86  | [cs_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052120.iso](https://drive.massgrave.dev/cs_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052120.iso)           |\n| Danish                 | x64  | [da_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052084.iso](https://drive.massgrave.dev/da_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052084.iso)           |\n| Danish                 | x86  | [da_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052121.iso](https://drive.massgrave.dev/da_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052121.iso)           |\n| German                 | x64  | [de_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052091.iso](https://drive.massgrave.dev/de_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052091.iso)           |\n| German                 | x86  | [de_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052128.iso](https://drive.massgrave.dev/de_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052128.iso)           |\n| Greek                  | x64  | [el_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052092.iso](https://drive.massgrave.dev/el_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052092.iso)           |\n| Greek                  | x86  | [el_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052129.iso](https://drive.massgrave.dev/el_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052129.iso)           |\n| English-United Kingdom | x64  | [en-gb_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052087.iso](https://drive.massgrave.dev/en-gb_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052087.iso)     |\n| English-United Kingdom | x86  | [en-gb_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052124.iso](https://drive.massgrave.dev/en-gb_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052124.iso)     |\n| English                | x64  | [en_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052086.iso](https://drive.massgrave.dev/en_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052086.iso)           |\n| English                | x86  | [en_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052123.iso](https://drive.massgrave.dev/en_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052123.iso)           |\n| Spanish                | x64  | [es_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052109.iso](https://drive.massgrave.dev/es_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052109.iso)           |\n| Spanish                | x86  | [es_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052146.iso](https://drive.massgrave.dev/es_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052146.iso)           |\n| Estonian               | x64  | [et_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052088.iso](https://drive.massgrave.dev/et_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052088.iso)           |\n| Estonian               | x86  | [et_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052125.iso](https://drive.massgrave.dev/et_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052125.iso)           |\n| Finnish                | x64  | [fi_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052089.iso](https://drive.massgrave.dev/fi_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052089.iso)           |\n| Finnish                | x86  | [fi_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052126.iso](https://drive.massgrave.dev/fi_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052126.iso)           |\n| French                 | x64  | [fr_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052090.iso](https://drive.massgrave.dev/fr_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052090.iso)           |\n| French                 | x86  | [fr_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052127.iso](https://drive.massgrave.dev/fr_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052127.iso)           |\n| Hebrew                 | x64  | [he_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052093.iso](https://drive.massgrave.dev/he_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052093.iso)           |\n| Hebrew                 | x86  | [he_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052130.iso](https://drive.massgrave.dev/he_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052130.iso)           |\n| Chinese-Hong Kong SAR  | x64  | [hk_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052080.iso](https://drive.massgrave.dev/hk_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052080.iso)           |\n| Chinese-Hong Kong SAR  | x86  | [hk_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052117.iso](https://drive.massgrave.dev/hk_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052117.iso)           |\n| Croatian               | x64  | [hr_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052082.iso](https://drive.massgrave.dev/hr_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052082.iso)           |\n| Croatian               | x86  | [hr_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052119.iso](https://drive.massgrave.dev/hr_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052119.iso)           |\n| Hungarian              | x64  | [hu_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052094.iso](https://drive.massgrave.dev/hu_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052094.iso)           |\n| Hungarian              | x86  | [hu_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052131.iso](https://drive.massgrave.dev/hu_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052131.iso)           |\n| Italian                | x64  | [it_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052095.iso](https://drive.massgrave.dev/it_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052095.iso)           |\n| Italian                | x86  | [it_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052132.iso](https://drive.massgrave.dev/it_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052132.iso)           |\n| Japanese               | x64  | [ja_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052096.iso](https://drive.massgrave.dev/ja_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052096.iso)           |\n| Japanese               | x86  | [ja_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052133.iso](https://drive.massgrave.dev/ja_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052133.iso)           |\n| Korean                 | x64  | [ko_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052097.iso](https://drive.massgrave.dev/ko_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052097.iso)           |\n| Korean                 | x86  | [ko_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052134.iso](https://drive.massgrave.dev/ko_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052134.iso)           |\n| Lithuanian             | x64  | [lt_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052099.iso](https://drive.massgrave.dev/lt_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052099.iso)           |\n| Lithuanian             | x86  | [lt_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052136.iso](https://drive.massgrave.dev/lt_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052136.iso)           |\n| Latvian                | x64  | [lv_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052098.iso](https://drive.massgrave.dev/lv_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052098.iso)           |\n| Latvian                | x86  | [lv_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052135.iso](https://drive.massgrave.dev/lv_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052135.iso)           |\n| Norwegian-Bokmal       | x64  | [nb_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052100.iso](https://drive.massgrave.dev/nb_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052100.iso)           |\n| Norwegian-Bokmal       | x86  | [nb_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052137.iso](https://drive.massgrave.dev/nb_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052137.iso)           |\n| Dutch                  | x64  | [nl_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052085.iso](https://drive.massgrave.dev/nl_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052085.iso)           |\n| Dutch                  | x86  | [nl_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052122.iso](https://drive.massgrave.dev/nl_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052122.iso)           |\n| Polish                 | x64  | [pl_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052101.iso](https://drive.massgrave.dev/pl_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052101.iso)           |\n| Polish                 | x86  | [pl_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052138.iso](https://drive.massgrave.dev/pl_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052138.iso)           |\n| Portuguese-Portugal    | x64  | [pp_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052103.iso](https://drive.massgrave.dev/pp_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052103.iso)           |\n| Portuguese-Portugal    | x86  | [pp_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052140.iso](https://drive.massgrave.dev/pp_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052140.iso)           |\n| Portuguese-Brazil      | x64  | [pt_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052102.iso](https://drive.massgrave.dev/pt_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052102.iso)           |\n| Portuguese-Brazil      | x86  | [pt_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052139.iso](https://drive.massgrave.dev/pt_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052139.iso)           |\n| Romanian               | x64  | [ro_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052104.iso](https://drive.massgrave.dev/ro_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052104.iso)           |\n| Romanian               | x86  | [ro_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052141.iso](https://drive.massgrave.dev/ro_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052141.iso)           |\n| Russian                | x64  | [ru_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052105.iso](https://drive.massgrave.dev/ru_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052105.iso)           |\n| Russian                | x86  | [ru_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052142.iso](https://drive.massgrave.dev/ru_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052142.iso)           |\n| Slovak                 | x64  | [sk_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052107.iso](https://drive.massgrave.dev/sk_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052107.iso)           |\n| Slovak                 | x86  | [sk_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6075523.iso](https://drive.massgrave.dev/sk_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6075523.iso)           |\n| Slovenian              | x64  | [sl_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052108.iso](https://drive.massgrave.dev/sl_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052108.iso)           |\n| Slovenian              | x86  | [sl_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052145.iso](https://drive.massgrave.dev/sl_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052145.iso)           |\n| Serbian-Latin          | x64  | [sr-latn_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052106.iso](https://drive.massgrave.dev/sr-latn_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052106.iso) |\n| Serbian-Latin          | x86  | [sr-latn_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6075508.iso](https://drive.massgrave.dev/sr-latn_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6075508.iso) |\n| Swedish                | x64  | [sv_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052110.iso](https://drive.massgrave.dev/sv_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052110.iso)           |\n| Swedish                | x86  | [sv_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052147.iso](https://drive.massgrave.dev/sv_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052147.iso)           |\n| Thai                   | x64  | [th_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052111.iso](https://drive.massgrave.dev/th_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052111.iso)           |\n| Thai                   | x86  | [th_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052148.iso](https://drive.massgrave.dev/th_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052148.iso)           |\n| Turkish                | x64  | [tr_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052112.iso](https://drive.massgrave.dev/tr_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052112.iso)           |\n| Turkish                | x86  | [tr_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052149.iso](https://drive.massgrave.dev/tr_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052149.iso)           |\n| Chinese-Taiwan         | x64  | [tw_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052081.iso](https://drive.massgrave.dev/tw_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052081.iso)           |\n| Chinese-Taiwan         | x86  | [tw_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052118.iso](https://drive.massgrave.dev/tw_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052118.iso)           |\n| Ukrainian              | x64  | [uk_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052113.iso](https://drive.massgrave.dev/uk_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052113.iso)           |\n| Ukrainian              | x86  | [uk_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052150.iso](https://drive.massgrave.dev/uk_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052150.iso)           |\n\n== Windows 8.1 Embedded Enterprise\n\n**ویندوز 8.1  Embedded Enterprise**\n\n> بیلد 9600.17415  \n\n| Language               | Arch | Link                                                                                                                                                                                             |\n|:-----------------------|:-----|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Arabic                 | x64  | [ar_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052151.iso](https://drive.massgrave.dev/ar_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052151.iso)           |\n| Arabic                 | x86  | [ar_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052211.iso](https://drive.massgrave.dev/ar_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052211.iso)           |\n| Bulgarian              | x64  | [bg_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052152.iso](https://drive.massgrave.dev/bg_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052152.iso)           |\n| Bulgarian              | x86  | [bg_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052212.iso](https://drive.massgrave.dev/bg_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052212.iso)           |\n| Chinese-Simplified     | x64  | [cn_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052153.iso](https://drive.massgrave.dev/cn_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052153.iso)           |\n| Chinese-Simplified     | x86  | [cn_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052218.iso](https://drive.massgrave.dev/cn_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052218.iso)           |\n| Czech                  | x64  | [cs_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052157.iso](https://drive.massgrave.dev/cs_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052157.iso)           |\n| Czech                  | x86  | [cs_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052240.iso](https://drive.massgrave.dev/cs_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052240.iso)           |\n| Danish                 | x64  | [da_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052158.iso](https://drive.massgrave.dev/da_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052158.iso)           |\n| Danish                 | x86  | [da_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6075580.iso](https://drive.massgrave.dev/da_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6075580.iso)           |\n| German                 | x64  | [de_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6075540.iso](https://drive.massgrave.dev/de_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6075540.iso)           |\n| German                 | x86  | [de_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052258.iso](https://drive.massgrave.dev/de_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052258.iso)           |\n| Greek                  | x64  | [el_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6068418.iso](https://drive.massgrave.dev/el_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6068418.iso)           |\n| Greek                  | x86  | [el_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6068419.iso](https://drive.massgrave.dev/el_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6068419.iso)           |\n| English-United Kingdom | x64  | [en-gb_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052165.iso](https://drive.massgrave.dev/en-gb_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052165.iso)     |\n| English-United Kingdom | x86  | [en-gb_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052254.iso](https://drive.massgrave.dev/en-gb_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052254.iso)     |\n| English                | x64  | [en_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052160.iso](https://drive.massgrave.dev/en_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052160.iso)           |\n| English                | x86  | [en_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052252.iso](https://drive.massgrave.dev/en_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052252.iso)           |\n| Spanish                | x64  | [es_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052206.iso](https://drive.massgrave.dev/es_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052206.iso)           |\n| Spanish                | x86  | [es_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052318.iso](https://drive.massgrave.dev/es_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052318.iso)           |\n| Estonian               | x64  | [et_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052172.iso](https://drive.massgrave.dev/et_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052172.iso)           |\n| Estonian               | x86  | [et_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052255.iso](https://drive.massgrave.dev/et_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052255.iso)           |\n| Finnish                | x64  | [fi_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052177.iso](https://drive.massgrave.dev/fi_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052177.iso)           |\n| Finnish                | x86  | [fi_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052256.iso](https://drive.massgrave.dev/fi_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052256.iso)           |\n| French                 | x64  | [fr_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052183.iso](https://drive.massgrave.dev/fr_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052183.iso)           |\n| French                 | x86  | [fr_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052257.iso](https://drive.massgrave.dev/fr_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052257.iso)           |\n| Hebrew                 | x64  | [he_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052189.iso](https://drive.massgrave.dev/he_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052189.iso)           |\n| Hebrew                 | x86  | [he_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052259.iso](https://drive.massgrave.dev/he_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052259.iso)           |\n| Chinese-Hong Kong SAR  | x64  | [hk_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052154.iso](https://drive.massgrave.dev/hk_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052154.iso)           |\n| Chinese-Hong Kong SAR  | x86  | [hk_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052223.iso](https://drive.massgrave.dev/hk_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052223.iso)           |\n| Croatian               | x64  | [hr_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052156.iso](https://drive.massgrave.dev/hr_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052156.iso)           |\n| Croatian               | x86  | [hr_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052238.iso](https://drive.massgrave.dev/hr_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052238.iso)           |\n| Hungarian              | x64  | [hu_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6075554.iso](https://drive.massgrave.dev/hu_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6075554.iso)           |\n| Hungarian              | x86  | [hu_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052260.iso](https://drive.massgrave.dev/hu_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052260.iso)           |\n| Italian                | x64  | [it_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052191.iso](https://drive.massgrave.dev/it_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052191.iso)           |\n| Italian                | x86  | [it_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052265.iso](https://drive.massgrave.dev/it_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052265.iso)           |\n| Japanese               | x64  | [ja_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052192.iso](https://drive.massgrave.dev/ja_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052192.iso)           |\n| Japanese               | x86  | [ja_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052271.iso](https://drive.massgrave.dev/ja_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052271.iso)           |\n| Korean                 | x64  | [ko_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052193.iso](https://drive.massgrave.dev/ko_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052193.iso)           |\n| Korean                 | x86  | [ko_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052275.iso](https://drive.massgrave.dev/ko_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052275.iso)           |\n| Lithuanian             | x64  | [lt_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052195.iso](https://drive.massgrave.dev/lt_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052195.iso)           |\n| Lithuanian             | x86  | [lt_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052285.iso](https://drive.massgrave.dev/lt_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052285.iso)           |\n| Latvian                | x64  | [lv_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052194.iso](https://drive.massgrave.dev/lv_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052194.iso)           |\n| Latvian                | x86  | [lv_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052280.iso](https://drive.massgrave.dev/lv_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052280.iso)           |\n| Norwegian-Bokmal       | x64  | [nb_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052196.iso](https://drive.massgrave.dev/nb_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052196.iso)           |\n| Norwegian-Bokmal       | x86  | [nb_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052289.iso](https://drive.massgrave.dev/nb_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052289.iso)           |\n| Dutch                  | x64  | [nl_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052159.iso](https://drive.massgrave.dev/nl_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052159.iso)           |\n| Dutch                  | x86  | [nl_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052247.iso](https://drive.massgrave.dev/nl_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052247.iso)           |\n| Polish                 | x64  | [pl_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052197.iso](https://drive.massgrave.dev/pl_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052197.iso)           |\n| Polish                 | x86  | [pl_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052294.iso](https://drive.massgrave.dev/pl_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052294.iso)           |\n| Portuguese-Portugal    | x64  | [pp_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052199.iso](https://drive.massgrave.dev/pp_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052199.iso)           |\n| Portuguese-Portugal    | x86  | [pp_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052298.iso](https://drive.massgrave.dev/pp_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052298.iso)           |\n| Portuguese-Brazil      | x64  | [pt_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052198.iso](https://drive.massgrave.dev/pt_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052198.iso)           |\n| Portuguese-Brazil      | x86  | [pt_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052297.iso](https://drive.massgrave.dev/pt_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052297.iso)           |\n| Romanian               | x64  | [ro_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052200.iso](https://drive.massgrave.dev/ro_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052200.iso)           |\n| Romanian               | x86  | [ro_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052299.iso](https://drive.massgrave.dev/ro_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052299.iso)           |\n| Russian                | x64  | [ru_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052201.iso](https://drive.massgrave.dev/ru_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052201.iso)           |\n| Russian                | x86  | [ru_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052300.iso](https://drive.massgrave.dev/ru_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052300.iso)           |\n| Slovak                 | x64  | [sk_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052203.iso](https://drive.massgrave.dev/sk_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052203.iso)           |\n| Slovak                 | x86  | [sk_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052308.iso](https://drive.massgrave.dev/sk_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052308.iso)           |\n| Slovenian              | x64  | [sl_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052204.iso](https://drive.massgrave.dev/sl_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052204.iso)           |\n| Slovenian              | x86  | [sl_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052314.iso](https://drive.massgrave.dev/sl_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052314.iso)           |\n| Serbian-Latin          | x64  | [sr-latn_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052202.iso](https://drive.massgrave.dev/sr-latn_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052202.iso) |\n| Serbian-Latin          | x86  | [sr-latn_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052303.iso](https://drive.massgrave.dev/sr-latn_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052303.iso) |\n| Swedish                | x64  | [sv_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052207.iso](https://drive.massgrave.dev/sv_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052207.iso)           |\n| Swedish                | x86  | [sv_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052324.iso](https://drive.massgrave.dev/sv_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052324.iso)           |\n| Thai                   | x64  | [th_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052208.iso](https://drive.massgrave.dev/th_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052208.iso)           |\n| Thai                   | x86  | [th_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052326.iso](https://drive.massgrave.dev/th_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052326.iso)           |\n| Turkish                | x64  | [tr_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6075568.iso](https://drive.massgrave.dev/tr_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6075568.iso)           |\n| Turkish                | x86  | [tr_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052327.iso](https://drive.massgrave.dev/tr_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052327.iso)           |\n| Chinese-Taiwan         | x64  | [tw_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052155.iso](https://drive.massgrave.dev/tw_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052155.iso)           |\n| Chinese-Taiwan         | x86  | [tw_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052231.iso](https://drive.massgrave.dev/tw_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052231.iso)           |\n| Ukrainian              | x64  | [uk_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052210.iso](https://drive.massgrave.dev/uk_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052210.iso)           |\n| Ukrainian              | x86  | [uk_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052328.iso](https://drive.massgrave.dev/uk_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052328.iso)           |\n\n== Other Versions\n\n**نسخه‌های دیگر**\n\n- [archive.isdn/artifacts][1]\n- [os.click][2]\n- [files.rg-adguard.net/language/a7c44b76e808][3]\n- [MVS Bot][4]\n\n:::\n\n[MSDL]: https://msdl.gravesoft.dev/#52\n[1]: https://archive.isdn.network/artifacts/\n[2]: https://os.click/\n[3]: https://files.rg-adguard.net/language/1c50237d-03ef-617b-41f0-a7c44b76e808\n[4]: https://discord.gg/FajfGaH3nD\n[genuine]: https://nirevil.github.io/windows-activation/fa/wa/genuine-installation-media#%D8%AA%D8%A7%D9%94%DB%8C%DB%8C%D8%AF-%D8%A7%D8%B5%D8%A7%D9%84%D8%AA-%D9%81%D8%A7%DB%8C%D9%84%E2%80%8C%D9%87%D8%A7\n"
  },
  {
    "path": "docs/fa/wa/windows_arm_links.md",
    "content": "---\nlayout: doc\noutline: deep\nlang: fa-IR\ndir: rtl\ntitle: 'دانلود ویندوز ARM64'\ndescription: 'تمام لینک‌های دانلود فقط به فایل‌های اصلی منتهی می‌شوند'\ndate: 2025-01-19\neditLink: true\n---\n\n# دانلود ویندوز ARM64\n\n::: info تمام لینک‌های دانلود فقط به **`فایل‌های اصلی`** منتهی می‌شوند.\n\n- برای نصب سیستم‌عامل با معماری ARM64‌ به یک پردازنده (CPU) ARM64 نیاز دارید.\n\n- [**سوالات متداول**](./genuine-installation-media#سوالات-متداول)\n\n- [**ویندوز 10 پس از پایان عمر خود**](./windows10_eol)\n\n- [**چگونه اصالت این فایل‌ها رو تایید کنیم؟**][Genuine]\n\nفایل‌های Iso مخصوص مصرف‌کنندگان شامل همه نسخه‌ها، مانند خانگی، حرفه‌ای و آموزشی می‌شود، اما نسخه سازمانی را شامل نمی‌شود. در مقابل، ایزوی مخصوص کسب‌وکار شامل همه نسخه‌ها به جز نسخه‌های خانگی است.\n\n:::\n\n<br/>\n\n## لینک های دانلود\n\n:::tabs\n\n### ویندوز ۱۱ 24H2\n\n== Windows 11 Consumer 24H2 🤍\n\n**ویندوز ۱۱ نسخه مصرف‌کننده 24H2**\n\n> - بیلد 26100.1742\n\nلینک‌های دانلود: [MSDL 🤍][1] / [مایکروسافت][2]\n\n== Windows 11 IoT Enterprise 24H2\n\n**ویندوز ۱۱ IoT Enterprise 24H2**\n\n> **نسخه LTSC نیست**\n> \n> - بیلد 26100.1742\n> - این ISOها شامل نسخه‌های زیر هستند: \n> - Windows 11 Enterprise\n> - Windows 11 IoT Enterprise\n> - Windows 11 IoT Enterprise Subscription\n> \n> - نسخه ARM64 برای IoT Enterprise ISO فقط به زبان انگلیسی موجود است.  \n\n| زبان | معماری | لینک |\n|:---|:---|:---|\n| انگلیسی | ARM64 | [en-us_windows_11_iot_enterprise_version_24h2_arm64_dvd_e9155a10.iso](https://drive.massgrave.dev/en-us_windows_11_iot_enterprise_version_24h2_arm64_dvd_e9155a10.iso) |\n\n<br/> \n\n## نکته مهم برای نسخه IoT Enterprise (GAC)\n\n::: danger **`این نسخه، LTSC نیست`**\n\n### هنگام نصب ویندوز نسخه IoT Enterprise (GAC) به این نکات توجه کنید:\n\n- اگر سیستم شما دارای **مجوز OEM** در مادربرد (نسخه Pro یا بالاتر) باشد،\n- و کلید مورد استفاده در Setup **OEM** باشد،\n- آنگاه Windows Setup در مرحله نهایی، کلید OEM را از مادربرد اعمال خواهد کرد.\n\n### این به چه معناست؟  \n- شما می‌توانید **IoT Enterprise** را با ویژگی‌های آن (از جمله الزامات سخت‌افزاری ساده در ویندوز ۱۱ نسخه ۲۴H2 و غیره) نصب کنید.\n- پس از نصب، سیستم نسخه Pro را نشان می‌دهد، نه IoT Enterprise.\n- این اتفاق می‌افتد زیرا IoT Enterprise (GAC) تنها با یک کلید OEM توزیع می‌شود.\n- این رفتار طبیعی است و نمی‌توان از آن اجتناب کرد.\n\n### رفع مشکل  \nپس از نصب، با اجرای دستور زیر در ابزار خط فرمان (CMD) در حالت ادمین، نسخه را تغییر دهید:  \n\n```shell\nslmgr.vbs /ipk XQQYW-NFFMW-XJPBH-K8732-CKFFD\n```\n\n== Windows 11 IoT Enterprise LTSC 2024\n\n**ویندوز ۱۱ IoT Enterprise LTSC 2024**\n\n> - بیلد 26100.1742\n> - این ISOها شامل نسخه‌های زیر هستند:\n> - Windows 11 Enterprise LTSC\n> - Windows 11 IoT Enterprise LTSC\n> - Windows 11 IoT Enterprise Subscription LTSC\n> \n> - نسخه ARM64 برای LTSC فقط به زبان انگلیسی موجود است.\n\n| زبان | معماری | لینک |\n|:---|:---|:---|\n| انگلیسی | ARM64 | [en-us_windows_11_iot_enterprise_ltsc_2024_arm64_dvd_ec517836.iso](https://drive.massgrave.dev/en-us_windows_11_iot_enterprise_ltsc_2024_arm64_dvd_ec517836.iso) |\n\n== Other Versions\n\n**نسخه‌های دیگر**\n\n- فایل [رسمی ESD مایکروسافت][3] و [مبدل ESD به ISO][4] توسط [abbodi1406][5] را دانلود کنید،\n- فایل ESD را کنار `decrypt.cmd` قرار دهید و آن اسکریپت را اجرا کنید.\n- این کار فایل ISO را ایجاد می‌کند.\n- این فرآیند همانند روشی است که ابزار رسمی MCT برای ایجاد ISOهای ویندوز ۱۰ و ۱۱ استفاده می‌کند.\n\n:::\n\n### ویندوز ۱۰\n\n:::tabs\n\n== Windows 10 Business 22H2\n\n**ویندوز ۱۰ نسخه تجاری 22H2**\n\n> - بیلد 19045.5854\n\n\n| زبان | معماری | لینک |\n|:---|:---|:---|\n| عربی | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Arabic_Pro_Ent_EDU_N_MLF_X24-05064.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Arabic_Pro_Ent_EDU_N_MLF_X24-05064.ISO) |\n| برزیلی | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Brazilian_Pro_Ent_EDU_N_MLF_X24-05065.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Brazilian_Pro_Ent_EDU_N_MLF_X24-05065.ISO) |\n| بلغاری | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Bulgarian_Pro_Ent_EDU_N_MLF_X24-05066.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Bulgarian_Pro_Ent_EDU_N_MLF_X24-05066.ISO) |\n| چینی ساده‌شده | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_ChnSimp_Pro_Ent_EDU_N_MLF_X24-05067.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_ChnSimp_Pro_Ent_EDU_N_MLF_X24-05067.ISO) |\n| چینی سنتی | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_ChnTrad_Pro_Ent_EDU_N_MLF_X24-05068.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_ChnTrad_Pro_Ent_EDU_N_MLF_X24-05068.ISO) |\n| کروات | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Croatian_Pro_Ent_EDU_N_MLF_X24-05069.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Croatian_Pro_Ent_EDU_N_MLF_X24-05069.ISO) |\n| چکی | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Czech_Pro_Ent_EDU_N_MLF_X24-05070.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Czech_Pro_Ent_EDU_N_MLF_X24-05070.ISO) |\n| دانمارکی | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Danish_Pro_Ent_EDU_N_MLF_X24-05071.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Danish_Pro_Ent_EDU_N_MLF_X24-05071.ISO) |\n| هلندی | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Dutch_Pro_Ent_EDU_N_MLF_X24-05072.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Dutch_Pro_Ent_EDU_N_MLF_X24-05072.ISO) |\n| انگلیسی بین‌المللی | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Eng_Intl_Pro_Ent_EDU_N_MLF_X24-05073.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Eng_Intl_Pro_Ent_EDU_N_MLF_X24-05073.ISO) |\n| انگلیسی | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_English_Pro_Ent_EDU_N_MLF_X24-05074.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_English_Pro_Ent_EDU_N_MLF_X24-05074.ISO) |\n| استونیایی | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Estonian_Pro_Ent_EDU_N_MLF_X24-05075.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Estonian_Pro_Ent_EDU_N_MLF_X24-05075.ISO) |\n| فنلاندی | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Finnish_Pro_Ent_EDU_N_MLF_X24-05076.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Finnish_Pro_Ent_EDU_N_MLF_X24-05076.ISO) |\n| فرانسوی کانادایی | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_FrenchCanadian_Pro_Ent_EDU_N_MLF_X24-05078.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_FrenchCanadian_Pro_Ent_EDU_N_MLF_X24-05078.ISO) |\n| فرانسوی | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_French_Pro_Ent_EDU_N_MLF_X24-05077.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_French_Pro_Ent_EDU_N_MLF_X24-05077.ISO) |\n| آلمانی | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_German_Pro_Ent_EDU_N_MLF_X24-05079.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_German_Pro_Ent_EDU_N_MLF_X24-05079.ISO) |\n| یونانی | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Greek_Pro_Ent_EDU_N_MLF_X24-05080.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Greek_Pro_Ent_EDU_N_MLF_X24-05080.ISO) |\n| عبری | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Hebrew_Pro_Ent_EDU_N_MLF_X24-05081.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Hebrew_Pro_Ent_EDU_N_MLF_X24-05081.ISO) |\n| مجارستانی | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Hungarian_Pro_Ent_EDU_N_MLF_X24-05082.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Hungarian_Pro_Ent_EDU_N_MLF_X24-05082.ISO) |\n| ایتالیایی | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Italian_Pro_Ent_EDU_N_MLF_X24-05083.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Italian_Pro_Ent_EDU_N_MLF_X24-05083.ISO) |\n| ژاپنی | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Japanese_Pro_Ent_EDU_N_MLF_X24-05084.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Japanese_Pro_Ent_EDU_N_MLF_X24-05084.ISO) |\n| کره‌ای | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Korean_Pro_Ent_EDU_N_MLF_X24-05085.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Korean_Pro_Ent_EDU_N_MLF_X24-05085.ISO) |\n| لتونیایی | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Latvian_Pro_Ent_EDU_N_MLF_X24-05086.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Latvian_Pro_Ent_EDU_N_MLF_X24-05086.ISO) |\n| لیتوانیایی | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Lithuanian_Pro_Ent_EDU_N_MLF_X24-05087.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Lithuanian_Pro_Ent_EDU_N_MLF_X24-05087.ISO) |\n| نروژی | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Norwegian_Pro_Ent_EDU_N_MLF_X24-05088.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Norwegian_Pro_Ent_EDU_N_MLF_X24-05088.ISO) |\n| لهستانی | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Polish_Pro_Ent_EDU_N_MLF_X24-05089.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Polish_Pro_Ent_EDU_N_MLF_X24-05089.ISO) |\n| پرتغالی | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Portuguese_Pro_Ent_EDU_N_MLF_X24-05090.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Portuguese_Pro_Ent_EDU_N_MLF_X24-05090.ISO) |\n| رومانیایی | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Romanian_Pro_Ent_EDU_N_MLF_X24-05091.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Romanian_Pro_Ent_EDU_N_MLF_X24-05091.ISO) |\n| روسی | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Russian_Pro_Ent_EDU_N_MLF_X24-05092.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Russian_Pro_Ent_EDU_N_MLF_X24-05092.ISO) |\n| صربی لاتین | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Serbian_Latin_Pro_Ent_EDU_N_MLF_X24-05093.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Serbian_Latin_Pro_Ent_EDU_N_MLF_X24-05093.ISO) |\n| اسلواکی | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Slovak_Pro_Ent_EDU_N_MLF_X24-05094.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Slovak_Pro_Ent_EDU_N_MLF_X24-05094.ISO) |\n| اسلوونیایی | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Slovenian_Pro_Ent_EDU_N_MLF_X24-05095.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Slovenian_Pro_Ent_EDU_N_MLF_X24-05095.ISO) |\n| اسپانیایی لاتین | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Spanish_Latam_Pro_Ent_EDU_N_MLF_X24-05096.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Spanish_Latam_Pro_Ent_EDU_N_MLF_X24-05096.ISO) |\n| اسپانیایی | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Spanish_Pro_Ent_EDU_N_MLF_X24-05097.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Spanish_Pro_Ent_EDU_N_MLF_X24-05097.ISO) |\n| سوئدی | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Swedish_Pro_Ent_EDU_N_MLF_X24-05098.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Swedish_Pro_Ent_EDU_N_MLF_X24-05098.ISO) |\n| تایلندی | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Thai_Pro_Ent_EDU_N_MLF_X24-05099.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Thai_Pro_Ent_EDU_N_MLF_X24-05099.ISO) |\n| ترکی | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Turkish_Pro_Ent_EDU_N_MLF_X24-05100.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Turkish_Pro_Ent_EDU_N_MLF_X24-05100.ISO) |\n| اوکراینی | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Ukrainian_Pro_Ent_EDU_N_MLF_X24-05101.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Ukrainian_Pro_Ent_EDU_N_MLF_X24-05101.ISO) |\n\n\n== Windows 10 IoT Enterprise 22H2\n\n**ویندوز ۱۰ IoT Enterprise 22H2**\n\n> **نسخه LTSC نیست**\n> \n> - بیلد 19045.2006\n> - نسخه ARM64 برای IoT Enterprise ISO فقط به زبان انگلیسی موجود است.  \n\n| زبان | معماری | لینک |\n|:---|:---|:---|\n| انگلیسی | ARM64 | [en-us_windows_10_iot_enterprise_version_22h2_arm64_dvd_39566b6b.iso](https://drive.massgrave.dev/en-us_windows_10_iot_enterprise_version_22h2_arm64_dvd_39566b6b.iso) |\n\n<br/> \n\n## نکته مهم برای نسخه IoT Enterprise (GAC): \n\n::: danger **`این نسخه، LTSC نیست`**\n\n### هنگام نصب ویندوز نسخه IoT Enterprise (GAC) به این نکات توجه کنید:\n\n- اگر سیستم شما دارای **مجوز OEM** در مادربرد (نسخه Pro یا بالاتر) باشد،\n- و کلید مورد استفاده در Setup **OEM** باشد،\n- آنگاه Windows Setup در مرحله نهایی، کلید OEM را از مادربرد اعمال خواهد کرد.\n\n### این به چه معناست؟  \n- شما می‌توانید **IoT Enterprise** را با ویژگی‌های آن (از جمله الزامات سخت‌افزاری ساده در ویندوز ۱۱ نسخه ۲۴H2 و غیره) نصب کنید.\n- پس از نصب، سیستم نسخه Pro را نشان می‌دهد، نه IoT Enterprise.\n- این اتفاق می‌افتد زیرا IoT Enterprise (GAC) تنها با یک کلید OEM توزیع می‌شود.\n- این رفتار طبیعی است و نمی‌توان از آن اجتناب کرد.\n\n### رفع مشکل  \nپس از نصب، با اجرای دستور زیر در ابزار خط فرمان (CMD) در حالت ادمین، نسخه را تغییر دهید:  \n\n```shell\nslmgr.vbs /ipk XQQYW-NFFMW-XJPBH-K8732-CKFFD\n```\n\n== Windows 10 IoT Enterprise LTSC 2021\n\n**ویندوز ۱۰ IoT Enterprise LTSC 2021**\n\n> - بیلد 19044.1288\n> - نسخه ARM64 برای LTSC فقط به زبان انگلیسی موجود است.  \n\n| زبان | معماری | لینک |\n|:---|:---|:---|\n| انگلیسی | ARM64 | [en-us_windows_10_iot_enterprise_ltsc_2021_arm64_dvd_e8d4fc46.iso](https://drive.massgrave.dev/en-us_windows_10_iot_enterprise_ltsc_2021_arm64_dvd_e8d4fc46.iso) |\n\n== Other Versions\n\n**نسخه‌های دیگر**\n\n- فایل [رسمی ESD مایکروسافت][6] و [مبدل ESD به ISO][7] توسط [abbodi1406][8] را دانلود کنید،\n- فایل ESD را کنار `decrypt.cmd` قرار دهید و آن اسکریپت را اجرا کنید.\n- این کار فایل ISO را ایجاد می‌کند.\n- این فرآیند همانند روشی است که ابزار رسمی MCT برای ایجاد ISOهای ویندوز ۱۰ و ۱۱ استفاده می‌کند.\n\n:::\n\n[1]: https://msdl.gravesoft.dev/#3131\n[2]: https://www.microsoft.com/en-us/software-download/windows11arm64\n[3]: https://worproject.com/esd\n[4]: https://github.com/abbodi1406/WHD/raw/master/scripts/esd-decrypter-wimlib-65.7z\n[5]: https://forums.mydigitallife.net/threads/abbodi1406s-batch-scripts-repo.74197/\n[6]: https://worproject.com/esd\n[7]: https://github.com/abbodi1406/WHD/raw/master/scripts/esd-decrypter-wimlib-65.7z\n[8]: https://forums.mydigitallife.net/threads/abbodi1406s-batch-scripts-repo.74197/\n[genuine]: https://nirevil.github.io/windows-activation/fa/wa/genuine-installation-media#%D8%AA%D8%A7%D9%94%DB%8C%DB%8C%D8%AF-%D8%A7%D8%B5%D8%A7%D9%84%D8%AA-%D9%81%D8%A7%DB%8C%D9%84%E2%80%8C%D9%87%D8%A7\n"
  },
  {
    "path": "docs/fa/wa/windows_ltsc_links.md",
    "content": "---\nlayout: doc\noutline: deep\nlang: fa-IR\ndir: rtl\ntitle: 'دانلود ویندوز LTSC'\ndescription: 'تمام لینک‌های دانلود فقط به فایل‌های اصلی منتهی می‌شوند'\ndate: 2025-04-19\neditLink: true\n---\n\n# دانلود ویندوز LTSC\n\n<br/> \n\n::: info تمام لینک‌های دانلود فقط به **`فایل‌های اصلی`** منتهی می‌شوند\n\n- [**سوالات متداول**](./genuine-installation-media#سوالات-متداول)\n\n- [**چگونه اصالت این فایل‌ها رو تایید کنیم؟**][Genuine]\n\n- [**ویندوز 10 پس از پایان عمر خود**](./windows10_eol)\n\n- مایکروسافت لینک‌های عمومی [نسخه ارزیابی][1] را برای نسخه‌های LTSC ویندوز ارائه می‌دهد، اما همانطور که از نامش پیداست، این ISOها برای اهداف ارزیابی هستند و نمی‌توانند برای بیش از ۹۰ روز فعال شوند. ISOهای فهرست شده در زیر نسخه کامل هستند که می‌توانند فعال شوند.\n\n:::\n\n<br/> \n\n## نسخه LTSC چیه و آیا انتخاب مناسبی برای شما هست؟؟\n\n::: info اطلاعات بیشتر\n\n::: details برای مشاهده جزئیات اینجا کلیک کنید\n\nاگر مطمئن نیستید، از LTSC اجتناب کنید و کانال دسترسی عمومی و نسخه‌های آن (Home, Pro, Enterprise و غیره) را انتخاب کنید.\n\n<hr/><br/>\n\n### مایکروسافت ویندوز ۱۰ و ۱۱ را از طریق دو کانال خدماتی منتشر می‌کند.\n\n1. **GAC — کانال دسترسی عمومی**\n\n- این برای مشتریان عمومی و سازمانی در نظر گرفته شده است.\n- نمونه‌های نسخه شامل گزینه‌هایی مانند Home, Pro و Enterprise است.\n- حداکثر پشتیبانی در همان بیلد معمولاً [۲ سال][2] برای مصرف‌کنندگان و [۳ سال][3] برای شرکت‌ها است. پس از آن، باید به‌روزرسانی‌های ویژگی را نصب کنید.\n- این کانال اصلی خدماتی است و سایر نرم‌افزارها و بازی‌ها معمولاً از چرخه عمر این کانال برای ارائه پشتیبانی پیروی می‌کنند.\n2. **LTSC — کانال خدماتی بلندمدت**\n\n- این برای دستگاه‌هایی طراحی شده است که عملکرد و ویژگی‌های آنها باید در طول زمان ثابت بماند، مانند سیستم‌های پزشکی، کنترل‌کننده‌های صنعتی و دستگاه‌های کنترل ترافیک هوایی.\n- نمونه‌های نسخه‌ها شامل: Enterprise LTSC و IoT Enterprise LTSC است.\n- حداکثر پشتیبانی در همان بیلد معمولاً [۵ سال][4] برای LTSC و [۱۰ سال][5] برای IoT LTSC است.\n- این کانال اصلی خدماتی نیست و سایر نرم‌افزارها و بازی‌ها معمولاً از چرخه عمر این کانال پیروی نمی‌کنند. به عنوان مثال، مرورگرها و بازی‌ها ممکن است برای ۱۰ سال در همان بیلد پشتیبانی ارائه ندهند.\n- این فاقد اکثر برنامه‌های فروشگاه (UWP) است.\n  \n::: \n\n<hr/><br/>\n\n## از دلایل استفاده از LTSC\n\n::: tip **دلایل استفاده از LTSC**\n\n> - شما ارتقاء سالانه ویژگی‌های ویندوز را دوست ندارید\n> - شما برنامه‌های از پیش نصب شده فروشگاه (UWP) را نیز دوست ندارید\n> - شما پشتیبانی به‌روزرسانی طولانی‌تری برای ویندوز ۱۰ می‌خواهید\n\n### دلایل اجتناب از استفاده از LTSC\n\n> - همانطور که در بالا ذکر شد، بسیاری از بازی‌ها و نرم‌افزارها ممکن است پس از رسیدن همان بیلد به پایان عمر در GAC از LTSC پشتیبانی نکنند\n> - بازی‌ها ممکن است به طور پیش‌فرض کار نکنند و شما باید به صورت دستی برنامه‌های فروشگاه و Xbox را نصب کنید\n> - سخت‌افزار جدید ممکن است توسط یک بیلد LTSC ۲-۳ ساله به طور کامل پشتیبانی نشود (نسخه جدید LTSC هر ۳ سال یکبار منتشر می‌شود)\n> - ممکن است ویژگی‌های جدید اضافه شده در GAC را که در LTSC موجود نیستند از دست بدهید\n\n### تصورات غلط رایج\n\n> **LTSC سریع است**\n> \n> سریع نیست، اگرچه ممکن است به دلیل عدم اجرای برنامه‌های فروشگاه در پس‌زمینه، کمی رم بیشتری در دسترس باشد، و شما می‌توانید با [خاموش کردن][6] برنامه‌های پس‌زمینه و برنامه‌های راه‌اندازی، به همین نتیجه در نسخه‌های کانال GAC برسید.\n> - بیشتر حریم خصوصی محور است.\n>   نه، [گزینه‌های تله‌متری][7] همانند GAC Enterprise هستند.\n\n:::\n\n## نصب برنامه فروشگاه مایکروسافت در LTSC\n\n::: details برای اطلاعات بیشتر اینجا کلیک کنید\n\nقابل اجرا در ویندوز ۱۱ LTSC 2024 و ویندوز ۱۰ LTSC 2021.\n\n### فروشگاه مایکروسافت\n\n> نسخه‌های LTSC با برنامه‌های فروشگاه از پیش نصب شده عرضه نمی‌شوند.  \n> برای نصب آنها، مراحل زیر را دنبال کنید:  \n> - اطمینان حاصل کنید که اینترنت متصل است.\n> - پاورشل را به در حالت ادمین باز کرده و دستور زیر را وارد کنید:\n>\n> ```shell\n> wsreset -i\n> ```\n>\n> - منتظر بمانید تا اعلانی مبنی بر نصب برنامه فروشگاه ظاهر شود، ممکن است چند دقیقه طول بکشد.\n>\n> - در ویندوز ۱۰ ۲۰۲۱ LTSC، ممکن است با خطایی مواجه شوید که نشان می‌دهد cliprenew.exe یافت نمی‌شود. این خطا را می‌توان با خیال راحت نادیده گرفت.\n> \n\n### نصب کننده برنامه\n\n> این برنامه بسیار مفید است؛ شامل WinGet است که نصب آسان بسته‌های .appx را امکان‌پذیر می‌کند.  \n> پس از نصب برنامه فروشگاه، نصب کننده برنامه را از این URL نصب کنید:  \n>\n> - [apps.microsoft.com/detail/9nb][8]\n\n### کار نکرد. چه کار باید بکنم؟\n\n> می‌توانید آن‌ها را با استفاده از بسته ارائه شده توسط abbodi1406 نصب کنید.  \n>\n> - [github.com/htfx/releases/v0.0.24][9]\n\n:::\n\n## تفاوت‌های بین IoT و Non-IoT Windows Enterprise LTSC\n\n::: details برای اطلاعات بیشتر اینجا کلیک کنید\n\n:::tabs\n\n== Windows 11 LTSC 2024\n\n**ویندوز ۱۱ LTSC 2024**\n\n| ویژگی‌ها | Enterprise LTSC | IoT Enterprise LTSC / IoT Enterprise Subscription LTSC |\n|:---|:---|:---|\n| **TPM / Secure boot / UEFI / 4GB RAM** | همه مورد نیاز است | [مورد نیاز نیست](https://learn.microsoft.com/en-us/windows/iot/iot-enterprise/Hardware/System_Requirements?tabs=Windows11LTSC#optional-minimum-requirements) 🎉 <br /> همچنین توسط [IoT Enterprise 24H2 (Non-LTSC)](./windows_11_links) مورد نیاز نیست |\n| **رمزگذاری خودکار دستگاه** | فعال | غیرفعال |\n| **پشتیبانی به‌روزرسانی** | ۵ سال | ۱۰ سال |\n| **ویژگی ذخیره‌سازی رزرو شده** | فعال | غیرفعال |\n| **مجوز دیجیتال (HWID)** | پشتیبانی نمی‌شود | پشتیبانی می‌شود |\n| **۲ جلسه RDP همزمان** | خیر | بله |\n\n\n> - IoT Enterprise LTSC برنده است.\n> - تنها تفاوت بین IoT Enterprise LTSC و IoT Enterprise Subscription LTSC این است که نسخه اشتراک از مجوز اشتراک پشتیبانی می‌کند.\n> - شما می‌توانید نسخه‌ها را به یکدیگر تغییر دهید (IoT و Non-IoT Windows Enterprise LTSC) فقط با وارد کردن کلید نسخه مربوطه در صفحه فعال‌سازی در تنظیمات ویندوز.\n\n| | | |\n|---|---|---|\n| IoT Enterprise LTSC 2024 | IoTEnterpriseS | `KBN8V-HFGQ4-MGXVD-347P6-PDQGT` |\n| Enterprise LTSC 2024 | EnterpriseS | `M7XTQ-FN8P6-TTKYV-9D4CC-J462D` |\n\n\n== Windows 10 LTSC 2021\n\n**ویندوز ۱۰ LTSC 2021**\n\n\n| ویژگی‌ها | Enterprise LTSC | IoT Enterprise LTSC |\n|:---|:---|:---|\n| **پشتیبانی به‌روزرسانی** | [۵ سال (تا ۲۰۲۷)](https://learn.microsoft.com/en-us/lifecycle/products/windows-10-enterprise-ltsc-2021) | [۱۰ سال (تا ۲۰۳۲)](https://learn.microsoft.com/en-us/lifecycle/products/windows-10-iot-enterprise-ltsc-2021) |\n| **ویژگی ذخیره‌سازی رزرو شده** | فعال | غیرفعال |\n| **مجوز دیجیتال (HWID)** | پشتیبانی نمی‌شود | پشتیبانی می‌شود |\n| **مجوز KMS** | پشتیبانی می‌شود | پشتیبانی پس از به‌روزرسانی 19044.2788 اضافه شد |\n| **پشتیبانی از پوشه $OEM$** | بله | خیر [(اطلاعات بیشتر)](./oem-folder) |\n\n\n> - IoT Enterprise LTSC برنده است.\n> - شما می‌توانید نسخه‌ها را به یکدیگر تغییر دهید (IoT و Non-IoT Windows Enterprise LTSC) فقط با وارد کردن کلید نسخه مربوطه در صفحه فعال‌سازی در تنظیمات ویندوز.\n\n| | | |\n|---|---|---|\n| IoT Enterprise LTSC 2021 | IoTEnterpriseS | `QPM6N-7J2WJ-P88HH-P3YRH-YY74H` |\n| Enterprise LTSC 2021 | EnterpriseS | `M7XTQ-FN8P6-TTKYV-9D4CC-J462D` |\n\n== Old Versions\n\n**نسخه‌های قدیمی**\n\n> - ISO هایی برای IoT Enterprise LTSC/LTSB 2019, 2016 و 2015 موجود است، اما آنها فقط کلید OEM LTSC غیر IoT (عمومی، فعال نشده) را از پیش نصب کرده‌اند. کلید نصب شده تنها تفاوت است. نسخه واقعی و متفاوتی از IoT برای این نسخه‌ها موجود نیست.\n\n:::\n\n## چگونه از نسخه غیر LTSC به نسخه LTSC با حفظ فایل‌ها و برنامه‌ها ارتقا دهیم؟\n\n::: details برای اطلاعات بیشتر اینجا کلیک کنید\n\nممکن است بخواهید [راهنمای پایان عمر ویندوز ۱۰](./windows10_eol) را بررسی کنید.\n\n:::\n\n## چگونه ویندوز ۱۱ IoT Enterprise LTSC 2024 را به زبان غیر انگلیسی نصب کنیم؟\n\n::: details برای اطلاعات بیشتر اینجا کلیک کنید\n\n ‏ISOهای نسخه IoT LTSC فقط به زبان انگلیسی موجود هستند. با این حال، می‌توانید مراحل زیر را برای نصب تمیز آن دنبال کنید.\n\n> - ISO غیر IoT LTSC 2024 را به زبان مورد نظر از بخش زیر دانلود کنید\n> - برای نصب نسخه IoT از ابتدا، از [روش PID.txt](./clean_install_windows#windows-11-on-unsupported-hardware) پیروی کنید.\n>\n> - به طور جایگزین، می‌توانید Non-IoT LTSC را به زبان دیگری نصب کرده و بعداً کلید IoT LTSC 2024 را در صفحه فعال‌سازی در تنظیمات ویندوز برای تغییر نسخه نصب کنید: \n> \n> ```shell\n> KBN8V-HFGQ4-MGXVD-347P6-PDQGT\n> ```\n\n:::\n\n## چگونه ویندوز ۱۰ IoT Enterprise LTSC 2021 را به زبان غیر انگلیسی نصب کنیم؟\n\n::: details برای اطلاعات بیشتر اینجا کلیک کنید\n\n> ISO های نسخه IoT LTSC فقط به زبان انگلیسی موجود هستند.\n> \n> هنگام نصب ویندوز ۱۱ IoT Enterprise LTSC 2024 از ابتدا، یک مزیت، الزامات سخت‌افزاری آرام آن است. با این حال، انجام همین کار با نسخه IoT 2021 مزیت چندانی ندارد، زیرا می‌توانید بعداً به راحتی نسخه ویندوز را تغییر دهید.  \n> \n> علاوه بر این، روش PID.txt برای نصب نسخه مجازی از ابتدا فقط برای ویندوز ۱۱ 24H2 و نسخه‌های بعدی قابل اجرا است. در حالی که روش‌های دیگری برای نصب از ابتدا وجود دارد، آنها پیچیده‌تر هستند و نتایج، تلاش را توجیه نمی‌کنند.\n\n### توصیه ما به شرح زیر است:  \n>\n> - ISO غیر IoT LTSC 2021 را به زبان مورد نظر از بخش زیر دانلود کنید.\n> - ویندوز را با استفاده از این [**راهنمای نصب تمیز**](./clean_install_windows) نصب کنید.\n> - پس از نصب ویندوز، برای تغییر نسخه، کلید IoT LTSC 2021 را در صفحه فعال‌سازی در تنظیمات ویندوز وارد کنید:  \n> \n> ```shell\n> QPM6N-7J2WJ-P88HH-P3YRH-YY74H\n> ```\n\n:::\n\n<hr/><br/> \n\n# لینک‌های دانلود\n\n:::tabs\n\n== Windows 11 LTSC 2024\n\n**ویندوز 11 IoT Enterprise LTSC 2024**\n\n> - بیلد 26100.1742\n> \n> - این ISOها شامل نسخه‌های زیر هستند:\n> - Windows 11 Enterprise LTSC\n> - Windows 11 IoT Enterprise LTSC\n> - Windows 11 IoT Enterprise Subscription LTSC\n\n| زبان | معماری | لینک |\n|:---|:---|:---|\n| انگلیسی | x64 | [X23-81951_26100.1742.240906-0331.ge_release_svc_refresh_CLIENT_ENTERPRISES_OEM_x64FRE_en-us.iso](https://oemsoc.download.prss.microsoft.com/dbazure/X23-81951_26100.1742.240906-0331.ge_release_svc_refresh_CLIENT_ENTERPRISES_OEM_x64FRE_en-us.iso_640de540-87c4-427f-be87-e6d53a3a60b4?t=2c3b664b-b119-4088-9db1-ccff72c6d22e&P1=102816950270&P2=601&P3=2&P4=OC448onxqdmdUsBUApAiE8pj1FZ%2bEPTU3%2bC6Quq29MVwMyyDUtR%2fsbiy7RdVoZOHaZRndvzeOOnIwJZ2x3%2bmP6YK9cjJSP41Lvs0SulF4SVyL5C0DdDmiWqh2QW%2bcDPj2Xp%2bMrI9NOeElSBS5kkOWP8Eiyf2VkkQFM3g5vIk3HJVvu5sWo6pFKpFv4lML%2bHaIiTSuwbPMs5xwEQTfScuTKfigNlUZPdHRMp1B3uKLgIA3r0IbRpZgHYMXEwXQ%2fSLMdDNQthpqQvz1PThVkx7ObD55CXgt0GNSAWRfjdURWb8ywWk1gT7ozAgpP%2fKNm56U5nh33WZSuMZIuO1SBM2vw%3d%3d) <br /> = <br /> [en-us_windows_11_iot_enterprise_ltsc_2024_x64_dvd_f6b14814.iso](https://drive.massgrave.dev/en-us_windows_11_iot_enterprise_ltsc_2024_x64_dvd_f6b14814.iso) <br /> <br /> هر دو فایل یکسان هستند، فقط نام متفاوت است. <br /> لینک اول از پورتال رسمی OEM است و فایل دوم از MVS گرفته شده و در massgrave میزبانی می‌شود. <br /> توجه: با فایل لینک اول باید پسوند را به .iso تغییر نام دهید |\n\n<hr/><br/>\n\n**ویندوز ۱۱ Enterprise LTSC 2024**\n\n> - بیلد 26100.1742\n\n| زبان | معماری | لینک |\n|:---|:---|:---|\n| عربی | x64 | [ar-sa_windows_11_enterprise_ltsc_2024_x64_dvd_8012f159.iso](https://drive.massgrave.dev/ar-sa_windows_11_enterprise_ltsc_2024_x64_dvd_8012f159.iso) |\n| بلغاری | x64 | [bg-bg_windows_11_enterprise_ltsc_2024_x64_dvd_2778f4e8.iso](https://drive.massgrave.dev/bg-bg_windows_11_enterprise_ltsc_2024_x64_dvd_2778f4e8.iso) |\n| چکی | x64 | [cs-cz_windows_11_enterprise_ltsc_2024_x64_dvd_d4ef05f2.iso](https://drive.massgrave.dev/cs-cz_windows_11_enterprise_ltsc_2024_x64_dvd_d4ef05f2.iso) |\n| دانمارکی | x64 | [da-dk_windows_11_enterprise_ltsc_2024_x64_dvd_c231c267.iso](https://drive.massgrave.dev/da-dk_windows_11_enterprise_ltsc_2024_x64_dvd_c231c267.iso) |\n| آلمانی | x64 | [de-de_windows_11_enterprise_ltsc_2024_x64_dvd_4f136f69.iso](https://drive.massgrave.dev/de-de_windows_11_enterprise_ltsc_2024_x64_dvd_4f136f69.iso) |\n| یونانی | x64 | [el-gr_windows_11_enterprise_ltsc_2024_x64_dvd_54eaabb2.iso](https://drive.massgrave.dev/el-gr_windows_11_enterprise_ltsc_2024_x64_dvd_54eaabb2.iso) |\n| انگلیسی (بریتانیا) | x64 | [en-gb_windows_11_enterprise_ltsc_2024_x64_dvd_e2137661.iso](https://drive.massgrave.dev/en-gb_windows_11_enterprise_ltsc_2024_x64_dvd_e2137661.iso) |\n| انگلیسی | x64 | [en-us_windows_11_enterprise_ltsc_2024_x64_dvd_965cfb00.iso](https://drive.massgrave.dev/en-us_windows_11_enterprise_ltsc_2024_x64_dvd_965cfb00.iso) |\n| اسپانیایی | x64 | [es-es_windows_11_enterprise_ltsc_2024_x64_dvd_77392d61.iso](https://drive.massgrave.dev/es-es_windows_11_enterprise_ltsc_2024_x64_dvd_77392d61.iso) |\n| اسپانیایی (مکزیک) | x64 | [es-mx_windows_11_enterprise_ltsc_2024_x64_dvd_3310c094.iso](https://drive.massgrave.dev/es-mx_windows_11_enterprise_ltsc_2024_x64_dvd_3310c094.iso) |\n| استونیایی | x64 | [et-ee_windows_11_enterprise_ltsc_2024_x64_dvd_2dbd4bfe.iso](https://drive.massgrave.dev/et-ee_windows_11_enterprise_ltsc_2024_x64_dvd_2dbd4bfe.iso) |\n| فنلاندی | x64 | [fi-fi_windows_11_enterprise_ltsc_2024_x64_dvd_998f5df6.iso](https://drive.massgrave.dev/fi-fi_windows_11_enterprise_ltsc_2024_x64_dvd_998f5df6.iso) |\n| فرانسوی (کانادا) | x64 | [fr-ca_windows_11_enterprise_ltsc_2024_x64_dvd_78732953.iso](https://drive.massgrave.dev/fr-ca_windows_11_enterprise_ltsc_2024_x64_dvd_78732953.iso) |\n| فرانسوی | x64 | [fr-fr_windows_11_enterprise_ltsc_2024_x64_dvd_d66e386e.iso](https://drive.massgrave.dev/fr-fr_windows_11_enterprise_ltsc_2024_x64_dvd_d66e386e.iso) |\n| عبری | x64 | [he-il_windows_11_enterprise_ltsc_2024_x64_dvd_fae050ec.iso](https://drive.massgrave.dev/he-il_windows_11_enterprise_ltsc_2024_x64_dvd_fae050ec.iso) |\n| کروات | x64 | [hr-hr_windows_11_enterprise_ltsc_2024_x64_dvd_e3594411.iso](https://drive.massgrave.dev/hr-hr_windows_11_enterprise_ltsc_2024_x64_dvd_e3594411.iso) |\n| مجارستانی | x64 | [hu-hu_windows_11_enterprise_ltsc_2024_x64_dvd_8fea6034.iso](https://drive.massgrave.dev/hu-hu_windows_11_enterprise_ltsc_2024_x64_dvd_8fea6034.iso) |\n| ایتالیایی | x64 | [it-it_windows_11_enterprise_ltsc_2024_x64_dvd_1e8cabb6.iso](https://drive.massgrave.dev/it-it_windows_11_enterprise_ltsc_2024_x64_dvd_1e8cabb6.iso) |\n| ژاپنی | x64 | [ja-jp_windows_11_enterprise_ltsc_2024_x64_dvd_e59ad418.iso](https://drive.massgrave.dev/ja-jp_windows_11_enterprise_ltsc_2024_x64_dvd_e59ad418.iso) |\n| کره‌ای | x64 | [ko-kr_windows_11_enterprise_ltsc_2024_x64_dvd_b6b6eb18.iso](https://drive.massgrave.dev/ko-kr_windows_11_enterprise_ltsc_2024_x64_dvd_b6b6eb18.iso) |\n| لیتوانیایی | x64 | [lt-lt_windows_11_enterprise_ltsc_2024_x64_dvd_145479e9.iso](https://drive.massgrave.dev/lt-lt_windows_11_enterprise_ltsc_2024_x64_dvd_145479e9.iso) |\n| لتونیایی | x64 | [lv-lv_windows_11_enterprise_ltsc_2024_x64_dvd_e0ebc53d.iso](https://drive.massgrave.dev/lv-lv_windows_11_enterprise_ltsc_2024_x64_dvd_e0ebc53d.iso) |\n| نروژی (بوکمال) | x64 | [nb-no_windows_11_enterprise_ltsc_2024_x64_dvd_d41eeb48.iso](https://drive.massgrave.dev/nb-no_windows_11_enterprise_ltsc_2024_x64_dvd_d41eeb48.iso) |\n| هلندی (هلند) | x64 | [nl-nl_windows_11_enterprise_ltsc_2024_x64_dvd_e3063aab.iso](https://drive.massgrave.dev/nl-nl_windows_11_enterprise_ltsc_2024_x64_dvd_e3063aab.iso) |\n| لهستانی | x64 | [pl-pl_windows_11_enterprise_ltsc_2024_x64_dvd_e00807a1.iso](https://drive.massgrave.dev/pl-pl_windows_11_enterprise_ltsc_2024_x64_dvd_e00807a1.iso) |\n| پرتغالی (برزیل) | x64 | [pt-br_windows_11_enterprise_ltsc_2024_x64_dvd_2bb6b75b.iso](https://drive.massgrave.dev/pt-br_windows_11_enterprise_ltsc_2024_x64_dvd_2bb6b75b.iso) |\n| پرتغالی (پرتغال) | x64 | [pt-pt_windows_11_enterprise_ltsc_2024_x64_dvd_2f34bd6b.iso](https://drive.massgrave.dev/pt-pt_windows_11_enterprise_ltsc_2024_x64_dvd_2f34bd6b.iso) |\n| رومانیایی | x64 | [ro-ro_windows_11_enterprise_ltsc_2024_x64_dvd_2eadb4df.iso](https://drive.massgrave.dev/ro-ro_windows_11_enterprise_ltsc_2024_x64_dvd_2eadb4df.iso) |\n| روسی | x64 | [ru-ru_windows_11_enterprise_ltsc_2024_x64_dvd_f9af5773.iso](https://drive.massgrave.dev/ru-ru_windows_11_enterprise_ltsc_2024_x64_dvd_f9af5773.iso) |\n| اسلواکی | x64 | [sk-sk_windows_11_enterprise_ltsc_2024_x64_dvd_03b916e7.iso](https://drive.massgrave.dev/sk-sk_windows_11_enterprise_ltsc_2024_x64_dvd_03b916e7.iso) |\n| اسلوونیایی | x64 | [sl-si_windows_11_enterprise_ltsc_2024_x64_dvd_310b3a76.iso](https://drive.massgrave.dev/sl-si_windows_11_enterprise_ltsc_2024_x64_dvd_310b3a76.iso) |\n| صربی (لاتین) | x64 | [sr-latn-rs_windows_11_enterprise_ltsc_2024_x64_dvd_3dfa5da5.iso](https://drive.massgrave.dev/sr-latn-rs_windows_11_enterprise_ltsc_2024_x64_dvd_3dfa5da5.iso) |\n| سوئدی | x64 | [sv-se_windows_11_enterprise_ltsc_2024_x64_dvd_191cf991.iso](https://drive.massgrave.dev/sv-se_windows_11_enterprise_ltsc_2024_x64_dvd_191cf991.iso) |\n| تایلندی | x64 | [th-th_windows_11_enterprise_ltsc_2024_x64_dvd_47ce2c8a.iso](https://drive.massgrave.dev/th-th_windows_11_enterprise_ltsc_2024_x64_dvd_47ce2c8a.iso) |\n| ترکی | x64 | [tr-tr_windows_11_enterprise_ltsc_2024_x64_dvd_27bdab81.iso](https://drive.massgrave.dev/tr-tr_windows_11_enterprise_ltsc_2024_x64_dvd_27bdab81.iso) |\n| اوکراینی | x64 | [uk-ua_windows_11_enterprise_ltsc_2024_x64_dvd_b3f00872.iso](https://drive.massgrave.dev/uk-ua_windows_11_enterprise_ltsc_2024_x64_dvd_b3f00872.iso) |\n| چینی (ساده‌شده) | x64 | [zh-cn_windows_11_enterprise_ltsc_2024_x64_dvd_cff9cd2d.iso](https://drive.massgrave.dev/zh-cn_windows_11_enterprise_ltsc_2024_x64_dvd_cff9cd2d.iso) |\n| چینی (سنتی) | x64 | [zh-tw_windows_11_enterprise_ltsc_2024_x64_dvd_6287d84d.iso](https://drive.massgrave.dev/zh-tw_windows_11_enterprise_ltsc_2024_x64_dvd_6287d84d.iso) |\n\n== Windows 10 LTSC 2021\n\n**ویندوز ۱۰ IoT Enterprise LTSC ۲۰۲۱**\n\n> - بیلد 19044.1288\n> - این ISOها شامل نسخه‌های زیر هستند: \n> - Windows 10 Enterprise LTSC\n> - Windows 10 IoT Enterprise LTSC\n\n| زبان | معماری | لینک |\n|:---|:---|:---|\n| انگلیسی | x64 | [en-us_windows_10_iot_enterprise_ltsc_2021_x64_dvd_257ad90f.iso](https://drive.massgrave.dev/en-us_windows_10_iot_enterprise_ltsc_2021_x64_dvd_257ad90f.iso) |\n\n<hr/><br/>\n\n**ویندوز ۱۰ Enterprise LTSC 2021**\n\n> - بیلد 19044.1288\n\n| زبان | معماری | لینک |\n|:---|:---|:---|\n| عربی | x64 | [ar-sa_windows_10_enterprise_ltsc_2021_x64_dvd_60bc2a7a.iso](https://drive.massgrave.dev/ar-sa_windows_10_enterprise_ltsc_2021_x64_dvd_60bc2a7a.iso) |\n| عربی | x86 | [ar-sa_windows_10_enterprise_ltsc_2021_x86_dvd_69e2349b.iso](https://drive.massgrave.dev/ar-sa_windows_10_enterprise_ltsc_2021_x86_dvd_69e2349b.iso) |\n| بلغاری | x64 | [bg-bg_windows_10_enterprise_ltsc_2021_x64_dvd_b0887275.iso](https://drive.massgrave.dev/bg-bg_windows_10_enterprise_ltsc_2021_x64_dvd_b0887275.iso) |\n| بلغاری | x86 | [bg-bg_windows_10_enterprise_ltsc_2021_x86_dvd_8beb279f.iso](https://drive.massgrave.dev/bg-bg_windows_10_enterprise_ltsc_2021_x86_dvd_8beb279f.iso) |\n| چکی | x64 | [cs-cz_windows_10_enterprise_ltsc_2021_x64_dvd_d624c653.iso](https://drive.massgrave.dev/cs-cz_windows_10_enterprise_ltsc_2021_x64_dvd_d624c653.iso) |\n| چکی | x86 | [cs-cz_windows_10_enterprise_ltsc_2021_x86_dvd_2afa1afb.iso](https://drive.massgrave.dev/cs-cz_windows_10_enterprise_ltsc_2021_x86_dvd_2afa1afb.iso) |\n| دانمارکی | x64 | [da-dk_windows_10_enterprise_ltsc_2021_x64_dvd_6ec511bb.iso](https://drive.massgrave.dev/da-dk_windows_10_enterprise_ltsc_2021_x64_dvd_6ec511bb.iso) |\n| دانمارکی | x86 | [da-dk_windows_10_enterprise_ltsc_2021_x86_dvd_de761707.iso](https://drive.massgrave.dev/da-dk_windows_10_enterprise_ltsc_2021_x86_dvd_de761707.iso) |\n| آلمانی | x64 | [de-de_windows_10_enterprise_ltsc_2021_x64_dvd_71796d33.iso](https://drive.massgrave.dev/de-de_windows_10_enterprise_ltsc_2021_x64_dvd_71796d33.iso) |\n| آلمانی | x86 | [de-de_windows_10_enterprise_ltsc_2021_x86_dvd_6317aaff.iso](https://drive.massgrave.dev/de-de_windows_10_enterprise_ltsc_2021_x86_dvd_6317aaff.iso) |\n| یونانی | x64 | [el-gr_windows_10_enterprise_ltsc_2021_x64_dvd_c83eab34.iso](https://drive.massgrave.dev/el-gr_windows_10_enterprise_ltsc_2021_x64_dvd_c83eab34.iso) |\n| یونانی | x86 | [el-gr_windows_10_enterprise_ltsc_2021_x86_dvd_c7850ec0.iso](https://drive.massgrave.dev/el-gr_windows_10_enterprise_ltsc_2021_x86_dvd_c7850ec0.iso) |\n| انگلیسی (بریتانیا) | x64 | [en-gb_windows_10_enterprise_ltsc_2021_x64_dvd_7fe51fe8.iso](https://drive.massgrave.dev/en-gb_windows_10_enterprise_ltsc_2021_x64_dvd_7fe51fe8.iso) |\n| انگلیسی (بریتانیا) | x86 | [en-gb_windows_10_enterprise_ltsc_2021_x86_dvd_baa2b09f.iso](https://drive.massgrave.dev/en-gb_windows_10_enterprise_ltsc_2021_x86_dvd_baa2b09f.iso) |\n| انگلیسی | x64 | [en-us_windows_10_enterprise_ltsc_2021_x64_dvd_d289cf96.iso](https://drive.massgrave.dev/en-us_windows_10_enterprise_ltsc_2021_x64_dvd_d289cf96.iso) |\n| انگلیسی | x86 | [en-us_windows_10_enterprise_ltsc_2021_x86_dvd_9f4aa95f.iso](https://drive.massgrave.dev/en-us_windows_10_enterprise_ltsc_2021_x86_dvd_9f4aa95f.iso) |\n| اسپانیایی | x64 | [es-es_windows_10_enterprise_ltsc_2021_x64_dvd_51d721ea.iso](https://drive.massgrave.dev/es-es_windows_10_enterprise_ltsc_2021_x64_dvd_51d721ea.iso) |\n| اسپانیایی | x86 | [es-es_windows_10_enterprise_ltsc_2021_x86_dvd_243c83eb.iso](https://drive.massgrave.dev/es-es_windows_10_enterprise_ltsc_2021_x86_dvd_243c83eb.iso) |\n| اسپانیایی (مکزیک) | x64 | [es-mx_windows_10_enterprise_ltsc_2021_x64_dvd_f6aaf384.iso](https://drive.massgrave.dev/es-mx_windows_10_enterprise_ltsc_2021_x64_dvd_f6aaf384.iso) |\n| اسپانیایی (مکزیک) | x86 | [es-mx_windows_10_enterprise_ltsc_2021_x86_dvd_93a5debe.iso](https://drive.massgrave.dev/es-mx_windows_10_enterprise_ltsc_2021_x86_dvd_93a5debe.iso) |\n| استونیایی | x64 | [et-ee_windows_10_enterprise_ltsc_2021_x64_dvd_012a5c50.iso](https://drive.massgrave.dev/et-ee_windows_10_enterprise_ltsc_2021_x64_dvd_012a5c50.iso) |\n| استونیایی | x86 | [et-ee_windows_10_enterprise_ltsc_2021_x86_dvd_292aa316.iso](https://drive.massgrave.dev/et-ee_windows_10_enterprise_ltsc_2021_x86_dvd_292aa316.iso) |\n| فنلاندی | x64 | [fi-fi_windows_10_enterprise_ltsc_2021_x64_dvd_551582d9.iso](https://drive.massgrave.dev/fi-fi_windows_10_enterprise_ltsc_2021_x64_dvd_551582d9.iso) |\n| فنلاندی | x86 | [fi-fi_windows_10_enterprise_ltsc_2021_x86_dvd_15e0eeb9.iso](https://drive.massgrave.dev/fi-fi_windows_10_enterprise_ltsc_2021_x86_dvd_15e0eeb9.iso) |\n| فرانسوی (کانادا) | x64 | [fr-ca_windows_10_enterprise_ltsc_2021_x64_dvd_2770e649.iso](https://drive.massgrave.dev/fr-ca_windows_10_enterprise_ltsc_2021_x64_dvd_2770e649.iso) |\n| فرانسوی (کانادا) | x86 | [fr-ca_windows_10_enterprise_ltsc_2021_x86_dvd_5237961d.iso](https://drive.massgrave.dev/fr-ca_windows_10_enterprise_ltsc_2021_x86_dvd_5237961d.iso) |\n| فرانسوی | x64 | [fr-fr_windows_10_enterprise_ltsc_2021_x64_dvd_bda01eb0.iso](https://drive.massgrave.dev/fr-fr_windows_10_enterprise_ltsc_2021_x64_dvd_bda01eb0.iso) |\n| فرانسوی | x86 | [fr-fr_windows_10_enterprise_ltsc_2021_x86_dvd_53f189f9.iso](https://drive.massgrave.dev/fr-fr_windows_10_enterprise_ltsc_2021_x86_dvd_53f189f9.iso) |\n| عبری | x64 | [he-il_windows_10_enterprise_ltsc_2021_x64_dvd_3a55ecd6.iso](https://drive.massgrave.dev/he-il_windows_10_enterprise_ltsc_2021_x64_dvd_3a55ecd6.iso) |\n| عبری | x86 | [he-il_windows_10_enterprise_ltsc_2021_x86_dvd_3b560f44.iso](https://drive.massgrave.dev/he-il_windows_10_enterprise_ltsc_2021_x86_dvd_3b560f44.iso) |\n| کروات | x64 | [hr-hr_windows_10_enterprise_ltsc_2021_x64_dvd_f5085b75.iso](https://drive.massgrave.dev/hr-hr_windows_10_enterprise_ltsc_2021_x64_dvd_f5085b75.iso) |\n| کروات | x86 | [hr-hr_windows_10_enterprise_ltsc_2021_x86_dvd_bd52180e.iso](https://drive.massgrave.dev/hr-hr_windows_10_enterprise_ltsc_2021_x86_dvd_bd52180e.iso) |\n| مجارستانی | x64 | [hu-hu_windows_10_enterprise_ltsc_2021_x64_dvd_d541ddb3.iso](https://drive.massgrave.dev/hu-hu_windows_10_enterprise_ltsc_2021_x64_dvd_d541ddb3.iso) |\n| مجارستانی | x86 | [hu-hu_windows_10_enterprise_ltsc_2021_x86_dvd_a8cb11dd.iso](https://drive.massgrave.dev/hu-hu_windows_10_enterprise_ltsc_2021_x86_dvd_a8cb11dd.iso) |\n| ایتالیایی | x64 | [it-it_windows_10_enterprise_ltsc_2021_x64_dvd_0c1aa034.iso](https://drive.massgrave.dev/it-it_windows_10_enterprise_ltsc_2021_x64_dvd_0c1aa034.iso) |\n| ایتالیایی | x86 | [it-it_windows_10_enterprise_ltsc_2021_x86_dvd_46e4f7e1.iso](https://drive.massgrave.dev/it-it_windows_10_enterprise_ltsc_2021_x86_dvd_46e4f7e1.iso) |\n| ژاپنی | x64 | [ja-jp_windows_10_enterprise_ltsc_2021_x64_dvd_ef58c6a1.iso](https://drive.massgrave.dev/ja-jp_windows_10_enterprise_ltsc_2021_x64_dvd_ef58c6a1.iso) |\n| ژاپنی | x86 | [ja-jp_windows_10_enterprise_ltsc_2021_x86_dvd_ac893196.iso](https://drive.massgrave.dev/ja-jp_windows_10_enterprise_ltsc_2021_x86_dvd_ac893196.iso) |\n| کره‌ای | x64 | [ko-kr_windows_10_enterprise_ltsc_2021_x64_dvd_6d26f398.iso](https://drive.massgrave.dev/ko-kr_windows_10_enterprise_ltsc_2021_x64_dvd_6d26f398.iso) |\n| کره‌ای | x86 | [ko-kr_windows_10_enterprise_ltsc_2021_x86_dvd_dff1cb4e.iso](https://drive.massgrave.dev/ko-kr_windows_10_enterprise_ltsc_2021_x86_dvd_dff1cb4e.iso) |\n| لیتوانیایی | x64 | [lt-lt_windows_10_enterprise_ltsc_2021_x64_dvd_9ffbbd5b.iso](https://drive.massgrave.dev/lt-lt_windows_10_enterprise_ltsc_2021_x64_dvd_9ffbbd5b.iso) |\n| لیتوانیایی | x86 | [lt-lt_windows_10_enterprise_ltsc_2021_x86_dvd_fefed947.iso](https://drive.massgrave.dev/lt-lt_windows_10_enterprise_ltsc_2021_x86_dvd_fefed947.iso) |\n| لتونیایی | x64 | [lv-lv_windows_10_enterprise_ltsc_2021_x64_dvd_6c89d2e0.iso](https://drive.massgrave.dev/lv-lv_windows_10_enterprise_ltsc_2021_x64_dvd_6c89d2e0.iso) |\n| لتونیایی | x86 | [lv-lv_windows_10_enterprise_ltsc_2021_x86_dvd_41041cfd.iso](https://drive.massgrave.dev/lv-lv_windows_10_enterprise_ltsc_2021_x86_dvd_41041cfd.iso) |\n| نروژی (بوکمال) | x64 | [nb-no_windows_10_enterprise_ltsc_2021_x64_dvd_c65c51a5.iso](https://drive.massgrave.dev/nb-no_windows_10_enterprise_ltsc_2021_x64_dvd_c65c51a5.iso) |\n| نروژی (بوکمال) | x86 | [nb-no_windows_10_enterprise_ltsc_2021_x86_dvd_6f625462.iso](https://drive.massgrave.dev/nb-no_windows_10_enterprise_ltsc_2021_x86_dvd_6f625462.iso) |\n| هلندی (هلند) | x64 | [nl-nl_windows_10_enterprise_ltsc_2021_x64_dvd_88f53466.iso](https://drive.massgrave.dev/nl-nl_windows_10_enterprise_ltsc_2021_x64_dvd_88f53466.iso) |\n| هلندی (هلند) | x86 | [nl-nl_windows_10_enterprise_ltsc_2021_x86_dvd_231b3321.iso](https://drive.massgrave.dev/nl-nl_windows_10_enterprise_ltsc_2021_x86_dvd_231b3321.iso) |\n| لهستانی | x64 | [pl-pl_windows_10_enterprise_ltsc_2021_x64_dvd_eff40776.iso](https://drive.massgrave.dev/pl-pl_windows_10_enterprise_ltsc_2021_x64_dvd_eff40776.iso) |\n| لهستانی | x86 | [pl-pl_windows_10_enterprise_ltsc_2021_x86_dvd_4b0aed09.iso](https://drive.massgrave.dev/pl-pl_windows_10_enterprise_ltsc_2021_x86_dvd_4b0aed09.iso) |\n| پرتغالی (برزیل) | x64 | [pt-br_windows_10_enterprise_ltsc_2021_x64_dvd_f318268e.iso](https://drive.massgrave.dev/pt-br_windows_10_enterprise_ltsc_2021_x64_dvd_f318268e.iso) |\n| پرتغالی (برزیل) | x86 | [pt-br_windows_10_enterprise_ltsc_2021_x86_dvd_d4aea182.iso](https://drive.massgrave.dev/pt-br_windows_10_enterprise_ltsc_2021_x86_dvd_d4aea182.iso) |\n| پرتغالی (پرتغال) | x64 | [pt-pt_windows_10_enterprise_ltsc_2021_x64_dvd_f2e9b6a0.iso](https://drive.massgrave.dev/pt-pt_windows_10_enterprise_ltsc_2021_x64_dvd_f2e9b6a0.iso) |\n| پرتغالی (پرتغال) | x86 | [pt-pt_windows_10_enterprise_ltsc_2021_x86_dvd_2ed38b71.iso](https://drive.massgrave.dev/pt-pt_windows_10_enterprise_ltsc_2021_x86_dvd_2ed38b71.iso) |\n| رومانیایی | x64 | [ro-ro_windows_10_enterprise_ltsc_2021_x64_dvd_ae2284d6.iso](https://drive.massgrave.dev/ro-ro_windows_10_enterprise_ltsc_2021_x64_dvd_ae2284d6.iso) |\n| رومانیایی | x86 | [ro-ro_windows_10_enterprise_ltsc_2021_x86_dvd_e68b65bc.iso](https://drive.massgrave.dev/ro-ro_windows_10_enterprise_ltsc_2021_x86_dvd_e68b65bc.iso) |\n| روسی | x64 | [ru-ru_windows_10_enterprise_ltsc_2021_x64_dvd_5044a1e7.iso](https://drive.massgrave.dev/ru-ru_windows_10_enterprise_ltsc_2021_x64_dvd_5044a1e7.iso) |\n| روسی | x86 | [ru-ru_windows_10_enterprise_ltsc_2021_x86_dvd_cdf355eb.iso](https://drive.massgrave.dev/ru-ru_windows_10_enterprise_ltsc_2021_x86_dvd_cdf355eb.iso) |\n| اسلواکی | x64 | [sk-sk_windows_10_enterprise_ltsc_2021_x64_dvd_d6c64c5f.iso](https://drive.massgrave.dev/sk-sk_windows_10_enterprise_ltsc_2021_x64_dvd_d6c64c5f.iso) |\n| اسلواکی | x86 | [sk-sk_windows_10_enterprise_ltsc_2021_x86_dvd_10ed79ca.iso](https://drive.massgrave.dev/sk-sk_windows_10_enterprise_ltsc_2021_x86_dvd_10ed79ca.iso) |\n| اسلوونیایی | x64 | [sl-si_windows_10_enterprise_ltsc_2021_x64_dvd_ec090386.iso](https://drive.massgrave.dev/sl-si_windows_10_enterprise_ltsc_2021_x64_dvd_ec090386.iso) |\n| اسلوونیایی | x86 | [sl-si_windows_10_enterprise_ltsc_2021_x86_dvd_5e0e48a8.iso](https://drive.massgrave.dev/sl-si_windows_10_enterprise_ltsc_2021_x86_dvd_5e0e48a8.iso) |\n| صربی (لاتین) | x64 | [sr-latn-rs_windows_10_enterprise_ltsc_2021_x64_dvd_2d2f8815.iso](https://drive.massgrave.dev/sr-latn-rs_windows_10_enterprise_ltsc_2021_x64_dvd_2d2f8815.iso) |\n| صربی (لاتین) | x86 | [sr-latn-rs_windows_10_enterprise_ltsc_2021_x86_dvd_248407e2.iso](https://drive.massgrave.dev/sr-latn-rs_windows_10_enterprise_ltsc_2021_x86_dvd_248407e2.iso) |\n| سوئدی | x64 | [sv-se_windows_10_enterprise_ltsc_2021_x64_dvd_9a28bb6b.iso](https://drive.massgrave.dev/sv-se_windows_10_enterprise_ltsc_2021_x64_dvd_9a28bb6b.iso) |\n| سوئدی | x86 | [sv-se_windows_10_enterprise_ltsc_2021_x86_dvd_9081ef5b.iso](https://drive.massgrave.dev/sv-se_windows_10_enterprise_ltsc_2021_x86_dvd_9081ef5b.iso) |\n| تایلندی | x64 | [th-th_windows_10_enterprise_ltsc_2021_x64_dvd_b7ed34d6.iso](https://drive.massgrave.dev/th-th_windows_10_enterprise_ltsc_2021_x64_dvd_b7ed34d6.iso) |\n| تایلندی | x86 | [th-th_windows_10_enterprise_ltsc_2021_x86_dvd_df412841.iso](https://drive.massgrave.dev/th-th_windows_10_enterprise_ltsc_2021_x86_dvd_df412841.iso) |\n| ترکی | x64 | [tr-tr_windows_10_enterprise_ltsc_2021_x64_dvd_e55b1896.iso](https://drive.massgrave.dev/tr-tr_windows_10_enterprise_ltsc_2021_x64_dvd_e55b1896.iso) |\n| ترکی | x86 | [tr-tr_windows_10_enterprise_ltsc_2021_x86_dvd_36fc55f4.iso](https://drive.massgrave.dev/tr-tr_windows_10_enterprise_ltsc_2021_x86_dvd_36fc55f4.iso) |\n| اوکراینی | x64 | [uk-ua_windows_10_enterprise_ltsc_2021_x64_dvd_816da3c3.iso](https://drive.massgrave.dev/uk-ua_windows_10_enterprise_ltsc_2021_x64_dvd_816da3c3.iso) |\n| اوکراینی | x86 | [uk-ua_windows_10_enterprise_ltsc_2021_x86_dvd_aa372ed6.iso](https://drive.massgrave.dev/uk-ua_windows_10_enterprise_ltsc_2021_x86_dvd_aa372ed6.iso) |\n| چینی (ساده‌شده) | x64 | [zh-cn_windows_10_enterprise_ltsc_2021_x64_dvd_033b7312.iso](https://drive.massgrave.dev/zh-cn_windows_10_enterprise_ltsc_2021_x64_dvd_033b7312.iso) |\n| چینی (ساده‌شده) | x86 | [zh-cn_windows_10_enterprise_ltsc_2021_x86_dvd_30600d9c.iso](https://drive.massgrave.dev/zh-cn_windows_10_enterprise_ltsc_2021_x86_dvd_30600d9c.iso) |\n| چینی (سنتی) | x64 | [zh-tw_windows_10_enterprise_ltsc_2021_x64_dvd_80dba877.iso](https://drive.massgrave.dev/zh-tw_windows_10_enterprise_ltsc_2021_x64_dvd_80dba877.iso) |\n| چینی (سنتی) | x86 | [zh-tw_windows_10_enterprise_ltsc_2021_x86_dvd_03be1c20.iso](https://drive.massgrave.dev/zh-tw_windows_10_enterprise_ltsc_2021_x86_dvd_03be1c20.iso) |\n\n== Windows 10 LTSC 2019\n\n**ویندوز ۱۰ IoT Enterprise LTSC 2019**\n\n> - بیلد 17763.107\n> \n> این نسخه واقعاً نسخه IotEnterpriseS را ندارد، فقط EnterpriseS با کلید OEM (عمومی، فعال نشده) نصب شده است.\n\n| زبان | معماری | لینک |\n|:---|:---|:---|\n| انگلیسی | x64 | [en_windows_10_iot_enterprise_ltsc_2019_x64_dvd_a1aa819f.iso](https://drive.massgrave.dev/en_windows_10_iot_enterprise_ltsc_2019_x64_dvd_a1aa819f.iso) |\n| انگلیسی | x86 | [en_windows_10_iot_enterprise_ltsc_2019_x86_dvd_2255a237.iso](https://drive.massgrave.dev/en_windows_10_iot_enterprise_ltsc_2019_x86_dvd_2255a237.iso) |\n\n<hr/><br/> \n\n**ویندوز ۱۰ Enterprise LTSC 2019**\n\n> - بیلد 17763.316\n\n| زبان | معماری | لینک |\n|:---|:---|:---|\n| عربی | x64 | [ar_windows_10_enterprise_ltsc_2019_x64_dvd_a1f42c56.iso](https://drive.massgrave.dev/ar_windows_10_enterprise_ltsc_2019_x64_dvd_a1f42c56.iso) |\n| عربی | x86 | [ar_windows_10_enterprise_ltsc_2019_x86_dvd_8faea15c.iso](https://drive.massgrave.dev/ar_windows_10_enterprise_ltsc_2019_x86_dvd_8faea15c.iso) |\n| بلغاری | x64 | [bg_windows_10_enterprise_ltsc_2019_x64_dvd_65c7e0c3.iso](https://drive.massgrave.dev/bg_windows_10_enterprise_ltsc_2019_x64_dvd_65c7e0c3.iso) |\n| بلغاری | x86 | [bg_windows_10_enterprise_ltsc_2019_x86_dvd_73c555b7.iso](https://drive.massgrave.dev/bg_windows_10_enterprise_ltsc_2019_x86_dvd_73c555b7.iso) |\n| چینی (ساده‌شده) | x64 | [cn_windows_10_enterprise_ltsc_2019_x64_dvd_9c09ff24.iso](https://drive.massgrave.dev/cn_windows_10_enterprise_ltsc_2019_x64_dvd_9c09ff24.iso) |\n| چینی (ساده‌شده) | x86 | [cn_windows_10_enterprise_ltsc_2019_x86_dvd_1814dbab.iso](https://drive.massgrave.dev/cn_windows_10_enterprise_ltsc_2019_x86_dvd_1814dbab.iso) |\n| چکی | x64 | [cs_windows_10_enterprise_ltsc_2019_x64_dvd_b15b47cf.iso](https://drive.massgrave.dev/cs_windows_10_enterprise_ltsc_2019_x64_dvd_b15b47cf.iso) |\n| چکی | x86 | [cs_windows_10_enterprise_ltsc_2019_x86_dvd_b3b102f8.iso](https://drive.massgrave.dev/cs_windows_10_enterprise_ltsc_2019_x86_dvd_b3b102f8.iso) |\n| چینی (سنتی) | x64 | [ct_windows_10_enterprise_ltsc_2019_x64_dvd_c301154f.iso](https://drive.massgrave.dev/ct_windows_10_enterprise_ltsc_2019_x64_dvd_c301154f.iso) |\n| چینی (سنتی) | x86 | [ct_windows_10_enterprise_ltsc_2019_x86_dvd_9096dec8.iso](https://drive.massgrave.dev/ct_windows_10_enterprise_ltsc_2019_x86_dvd_9096dec8.iso) |\n| دانمارکی | x64 | [da_windows_10_enterprise_ltsc_2019_x64_dvd_772bd569.iso](https://drive.massgrave.dev/da_windows_10_enterprise_ltsc_2019_x64_dvd_772bd569.iso) |\n| دانمارکی | x86 | [da_windows_10_enterprise_ltsc_2019_x86_dvd_54ea3b7c.iso](https://drive.massgrave.dev/da_windows_10_enterprise_ltsc_2019_x86_dvd_54ea3b7c.iso) |\n| آلمانی | x64 | [de_windows_10_enterprise_ltsc_2019_x64_dvd_34efbe54.iso](https://drive.massgrave.dev/de_windows_10_enterprise_ltsc_2019_x64_dvd_34efbe54.iso) |\n| آلمانی | x86 | [de_windows_10_enterprise_ltsc_2019_x86_dvd_b003dc50.iso](https://drive.massgrave.dev/de_windows_10_enterprise_ltsc_2019_x86_dvd_b003dc50.iso) |\n| یونانی | x64 | [el_windows_10_enterprise_ltsc_2019_x64_dvd_25ea66b9.iso](https://drive.massgrave.dev/el_windows_10_enterprise_ltsc_2019_x64_dvd_25ea66b9.iso) |\n| یونانی | x86 | [el_windows_10_enterprise_ltsc_2019_x86_dvd_d8746855.iso](https://drive.massgrave.dev/el_windows_10_enterprise_ltsc_2019_x86_dvd_d8746855.iso) |\n| انگلیسی (بریتانیا) | x64 | [en-uk_windows_10_enterprise_ltsc_2019_x64_dvd_723dfbc1.iso](https://drive.massgrave.dev/en-uk_windows_10_enterprise_ltsc_2019_x64_dvd_723dfbc1.iso) |\n| انگلیسی (بریتانیا) | x86 | [en-uk_windows_10_enterprise_ltsc_2019_x86_dvd_ae3afea1.iso](https://drive.massgrave.dev/en-uk_windows_10_enterprise_ltsc_2019_x86_dvd_ae3afea1.iso) |\n| انگلیسی | x64 | [en_windows_10_enterprise_ltsc_2019_x64_dvd_5795bb03.iso](https://drive.massgrave.dev/en_windows_10_enterprise_ltsc_2019_x64_dvd_5795bb03.iso) |\n| انگلیسی | x86 | [en_windows_10_enterprise_ltsc_2019_x86_dvd_892869c9.iso](https://drive.massgrave.dev/en_windows_10_enterprise_ltsc_2019_x86_dvd_892869c9.iso) |\n| اسپانیایی (مکزیک) | x64 | [es-mx_windows_10_enterprise_ltsc_2019_x64_dvd_686cdfbe.iso](https://drive.massgrave.dev/es-mx_windows_10_enterprise_ltsc_2019_x64_dvd_686cdfbe.iso) |\n| اسپانیایی (مکزیک) | x86 | [es-mx_windows_10_enterprise_ltsc_2019_x86_dvd_a706f07d.iso](https://drive.massgrave.dev/es-mx_windows_10_enterprise_ltsc_2019_x86_dvd_a706f07d.iso) |\n| اسپانیایی | x64 | [es_windows_10_enterprise_ltsc_2019_x64_dvd_44a5b896.iso](https://drive.massgrave.dev/es_windows_10_enterprise_ltsc_2019_x64_dvd_44a5b896.iso) |\n| اسپانیایی | x86 | [es_windows_10_enterprise_ltsc_2019_x86_dvd_84f6ff1d.iso](https://drive.massgrave.dev/es_windows_10_enterprise_ltsc_2019_x86_dvd_84f6ff1d.iso) |\n| استونیایی | x64 | [et_windows_10_enterprise_ltsc_2019_x64_dvd_509e0d4c.iso](https://drive.massgrave.dev/et_windows_10_enterprise_ltsc_2019_x64_dvd_509e0d4c.iso) |\n| استونیایی | x86 | [et_windows_10_enterprise_ltsc_2019_x86_dvd_56908605.iso](https://drive.massgrave.dev/et_windows_10_enterprise_ltsc_2019_x86_dvd_56908605.iso) |\n| فنلاندی | x64 | [fi_windows_10_enterprise_ltsc_2019_x64_dvd_8e6aaf2c.iso](https://drive.massgrave.dev/fi_windows_10_enterprise_ltsc_2019_x64_dvd_8e6aaf2c.iso) |\n| فنلاندی | x86 | [fi_windows_10_enterprise_ltsc_2019_x86_dvd_8016a99b.iso](https://drive.massgrave.dev/fi_windows_10_enterprise_ltsc_2019_x86_dvd_8016a99b.iso) |\n| فرانسوی (کانادا) | x64 | [fr-ca_windows_10_enterprise_ltsc_2019_x64_dvd_a77dd2c4.iso](https://drive.massgrave.dev/fr-ca_windows_10_enterprise_ltsc_2019_x64_dvd_a77dd2c4.iso) |\n| فرانسوی (کانادا) | x86 | [fr-ca_windows_10_enterprise_ltsc_2019_x86_dvd_21e007a6.iso](https://drive.massgrave.dev/fr-ca_windows_10_enterprise_ltsc_2019_x86_dvd_21e007a6.iso) |\n| فرانسوی | x64 | [fr_windows_10_enterprise_ltsc_2019_x64_dvd_d64b363d.iso](https://drive.massgrave.dev/fr_windows_10_enterprise_ltsc_2019_x64_dvd_d64b363d.iso) |\n| فرانسوی | x86 | [fr_windows_10_enterprise_ltsc_2019_x86_dvd_6718a277.iso](https://drive.massgrave.dev/fr_windows_10_enterprise_ltsc_2019_x86_dvd_6718a277.iso) |\n| عبری | x64 | [he_windows_10_enterprise_ltsc_2019_x64_dvd_a5032f00.iso](https://drive.massgrave.dev/he_windows_10_enterprise_ltsc_2019_x64_dvd_a5032f00.iso) |\n| عبری | x86 | [he_windows_10_enterprise_ltsc_2019_x86_dvd_e35105b4.iso](https://drive.massgrave.dev/he_windows_10_enterprise_ltsc_2019_x86_dvd_e35105b4.iso) |\n| کروات | x64 | [hr_windows_10_enterprise_ltsc_2019_x64_dvd_0154a57e.iso](https://drive.massgrave.dev/hr_windows_10_enterprise_ltsc_2019_x64_dvd_0154a57e.iso) |\n| کروات | x86 | [hr_windows_10_enterprise_ltsc_2019_x86_dvd_978cda23.iso](https://drive.massgrave.dev/hr_windows_10_enterprise_ltsc_2019_x86_dvd_978cda23.iso) |\n| مجارستانی | x64 | [hu_windows_10_enterprise_ltsc_2019_x64_dvd_7afb1447.iso](https://drive.massgrave.dev/hu_windows_10_enterprise_ltsc_2019_x64_dvd_7afb1447.iso) |\n| مجارستانی | x86 | [hu_windows_10_enterprise_ltsc_2019_x86_dvd_c59bde73.iso](https://drive.massgrave.dev/hu_windows_10_enterprise_ltsc_2019_x86_dvd_c59bde73.iso) |\n| ایتالیایی | x64 | [it_windows_10_enterprise_ltsc_2019_x64_dvd_e8629a2f.iso](https://drive.massgrave.dev/it_windows_10_enterprise_ltsc_2019_x64_dvd_e8629a2f.iso) |\n| ایتالیایی | x86 | [it_windows_10_enterprise_ltsc_2019_x86_dvd_0908d54b.iso](https://drive.massgrave.dev/it_windows_10_enterprise_ltsc_2019_x86_dvd_0908d54b.iso) |\n| ژاپنی | x64 | [ja_windows_10_enterprise_ltsc_2019_x64_dvd_c67b830b.iso](https://drive.massgrave.dev/ja_windows_10_enterprise_ltsc_2019_x64_dvd_c67b830b.iso) |\n| ژاپنی | x86 | [ja_windows_10_enterprise_ltsc_2019_x86_dvd_72e8b031.iso](https://drive.massgrave.dev/ja_windows_10_enterprise_ltsc_2019_x86_dvd_72e8b031.iso) |\n| کره‌ای | x64 | [ko_windows_10_enterprise_ltsc_2019_x64_dvd_67887e3e.iso](https://drive.massgrave.dev/ko_windows_10_enterprise_ltsc_2019_x64_dvd_67887e3e.iso) |\n| کره‌ای | x86 | [ko_windows_10_enterprise_ltsc_2019_x86_dvd_4df783b1.iso](https://drive.massgrave.dev/ko_windows_10_enterprise_ltsc_2019_x86_dvd_4df783b1.iso) |\n| لیتوانیایی | x64 | [lt_windows_10_enterprise_ltsc_2019_x64_dvd_5f505ee8.iso](https://drive.massgrave.dev/lt_windows_10_enterprise_ltsc_2019_x64_dvd_5f505ee8.iso) |\n| لیتوانیایی | x86 | [lt_windows_10_enterprise_ltsc_2019_x86_dvd_d3df66d2.iso](https://drive.massgrave.dev/lt_windows_10_enterprise_ltsc_2019_x86_dvd_d3df66d2.iso) |\n| لتونیایی | x64 | [lv_windows_10_enterprise_ltsc_2019_x64_dvd_410d73cd.iso](https://drive.massgrave.dev/lv_windows_10_enterprise_ltsc_2019_x64_dvd_410d73cd.iso) |\n| لتونیایی | x86 | [lv_windows_10_enterprise_ltsc_2019_x86_dvd_c4ab014e.iso](https://drive.massgrave.dev/lv_windows_10_enterprise_ltsc_2019_x86_dvd_c4ab014e.iso) |\n| نروژی (بوکمال) | x64 | [nb_windows_10_enterprise_ltsc_2019_x64_dvd_512b1b80.iso](https://drive.massgrave.dev/nb_windows_10_enterprise_ltsc_2019_x64_dvd_512b1b80.iso) |\n| نروژی (بوکمال) | x86 | [nb_windows_10_enterprise_ltsc_2019_x86_dvd_4411d908.iso](https://drive.massgrave.dev/nb_windows_10_enterprise_ltsc_2019_x86_dvd_4411d908.iso) |\n| هلندی | x64 | [nl_windows_10_enterprise_ltsc_2019_x64_dvd_6b4c874e.iso](https://drive.massgrave.dev/nl_windows_10_enterprise_ltsc_2019_x64_dvd_6b4c874e.iso) |\n| هلندی | x86 | [nl_windows_10_enterprise_ltsc_2019_x86_dvd_7de5cbe9.iso](https://drive.massgrave.dev/nl_windows_10_enterprise_ltsc_2019_x86_dvd_7de5cbe9.iso) |\n| لهستانی | x64 | [pl_windows_10_enterprise_ltsc_2019_x64_dvd_e896167a.iso](https://drive.massgrave.dev/pl_windows_10_enterprise_ltsc_2019_x64_dvd_e896167a.iso) |\n| لهستانی | x86 | [pl_windows_10_enterprise_ltsc_2019_x86_dvd_83c5bbde.iso](https://drive.massgrave.dev/pl_windows_10_enterprise_ltsc_2019_x86_dvd_83c5bbde.iso) |\n| پرتغالی (پرتغال) | x64 | [pp_windows_10_enterprise_ltsc_2019_x64_dvd_c8d2470d.iso](https://drive.massgrave.dev/pp_windows_10_enterprise_ltsc_2019_x64_dvd_c8d2470d.iso) |\n| پرتغالی (پرتغال) | x86 | [pp_windows_10_enterprise_ltsc_2019_x86_dvd_206310fd.iso](https://drive.massgrave.dev/pp_windows_10_enterprise_ltsc_2019_x86_dvd_206310fd.iso) |\n| پرتغالی (برزیل) | x64 | [pt_windows_10_enterprise_ltsc_2019_x64_dvd_d43dcbad.iso](https://drive.massgrave.dev/pt_windows_10_enterprise_ltsc_2019_x64_dvd_d43dcbad.iso) |\n| پرتغالی (برزیل) | x86 | [pt_windows_10_enterprise_ltsc_2019_x86_dvd_208df283.iso](https://drive.massgrave.dev/pt_windows_10_enterprise_ltsc_2019_x86_dvd_208df283.iso) |\n| رومانیایی | x64 | [ro_windows_10_enterprise_ltsc_2019_x64_dvd_47b6116b.iso](https://drive.massgrave.dev/ro_windows_10_enterprise_ltsc_2019_x64_dvd_47b6116b.iso) |\n| رومانیایی | x86 | [ro_windows_10_enterprise_ltsc_2019_x86_dvd_d1a09b2f.iso](https://drive.massgrave.dev/ro_windows_10_enterprise_ltsc_2019_x86_dvd_d1a09b2f.iso) |\n| روسی | x64 | [ru_windows_10_enterprise_ltsc_2019_x64_dvd_78e7853a.iso](https://drive.massgrave.dev/ru_windows_10_enterprise_ltsc_2019_x64_dvd_78e7853a.iso) |\n| روسی | x86 | [ru_windows_10_enterprise_ltsc_2019_x86_dvd_196b5dad.iso](https://drive.massgrave.dev/ru_windows_10_enterprise_ltsc_2019_x86_dvd_196b5dad.iso) |\n| اسلواکی | x64 | [sk_windows_10_enterprise_ltsc_2019_x64_dvd_47437358.iso](https://drive.massgrave.dev/sk_windows_10_enterprise_ltsc_2019_x64_dvd_47437358.iso) |\n| اسلواکی | x86 | [sk_windows_10_enterprise_ltsc_2019_x86_dvd_dede1f66.iso](https://drive.massgrave.dev/sk_windows_10_enterprise_ltsc_2019_x86_dvd_dede1f66.iso) |\n| اسلوونیایی | x64 | [sl_windows_10_enterprise_ltsc_2019_x64_dvd_05f349aa.iso](https://drive.massgrave.dev/sl_windows_10_enterprise_ltsc_2019_x64_dvd_05f349aa.iso) |\n| اسلوونیایی | x86 | [sl_windows_10_enterprise_ltsc_2019_x86_dvd_3b3b7261.iso](https://drive.massgrave.dev/sl_windows_10_enterprise_ltsc_2019_x86_dvd_3b3b7261.iso) |\n| صربی (لاتین) | x64 | [sr_windows_10_enterprise_ltsc_2019_x64_dvd_8b47ec8a.iso](https://drive.massgrave.dev/sr_windows_10_enterprise_ltsc_2019_x64_dvd_8b47ec8a.iso) |\n| صربی (لاتین) | x86 | [sr_windows_10_enterprise_ltsc_2019_x86_dvd_973a9911.iso](https://drive.massgrave.dev/sr_windows_10_enterprise_ltsc_2019_x86_dvd_973a9911.iso) |\n| سوئدی | x64 | [sv_windows_10_enterprise_ltsc_2019_x64_dvd_4b25e231.iso](https://drive.massgrave.dev/sv_windows_10_enterprise_ltsc_2019_x64_dvd_4b25e231.iso) |\n| سوئدی | x86 | [sv_windows_10_enterprise_ltsc_2019_x86_dvd_5618a7ff.iso](https://drive.massgrave.dev/sv_windows_10_enterprise_ltsc_2019_x86_dvd_5618a7ff.iso) |\n| تایلندی | x64 | [th_windows_10_enterprise_ltsc_2019_x64_dvd_ae87916a.iso](https://drive.massgrave.dev/th_windows_10_enterprise_ltsc_2019_x64_dvd_ae87916a.iso) |\n| تایلندی | x86 | [th_windows_10_enterprise_ltsc_2019_x86_dvd_5e37c638.iso](https://drive.massgrave.dev/th_windows_10_enterprise_ltsc_2019_x86_dvd_5e37c638.iso) |\n| ترکی | x64 | [tr_windows_10_enterprise_ltsc_2019_x64_dvd_f2b90518.iso](https://drive.massgrave.dev/tr_windows_10_enterprise_ltsc_2019_x64_dvd_f2b90518.iso) |\n| ترکی | x86 | [tr_windows_10_enterprise_ltsc_2019_x86_dvd_1d5513a0.iso](https://drive.massgrave.dev/tr_windows_10_enterprise_ltsc_2019_x86_dvd_1d5513a0.iso) |\n| اوکراینی | x64 | [uk_windows_10_enterprise_ltsc_2019_x64_dvd_d40a905a.iso](https://drive.massgrave.dev/uk_windows_10_enterprise_ltsc_2019_x64_dvd_d40a905a.iso) |\n| اوکراینی | x86 | [uk_windows_10_enterprise_ltsc_2019_x86_dvd_e3b4eb4d.iso](https://drive.massgrave.dev/uk_windows_10_enterprise_ltsc_2019_x86_dvd_e3b4eb4d.iso) |\n\n== Windows 10 LTSB 2016\n\n**ویندوز ۱۰ Enterprise LTSB 2016**\n\n> - بیلد 14393\n\n| زبان | معماری | لینک |\n|:---|:---|:---|\n| عربی | x64 | [ar_windows_10_enterprise_2016_ltsb_x64_dvd_9059481.iso](https://drive.massgrave.dev/ar_windows_10_enterprise_2016_ltsb_x64_dvd_9059481.iso) |\n| عربی | x86 | [ar_windows_10_enterprise_2016_ltsb_x86_dvd_9060006.iso](https://drive.massgrave.dev/ar_windows_10_enterprise_2016_ltsb_x86_dvd_9060006.iso) |\n| بلغاری | x64 | [bg_windows_10_enterprise_2016_ltsb_x64_dvd_9060109.iso](https://drive.massgrave.dev/bg_windows_10_enterprise_2016_ltsb_x64_dvd_9060109.iso) |\n| بلغاری | x86 | [bg_windows_10_enterprise_2016_ltsb_x86_dvd_9060079.iso](https://drive.massgrave.dev/bg_windows_10_enterprise_2016_ltsb_x86_dvd_9060079.iso) |\n| چینی (ساده‌شده) | x64 | [cn_windows_10_enterprise_2016_ltsb_x64_dvd_9060409.iso](https://drive.massgrave.dev/cn_windows_10_enterprise_2016_ltsb_x64_dvd_9060409.iso) |\n| چینی (ساده‌شده) | x86 | [cn_windows_10_enterprise_2016_ltsb_x86_dvd_9057089.iso](https://drive.massgrave.dev/cn_windows_10_enterprise_2016_ltsb_x86_dvd_9057089.iso) |\n| چکی | x64 | [cs_windows_10_enterprise_2016_ltsb_x64_dvd_9058277.iso](https://drive.massgrave.dev/cs_windows_10_enterprise_2016_ltsb_x64_dvd_9058277.iso) |\n| چکی | x86 | [cs_windows_10_enterprise_2016_ltsb_x86_dvd_9058253.iso](https://drive.massgrave.dev/cs_windows_10_enterprise_2016_ltsb_x86_dvd_9058253.iso) |\n| چینی (سنتی) | x64 | [ct_windows_10_enterprise_2016_ltsb_x64_dvd_9057374.iso](https://drive.massgrave.dev/ct_windows_10_enterprise_2016_ltsb_x64_dvd_9057374.iso) |\n| چینی (سنتی) | x86 | [ct_windows_10_enterprise_2016_ltsb_x86_dvd_9057437.iso](https://drive.massgrave.dev/ct_windows_10_enterprise_2016_ltsb_x86_dvd_9057437.iso) |\n| دانمارکی | x64 | [da_windows_10_enterprise_2016_ltsb_x64_dvd_9058601.iso](https://drive.massgrave.dev/da_windows_10_enterprise_2016_ltsb_x64_dvd_9058601.iso) |\n| دانمارکی | x86 | [da_windows_10_enterprise_2016_ltsb_x86_dvd_9058895.iso](https://drive.massgrave.dev/da_windows_10_enterprise_2016_ltsb_x86_dvd_9058895.iso) |\n| آلمانی | x64 | [de_windows_10_enterprise_2016_ltsb_x64_dvd_9058605.iso](https://drive.massgrave.dev/de_windows_10_enterprise_2016_ltsb_x64_dvd_9058605.iso) |\n| آلمانی | x86 | [de_windows_10_enterprise_2016_ltsb_x86_dvd_9058899.iso](https://drive.massgrave.dev/de_windows_10_enterprise_2016_ltsb_x86_dvd_9058899.iso) |\n| یونانی | x64 | [el_windows_10_enterprise_2016_ltsb_x64_dvd_9059317.iso](https://drive.massgrave.dev/el_windows_10_enterprise_2016_ltsb_x64_dvd_9059317.iso) |\n| یونانی | x86 | [el_windows_10_enterprise_2016_ltsb_x86_dvd_9059530.iso](https://drive.massgrave.dev/el_windows_10_enterprise_2016_ltsb_x86_dvd_9059530.iso) |\n| انگلیسی (بریتانیا) | x64 | [en-gb_windows_10_enterprise_2016_ltsb_x64_dvd_9060114.iso](https://drive.massgrave.dev/en-gb_windows_10_enterprise_2016_ltsb_x64_dvd_9060114.iso) |\n| انگلیسی (بریتانیا) | x86 | [en-gb_windows_10_enterprise_2016_ltsb_x86_dvd_9060085.iso](https://drive.massgrave.dev/en-gb_windows_10_enterprise_2016_ltsb_x86_dvd_9060085.iso) |\n| انگلیسی | x64 | [en_windows_10_enterprise_2016_ltsb_x64_dvd_9059483.iso](https://drive.massgrave.dev/en_windows_10_enterprise_2016_ltsb_x64_dvd_9059483.iso) |\n| انگلیسی | x86 | [en_windows_10_enterprise_2016_ltsb_x86_dvd_9060010.iso](https://drive.massgrave.dev/en_windows_10_enterprise_2016_ltsb_x86_dvd_9060010.iso) |\n| اسپانیایی (مکزیک) | x64 | [es-mx_windows_10_enterprise_2016_ltsb_x64_dvd_9060115.iso](https://drive.massgrave.dev/es-mx_windows_10_enterprise_2016_ltsb_x64_dvd_9060115.iso) |\n| اسپانیایی (مکزیک) | x86 | [es-mx_windows_10_enterprise_2016_ltsb_x86_dvd_9060090.iso](https://drive.massgrave.dev/es-mx_windows_10_enterprise_2016_ltsb_x86_dvd_9060090.iso) |\n| اسپانیایی | x64 | [es_windows_10_enterprise_2016_ltsb_x64_dvd_9059485.iso](https://drive.massgrave.dev/es_windows_10_enterprise_2016_ltsb_x64_dvd_9059485.iso) |\n| اسپانیایی | x86 | [es_windows_10_enterprise_2016_ltsb_x86_dvd_9060020.iso](https://drive.massgrave.dev/es_windows_10_enterprise_2016_ltsb_x86_dvd_9060020.iso) |\n| استونیایی | x64 | [et_windows_10_enterprise_2016_ltsb_x64_dvd_9060433.iso](https://drive.massgrave.dev/et_windows_10_enterprise_2016_ltsb_x64_dvd_9060433.iso) |\n| استونیایی | x86 | [et_windows_10_enterprise_2016_ltsb_x86_dvd_9057091.iso](https://drive.massgrave.dev/et_windows_10_enterprise_2016_ltsb_x86_dvd_9057091.iso) |\n| فنلاندی | x64 | [fi_windows_10_enterprise_2016_ltsb_x64_dvd_9057376.iso](https://drive.massgrave.dev/fi_windows_10_enterprise_2016_ltsb_x64_dvd_9057376.iso) |\n| فنلاندی | x86 | [fi_windows_10_enterprise_2016_ltsb_x86_dvd_9057439.iso](https://drive.massgrave.dev/fi_windows_10_enterprise_2016_ltsb_x86_dvd_9057439.iso) |\n| فرانسوی (کانادا) | x64 | [fr-ca_windows_10_enterprise_2016_ltsb_x64_dvd_9058278.iso](https://drive.massgrave.dev/fr-ca_windows_10_enterprise_2016_ltsb_x64_dvd_9058278.iso) |\n| فرانسوی (کانادا) | x86 | [fr-ca_windows_10_enterprise_2016_ltsb_x86_dvd_9058259.iso](https://drive.massgrave.dev/fr-ca_windows_10_enterprise_2016_ltsb_x86_dvd_9058259.iso) |\n| فرانسوی | x64 | [fr_windows_10_enterprise_2016_ltsb_x64_dvd_9057871.iso](https://drive.massgrave.dev/fr_windows_10_enterprise_2016_ltsb_x64_dvd_9057871.iso) |\n| فرانسوی | x86 | [fr_windows_10_enterprise_2016_ltsb_x86_dvd_9058127.iso](https://drive.massgrave.dev/fr_windows_10_enterprise_2016_ltsb_x86_dvd_9058127.iso) |\n| عبری | x64 | [he_windows_10_enterprise_2016_ltsb_x64_dvd_9059484.iso](https://drive.massgrave.dev/he_windows_10_enterprise_2016_ltsb_x64_dvd_9059484.iso) |\n| عبری | x86 | [he_windows_10_enterprise_2016_ltsb_x86_dvd_9060012.iso](https://drive.massgrave.dev/he_windows_10_enterprise_2016_ltsb_x86_dvd_9060012.iso) |\n| کروات | x64 | [hr_windows_10_enterprise_2016_ltsb_x64_dvd_9057884.iso](https://drive.massgrave.dev/hr_windows_10_enterprise_2016_ltsb_x64_dvd_9057884.iso) |\n| کروات | x86 | [hr_windows_10_enterprise_2016_ltsb_x86_dvd_9058120.iso](https://drive.massgrave.dev/hr_windows_10_enterprise_2016_ltsb_x86_dvd_9058120.iso) |\n| مجارستانی | x64 | [hu_windows_10_enterprise_2016_ltsb_x64_dvd_9060111.iso](https://drive.massgrave.dev/hu_windows_10_enterprise_2016_ltsb_x64_dvd_9060111.iso) |\n| مجارستانی | x86 | [hu_windows_10_enterprise_2016_ltsb_x86_dvd_9060087.iso](https://drive.massgrave.dev/hu_windows_10_enterprise_2016_ltsb_x86_dvd_9060087.iso) |\n| ایتالیایی | x64 | [it_windows_10_enterprise_2016_ltsb_x64_dvd_9060446.iso](https://drive.massgrave.dev/it_windows_10_enterprise_2016_ltsb_x64_dvd_9060446.iso) |\n| ایتالیایی | x86 | [it_windows_10_enterprise_2016_ltsb_x86_dvd_9057094.iso](https://drive.massgrave.dev/it_windows_10_enterprise_2016_ltsb_x86_dvd_9057094.iso) |\n| ژاپنی | x64 | [ja_windows_10_enterprise_2016_ltsb_x64_dvd_9057377.iso](https://drive.massgrave.dev/ja_windows_10_enterprise_2016_ltsb_x64_dvd_9057377.iso) |\n| ژاپنی | x86 | [ja_windows_10_enterprise_2016_ltsb_x86_dvd_9057438.iso](https://drive.massgrave.dev/ja_windows_10_enterprise_2016_ltsb_x86_dvd_9057438.iso) |\n| کره‌ای | x64 | [ko_windows_10_enterprise_2016_ltsb_x64_dvd_9057889.iso](https://drive.massgrave.dev/ko_windows_10_enterprise_2016_ltsb_x64_dvd_9057889.iso) |\n| کره‌ای | x86 | [ko_windows_10_enterprise_2016_ltsb_x86_dvd_9058162.iso](https://drive.massgrave.dev/ko_windows_10_enterprise_2016_ltsb_x86_dvd_9058162.iso) |\n| لیتوانیایی | x64 | [lt_windows_10_enterprise_2016_ltsb_x64_dvd_9058606.iso](https://drive.massgrave.dev/lt_windows_10_enterprise_2016_ltsb_x64_dvd_9058606.iso) |\n| لیتوانیایی | x86 | [lt_windows_10_enterprise_2016_ltsb_x86_dvd_9058906.iso](https://drive.massgrave.dev/lt_windows_10_enterprise_2016_ltsb_x86_dvd_9058906.iso) |\n| لتونیایی | x64 | [lv_windows_10_enterprise_2016_ltsb_x64_dvd_9058289.iso](https://drive.massgrave.dev/lv_windows_10_enterprise_2016_ltsb_x64_dvd_9058289.iso) |\n| لتونیایی | x86 | [lv_windows_10_enterprise_2016_ltsb_x86_dvd_9058263.iso](https://drive.massgrave.dev/lv_windows_10_enterprise_2016_ltsb_x86_dvd_9058263.iso) |\n| نروژی (بوکمال) | x64 | [nb_windows_10_enterprise_2016_ltsb_x64_dvd_9059319.iso](https://drive.massgrave.dev/nb_windows_10_enterprise_2016_ltsb_x64_dvd_9059319.iso) |\n| نروژی (بوکمال) | x86 | [nb_windows_10_enterprise_2016_ltsb_x86_dvd_9059535.iso](https://drive.massgrave.dev/nb_windows_10_enterprise_2016_ltsb_x86_dvd_9059535.iso) |\n| هلندی | x64 | [nl_windows_10_enterprise_2016_ltsb_x64_dvd_9059312.iso](https://drive.massgrave.dev/nl_windows_10_enterprise_2016_ltsb_x64_dvd_9059312.iso) |\n| هلندی | x86 | [nl_windows_10_enterprise_2016_ltsb_x86_dvd_9059526.iso](https://drive.massgrave.dev/nl_windows_10_enterprise_2016_ltsb_x86_dvd_9059526.iso) |\n| لهستانی | x64 | [pl_windows_10_enterprise_2016_ltsb_x64_dvd_9059490.iso](https://drive.massgrave.dev/pl_windows_10_enterprise_2016_ltsb_x64_dvd_9059490.iso) |\n| لهستانی | x86 | [pl_windows_10_enterprise_2016_ltsb_x86_dvd_9060015.iso](https://drive.massgrave.dev/pl_windows_10_enterprise_2016_ltsb_x86_dvd_9060015.iso) |\n| پرتغالی (پرتغال) | x64 | [pp_windows_10_enterprise_2016_ltsb_x64_dvd_9060465.iso](https://drive.massgrave.dev/pp_windows_10_enterprise_2016_ltsb_x64_dvd_9060465.iso) |\n| پرتغالی (پرتغال) | x86 | [pp_windows_10_enterprise_2016_ltsb_x86_dvd_9057097.iso](https://drive.massgrave.dev/pp_windows_10_enterprise_2016_ltsb_x86_dvd_9057097.iso) |\n| پرتغالی (برزیل) | x64 | [pt_windows_10_enterprise_2016_ltsb_x64_dvd_9060113.iso](https://drive.massgrave.dev/pt_windows_10_enterprise_2016_ltsb_x64_dvd_9060113.iso) |\n| پرتغالی (برزیل) | x86 | [pt_windows_10_enterprise_2016_ltsb_x86_dvd_9060088.iso](https://drive.massgrave.dev/pt_windows_10_enterprise_2016_ltsb_x86_dvd_9060088.iso) |\n| رومانیایی | x64 | [ro_windows_10_enterprise_2016_ltsb_x64_dvd_9057388.iso](https://drive.massgrave.dev/ro_windows_10_enterprise_2016_ltsb_x64_dvd_9057388.iso) |\n| رومانیایی | x86 | [ro_windows_10_enterprise_2016_ltsb_x86_dvd_9057443.iso](https://drive.massgrave.dev/ro_windows_10_enterprise_2016_ltsb_x86_dvd_9057443.iso) |\n| روسی | x64 | [ru_windows_10_enterprise_2016_ltsb_x64_dvd_9057886.iso](https://drive.massgrave.dev/ru_windows_10_enterprise_2016_ltsb_x64_dvd_9057886.iso) |\n| روسی | x86 | [ru_windows_10_enterprise_2016_ltsb_x86_dvd_9058173.iso](https://drive.massgrave.dev/ru_windows_10_enterprise_2016_ltsb_x86_dvd_9058173.iso) |\n| اسلواکی | x64 | [sk_windows_10_enterprise_2016_ltsb_x64_dvd_9058612.iso](https://drive.massgrave.dev/sk_windows_10_enterprise_2016_ltsb_x64_dvd_9058612.iso) |\n| اسلواکی | x86 | [sk_windows_10_enterprise_2016_ltsb_x86_dvd_9058908.iso](https://drive.massgrave.dev/sk_windows_10_enterprise_2016_ltsb_x86_dvd_9058908.iso) |\n| اسلوونیایی | x64 | [sl_windows_10_enterprise_2016_ltsb_x64_dvd_9059321.iso](https://drive.massgrave.dev/sl_windows_10_enterprise_2016_ltsb_x64_dvd_9059321.iso) |\n| اسلوونیایی | x86 | [sl_windows_10_enterprise_2016_ltsb_x86_dvd_9059531.iso](https://drive.massgrave.dev/sl_windows_10_enterprise_2016_ltsb_x86_dvd_9059531.iso) |\n| صربی (لاتین) | x64 | [sr-latn_windows_10_enterprise_2016_ltsb_x64_dvd_9058293.iso](https://drive.massgrave.dev/sr-latn_windows_10_enterprise_2016_ltsb_x64_dvd_9058293.iso) |\n| صربی (لاتین) | x86 | [sr-latn_windows_10_enterprise_2016_ltsb_x86_dvd_9058276.iso](https://drive.massgrave.dev/sr-latn_windows_10_enterprise_2016_ltsb_x86_dvd_9058276.iso) |\n| سوئدی | x64 | [sv_windows_10_enterprise_2016_ltsb_x64_dvd_9060456.iso](https://drive.massgrave.dev/sv_windows_10_enterprise_2016_ltsb_x64_dvd_9060456.iso) |\n| سوئدی | x86 | [sv_windows_10_enterprise_2016_ltsb_x86_dvd_9057114.iso](https://drive.massgrave.dev/sv_windows_10_enterprise_2016_ltsb_x86_dvd_9057114.iso) |\n| تایلندی | x64 | [th_windows_10_enterprise_2016_ltsb_x64_dvd_9057403.iso](https://drive.massgrave.dev/th_windows_10_enterprise_2016_ltsb_x64_dvd_9057403.iso) |\n| تایلندی | x86 | [th_windows_10_enterprise_2016_ltsb_x86_dvd_9057441.iso](https://drive.massgrave.dev/th_windows_10_enterprise_2016_ltsb_x86_dvd_9057441.iso) |\n| ترکی | x64 | [tr_windows_10_enterprise_2016_ltsb_x64_dvd_9057891.iso](https://drive.massgrave.dev/tr_windows_10_enterprise_2016_ltsb_x64_dvd_9057891.iso) |\n| ترکی | x86 | [tr_windows_10_enterprise_2016_ltsb_x86_dvd_9058186.iso](https://drive.massgrave.dev/tr_windows_10_enterprise_2016_ltsb_x86_dvd_9058186.iso) |\n| اوکراینی | x64 | [uk_windows_10_enterprise_2016_ltsb_x64_dvd_9058295.iso](https://drive.massgrave.dev/uk_windows_10_enterprise_2016_ltsb_x64_dvd_9058295.iso) |\n| اوکراینی | x86 | [uk_windows_10_enterprise_2016_ltsb_x86_dvd_9058286.iso](https://drive.massgrave.dev/uk_windows_10_enterprise_2016_ltsb_x86_dvd_9058286.iso) |\n\n== Windows 10 LTSB 2015\n\n**ویندوز ۱۰ Enterprise LTSB 2015**\n\n> - بیلد 10240\n\n| زبان | معماری | لینک |\n|:---|:---|:---|\n| عربی | x64 | [ar_windows_10_enterprise_2015_ltsb_x64_dvd_6848420.iso](https://drive.massgrave.dev/ar_windows_10_enterprise_2015_ltsb_x64_dvd_6848420.iso) |\n| عربی | x86 | [ar_windows_10_enterprise_2015_ltsb_x86_dvd_6848421.iso](https://drive.massgrave.dev/ar_windows_10_enterprise_2015_ltsb_x86_dvd_6848421.iso) |\n| بلغاری | x64 | [bg_windows_10_enterprise_2015_ltsb_x64_dvd_6848422.iso](https://drive.massgrave.dev/bg_windows_10_enterprise_2015_ltsb_x64_dvd_6848422.iso) |\n| بلغاری | x86 | [bg_windows_10_enterprise_2015_ltsb_x86_dvd_6848424.iso](https://drive.massgrave.dev/bg_windows_10_enterprise_2015_ltsb_x86_dvd_6848424.iso) |\n| چینی (ساده‌شده) | x64 | [cn_windows_10_enterprise_2015_ltsb_x64_dvd_6848425.iso](https://drive.massgrave.dev/cn_windows_10_enterprise_2015_ltsb_x64_dvd_6848425.iso) |\n| چینی (ساده‌شده) | x86 | [cn_windows_10_enterprise_2015_ltsb_x86_dvd_6848426.iso](https://drive.massgrave.dev/cn_windows_10_enterprise_2015_ltsb_x86_dvd_6848426.iso) |\n| چکی | x64 | [cs_windows_10_enterprise_2015_ltsb_x64_dvd_6848435.iso](https://drive.massgrave.dev/cs_windows_10_enterprise_2015_ltsb_x64_dvd_6848435.iso) |\n| چکی | x86 | [cs_windows_10_enterprise_2015_ltsb_x86_dvd_6848437.iso](https://drive.massgrave.dev/cs_windows_10_enterprise_2015_ltsb_x86_dvd_6848437.iso) |\n| دانمارکی | x64 | [da_windows_10_enterprise_2015_ltsb_x64_dvd_6848440.iso](https://drive.massgrave.dev/da_windows_10_enterprise_2015_ltsb_x64_dvd_6848440.iso) |\n| دانمارکی | x86 | [da_windows_10_enterprise_2015_ltsb_x86_dvd_6848441.iso](https://drive.massgrave.dev/da_windows_10_enterprise_2015_ltsb_x86_dvd_6848441.iso) |\n| آلمانی | x64 | [de_windows_10_enterprise_2015_ltsb_x64_dvd_6848473.iso](https://drive.massgrave.dev/de_windows_10_enterprise_2015_ltsb_x64_dvd_6848473.iso) |\n| آلمانی | x86 | [de_windows_10_enterprise_2015_ltsb_x86_dvd_6848474.iso](https://drive.massgrave.dev/de_windows_10_enterprise_2015_ltsb_x86_dvd_6848474.iso) |\n| یونانی | x64 | [el_windows_10_enterprise_2015_ltsb_x64_dvd_6848475.iso](https://drive.massgrave.dev/el_windows_10_enterprise_2015_ltsb_x64_dvd_6848475.iso) |\n| یونانی | x86 | [el_windows_10_enterprise_2015_ltsb_x86_dvd_6848476.iso](https://drive.massgrave.dev/el_windows_10_enterprise_2015_ltsb_x86_dvd_6848476.iso) |\n| انگلیسی (بریتانیا) | x64 | [en-gb_windows_10_enterprise_2015_ltsb_x64_dvd_6848456.iso](https://drive.massgrave.dev/en-gb_windows_10_enterprise_2015_ltsb_x64_dvd_6848456.iso) |\n| انگلیسی (بریتانیا) | x86 | [en-gb_windows_10_enterprise_2015_ltsb_x86_dvd_6848457.iso](https://drive.massgrave.dev/en-gb_windows_10_enterprise_2015_ltsb_x86_dvd_6848457.iso) |\n| انگلیسی | x64 | [en_windows_10_enterprise_2015_ltsb_x64_dvd_6848446.iso](https://drive.massgrave.dev/en_windows_10_enterprise_2015_ltsb_x64_dvd_6848446.iso) |\n| انگلیسی | x86 | [en_windows_10_enterprise_2015_ltsb_x86_dvd_6848454.iso](https://drive.massgrave.dev/en_windows_10_enterprise_2015_ltsb_x86_dvd_6848454.iso) |\n| اسپانیایی (مکزیک) | x64 | [es-mx_windows_10_enterprise_2015_ltsb_x64_dvd_6850897.iso](https://drive.massgrave.dev/es-mx_windows_10_enterprise_2015_ltsb_x64_dvd_6850897.iso) |\n| اسپانیایی (مکزیک) | x86 | [es-mx_windows_10_enterprise_2015_ltsb_x86_dvd_6850898.iso](https://drive.massgrave.dev/es-mx_windows_10_enterprise_2015_ltsb_x86_dvd_6850898.iso) |\n| اسپانیایی | x64 | [es_windows_10_enterprise_2015_ltsb_x64_dvd_6850876.iso](https://drive.massgrave.dev/es_windows_10_enterprise_2015_ltsb_x64_dvd_6850876.iso) |\n| اسپانیایی | x86 | [es_windows_10_enterprise_2015_ltsb_x86_dvd_6850896.iso](https://drive.massgrave.dev/es_windows_10_enterprise_2015_ltsb_x86_dvd_6850896.iso) |\n| استونیایی | x64 | [et_windows_10_enterprise_2015_ltsb_x64_dvd_6848458.iso](https://drive.massgrave.dev/et_windows_10_enterprise_2015_ltsb_x64_dvd_6848458.iso) |\n| استونیایی | x86 | [et_windows_10_enterprise_2015_ltsb_x86_dvd_6848460.iso](https://drive.massgrave.dev/et_windows_10_enterprise_2015_ltsb_x86_dvd_6848460.iso) |\n| فنلاندی | x64 | [fi_windows_10_enterprise_2015_ltsb_x64_dvd_6848462.iso](https://drive.massgrave.dev/fi_windows_10_enterprise_2015_ltsb_x64_dvd_6848462.iso) |\n| فنلاندی | x86 | [fi_windows_10_enterprise_2015_ltsb_x86_dvd_6848464.iso](https://drive.massgrave.dev/fi_windows_10_enterprise_2015_ltsb_x86_dvd_6848464.iso) |\n| فرانسوی (کانادا) | x64 | [fr-ca_windows_10_enterprise_2015_ltsb_x64_dvd_6848470.iso](https://drive.massgrave.dev/fr-ca_windows_10_enterprise_2015_ltsb_x64_dvd_6848470.iso) |\n| فرانسوی (کانادا) | x86 | [fr-ca_windows_10_enterprise_2015_ltsb_x86_dvd_6848472.iso](https://drive.massgrave.dev/fr-ca_windows_10_enterprise_2015_ltsb_x86_dvd_6848472.iso) |\n| فرانسوی | x64 | [fr_windows_10_enterprise_2015_ltsb_x64_dvd_6848466.iso](https://drive.massgrave.dev/fr_windows_10_enterprise_2015_ltsb_x64_dvd_6848466.iso) |\n| فرانسوی | x86 | [fr_windows_10_enterprise_2015_ltsb_x86_dvd_6848468.iso](https://drive.massgrave.dev/fr_windows_10_enterprise_2015_ltsb_x86_dvd_6848468.iso) |\n| عبری | x64 | [he_windows_10_enterprise_2015_ltsb_x64_dvd_6848477.iso](https://drive.massgrave.dev/he_windows_10_enterprise_2015_ltsb_x64_dvd_6848477.iso) |\n| عبری | x86 | [he_windows_10_enterprise_2015_ltsb_x86_dvd_6850760.iso](https://drive.massgrave.dev/he_windows_10_enterprise_2015_ltsb_x86_dvd_6850760.iso) |\n| چینی (هنگ کنگ) | x64 | [hk_windows_10_enterprise_2015_ltsb_x64_dvd_6848427.iso](https://drive.massgrave.dev/hk_windows_10_enterprise_2015_ltsb_x64_dvd_6848427.iso) |\n| چینی (هنگ کنگ) | x86 | [hk_windows_10_enterprise_2015_ltsb_x86_dvd_6848428.iso](https://drive.massgrave.dev/hk_windows_10_enterprise_2015_ltsb_x86_dvd_6848428.iso) |\n| کروات | x64 | [hr_windows_10_enterprise_2015_ltsb_x64_dvd_6848433.iso](https://drive.massgrave.dev/hr_windows_10_enterprise_2015_ltsb_x64_dvd_6848433.iso) |\n| کروات | x86 | [hr_windows_10_enterprise_2015_ltsb_x86_dvd_6848434.iso](https://drive.massgrave.dev/hr_windows_10_enterprise_2015_ltsb_x86_dvd_6848434.iso) |\n| مجارستانی | x64 | [hu_windows_10_enterprise_2015_ltsb_x64_dvd_6850770.iso](https://drive.massgrave.dev/hu_windows_10_enterprise_2015_ltsb_x64_dvd_6850770.iso) |\n| مجارستانی | x86 | [hu_windows_10_enterprise_2015_ltsb_x86_dvd_6850771.iso](https://drive.massgrave.dev/hu_windows_10_enterprise_2015_ltsb_x86_dvd_6850771.iso) |\n| ایتالیایی | x64 | [it_windows_10_enterprise_2015_ltsb_x64_dvd_6850772.iso](https://drive.massgrave.dev/it_windows_10_enterprise_2015_ltsb_x64_dvd_6850772.iso) |\n| ایتالیایی | x86 | [it_windows_10_enterprise_2015_ltsb_x86_dvd_6850773.iso](https://drive.massgrave.dev/it_windows_10_enterprise_2015_ltsb_x86_dvd_6850773.iso) |\n| ژاپنی | x64 | [ja_windows_10_enterprise_2015_ltsb_x64_dvd_6850774.iso](https://drive.massgrave.dev/ja_windows_10_enterprise_2015_ltsb_x64_dvd_6850774.iso) |\n| ژاپنی | x86 | [ja_windows_10_enterprise_2015_ltsb_x86_dvd_6850775.iso](https://drive.massgrave.dev/ja_windows_10_enterprise_2015_ltsb_x86_dvd_6850775.iso) |\n| کره‌ای | x64 | [ko_windows_10_enterprise_2015_ltsb_x64_dvd_6850776.iso](https://drive.massgrave.dev/ko_windows_10_enterprise_2015_ltsb_x64_dvd_6850776.iso) |\n| کره‌ای | x86 | [ko_windows_10_enterprise_2015_ltsb_x86_dvd_6850777.iso](https://drive.massgrave.dev/ko_windows_10_enterprise_2015_ltsb_x86_dvd_6850777.iso) |\n| لیتوانیایی | x64 | [lt_windows_10_enterprise_2015_ltsb_x64_dvd_6850780.iso](https://drive.massgrave.dev/lt_windows_10_enterprise_2015_ltsb_x64_dvd_6850780.iso) |\n| لیتوانیایی | x86 | [lt_windows_10_enterprise_2015_ltsb_x86_dvd_6850781.iso](https://drive.massgrave.dev/lt_windows_10_enterprise_2015_ltsb_x86_dvd_6850781.iso) |\n| لتونیایی | x64 | [lv_windows_10_enterprise_2015_ltsb_x64_dvd_6850778.iso](https://drive.massgrave.dev/lv_windows_10_enterprise_2015_ltsb_x64_dvd_6850778.iso) |\n| لتونیایی | x86 | [lv_windows_10_enterprise_2015_ltsb_x86_dvd_6850779.iso](https://drive.massgrave.dev/lv_windows_10_enterprise_2015_ltsb_x86_dvd_6850779.iso) |\n| نروژی (بوکمال) | x64 | [nb_windows_10_enterprise_2015_ltsb_x64_dvd_6850782.iso](https://drive.massgrave.dev/nb_windows_10_enterprise_2015_ltsb_x64_dvd_6850782.iso) |\n| نروژی (بوکمال) | x86 | [nb_windows_10_enterprise_2015_ltsb_x86_dvd_6850783.iso](https://drive.massgrave.dev/nb_windows_10_enterprise_2015_ltsb_x86_dvd_6850783.iso) |\n| هلندی | x64 | [nl_windows_10_enterprise_2015_ltsb_x64_dvd_6848442.iso](https://drive.massgrave.dev/nl_windows_10_enterprise_2015_ltsb_x64_dvd_6848442.iso) |\n| هلندی | x86 | [nl_windows_10_enterprise_2015_ltsb_x86_dvd_6848443.iso](https://drive.massgrave.dev/nl_windows_10_enterprise_2015_ltsb_x86_dvd_6848443.iso) |\n| لهستانی | x64 | [pl_windows_10_enterprise_2015_ltsb_x64_dvd_6850784.iso](https://drive.massgrave.dev/pl_windows_10_enterprise_2015_ltsb_x64_dvd_6850784.iso) |\n| لهستانی | x86 | [pl_windows_10_enterprise_2015_ltsb_x86_dvd_6850785.iso](https://drive.massgrave.dev/pl_windows_10_enterprise_2015_ltsb_x86_dvd_6850785.iso) |\n| پرتغالی (پرتغال) | x64 | [pp_windows_10_enterprise_2015_ltsb_x64_dvd_6850808.iso](https://drive.massgrave.dev/pp_windows_10_enterprise_2015_ltsb_x64_dvd_6850808.iso) |\n| پرتغالی (پرتغال) | x86 | [pp_windows_10_enterprise_2015_ltsb_x86_dvd_6850818.iso](https://drive.massgrave.dev/pp_windows_10_enterprise_2015_ltsb_x86_dvd_6850818.iso) |\n| پرتغالی (برزیل) | x64 | [pt_windows_10_enterprise_2015_ltsb_x64_dvd_6850787.iso](https://drive.massgrave.dev/pt_windows_10_enterprise_2015_ltsb_x64_dvd_6850787.iso) |\n| پرتغالی (برزیل) | x86 | [pt_windows_10_enterprise_2015_ltsb_x86_dvd_6850798.iso](https://drive.massgrave.dev/pt_windows_10_enterprise_2015_ltsb_x86_dvd_6850798.iso) |\n| رومانیایی | x64 | [ro_windows_10_enterprise_2015_ltsb_x64_dvd_6850828.iso](https://drive.massgrave.dev/ro_windows_10_enterprise_2015_ltsb_x64_dvd_6850828.iso) |\n| رومانیایی | x86 | [ro_windows_10_enterprise_2015_ltsb_x86_dvd_6850837.iso](https://drive.massgrave.dev/ro_windows_10_enterprise_2015_ltsb_x86_dvd_6850837.iso) |\n| روسی | x64 | [ru_windows_10_enterprise_2015_ltsb_x64_dvd_6850847.iso](https://drive.massgrave.dev/ru_windows_10_enterprise_2015_ltsb_x64_dvd_6850847.iso) |\n| روسی | x86 | [ru_windows_10_enterprise_2015_ltsb_x86_dvd_6850858.iso](https://drive.massgrave.dev/ru_windows_10_enterprise_2015_ltsb_x86_dvd_6850858.iso) |\n| اسلواکی | x64 | [sk_windows_10_enterprise_2015_ltsb_x64_dvd_6850870.iso](https://drive.massgrave.dev/sk_windows_10_enterprise_2015_ltsb_x64_dvd_6850870.iso) |\n| اسلواکی | x86 | [sk_windows_10_enterprise_2015_ltsb_x86_dvd_6850871.iso](https://drive.massgrave.dev/sk_windows_10_enterprise_2015_ltsb_x86_dvd_6850871.iso) |\n| اسلوونیایی | x64 | [sl_windows_10_enterprise_2015_ltsb_x64_dvd_6850872.iso](https://drive.massgrave.dev/sl_windows_10_enterprise_2015_ltsb_x64_dvd_6850872.iso) |\n| اسلوونیایی | x86 | [sl_windows_10_enterprise_2015_ltsb_x86_dvd_6850873.iso](https://drive.massgrave.dev/sl_windows_10_enterprise_2015_ltsb_x86_dvd_6850873.iso) |\n| صربی (لاتین) | x64 | [sr-latn_windows_10_enterprise_2015_ltsb_x64_dvd_6850868.iso](https://drive.massgrave.dev/sr-latn_windows_10_enterprise_2015_ltsb_x64_dvd_6850868.iso) |\n| صربی (لاتین) | x86 | [sr-latn_windows_10_enterprise_2015_ltsb_x86_dvd_6850869.iso](https://drive.massgrave.dev/sr-latn_windows_10_enterprise_2015_ltsb_x86_dvd_6850869.iso) |\n| سوئدی | x64 | [sv_windows_10_enterprise_2015_ltsb_x64_dvd_6850899.iso](https://drive.massgrave.dev/sv_windows_10_enterprise_2015_ltsb_x64_dvd_6850899.iso) |\n| سوئدی | x86 | [sv_windows_10_enterprise_2015_ltsb_x86_dvd_6850900.iso](https://drive.massgrave.dev/sv_windows_10_enterprise_2015_ltsb_x86_dvd_6850900.iso) |\n| تایلندی | x64 | [th_windows_10_enterprise_2015_ltsb_x64_dvd_6850901.iso](https://drive.massgrave.dev/th_windows_10_enterprise_2015_ltsb_x64_dvd_6850901.iso) |\n| تایلندی | x86 | [th_windows_10_enterprise_2015_ltsb_x86_dvd_6850902.iso](https://drive.massgrave.dev/th_windows_10_enterprise_2015_ltsb_x86_dvd_6850902.iso) |\n| ترکی | x64 | [tr_windows_10_enterprise_2015_ltsb_x64_dvd_6850904.iso](https://drive.massgrave.dev/tr_windows_10_enterprise_2015_ltsb_x64_dvd_6850904.iso) |\n| ترکی | x86 | [tr_windows_10_enterprise_2015_ltsb_x86_dvd_6850915.iso](https://drive.massgrave.dev/tr_windows_10_enterprise_2015_ltsb_x86_dvd_6850915.iso) |\n| چینی (سنتی) | x64 | [tw_windows_10_enterprise_2015_ltsb_x64_dvd_6848430.iso](https://drive.massgrave.dev/tw_windows_10_enterprise_2015_ltsb_x64_dvd_6848430.iso) |\n| چینی (سنتی) | x86 | [tw_windows_10_enterprise_2015_ltsb_x86_dvd_6848432.iso](https://drive.massgrave.dev/tw_windows_10_enterprise_2015_ltsb_x86_dvd_6848432.iso) |\n| اوکراینی | x64 | [uk_windows_10_enterprise_2015_ltsb_x64_dvd_6850925.iso](https://drive.massgrave.dev/uk_windows_10_enterprise_2015_ltsb_x64_dvd_6850925.iso) |\n| اوکراینی | x86 | [uk_windows_10_enterprise_2015_ltsb_x86_dvd_6850935.iso](https://drive.massgrave.dev/uk_windows_10_enterprise_2015_ltsb_x86_dvd_6850935.iso) |\n\n== Windows LTSC ARM64\n\n**ویندوز ۱۰/۱۱ IoT Enterprise LTSC ARM64**\n\nلینک‌های [**ویندوز ARM**](./windows_arm_links) را بررسی کنید.\n\n:::\n\n[1]: https://www.microsoft.com/en-us/evalcenter\n[2]: https://learn.microsoft.com/en-us/lifecycle/products/windows-11-home-and-pro\n[3]: https://learn.microsoft.com/en-us/lifecycle/products/windows-11-enterprise-and-education\n[4]: https://learn.microsoft.com/en-us/lifecycle/products/windows-11-enterprise-ltsc-2024\n[5]: https://learn.microsoft.com/en-us/lifecycle/products/windows-11-iot-enterprise-ltsc-2024\n[6]: https://www.elevenforum.com/t/enable-or-disable-background-apps-in-windows-11.923/\n[7]: https://gist.github.com/ave9858/a2153957afb053f7d0e7ffdd6c3dcb89\n[8]: https://apps.microsoft.com/detail/9nblggh4nns1\n[9]: https://github.com/stdin82/htfx/releases/tag/v0.0.24\n[genuine]: https://nirevil.github.io/windows-activation/fa/wa/genuine-installation-media#%D8%AA%D8%A7%D9%94%DB%8C%DB%8C%D8%AF-%D8%A7%D8%B5%D8%A7%D9%84%D8%AA-%D9%81%D8%A7%DB%8C%D9%84%E2%80%8C%D9%87%D8%A7\n"
  },
  {
    "path": "docs/fa/wa/windows_xp_links.md",
    "content": "---\nlayout: doc\noutline: deep\nlang: fa-IR\ndir: rtl\ntitle: 'دانلود ویندور XP'\ndescription: 'تمام لینک‌های دانلود فقط به فایل‌های اصلی منتهی می‌شوند'\ndate: 2023-04-19\neditLink: true\n---\n\n# دانلود ویندور XP\n\n::: info تمام لینک‌های دانلود فقط به `فایل‌های اصلی` منتهی می‌شوند.\n\n- [**سوالات متداول**](./genuine-installation-media#سوالات-متداول)\n\n- [**چگونه اصالت این فایل‌ها رو تایید کنیم؟**][Genuine]\n\n- برای x86، SP3 و برای x64، SP2 آخرین ISO های منتشر شده موجود هستند. نسخه x64 SP2 فقط به زبان انگلیسی منتشر شد.\n\n- فایل‌های ISO مربوط به x86 VL را می‌توان با کلید زیر فعال کرد:\n \n```shell\nXCYBK-2B3KV-G8T8F-WXJM7-WCTYT\n```\n\n- فایل‌های ISO نسخه x64 VL را می‌توان با کلید زیر فعال کرد:\n\n```shell\nVCFQD-V9FX9-46WVH-K3CD4-4J3JM\n```\n\n:::\n\n<br/> \n\n## لینک های دانلود\n\n:::tabs\n\n== Windows XP SP3 VL (x86)\n\n**ویندوز XP SP3 VL (x86)**\n\n| زبان              | معماری | لینک                                                                                                                                                                                   |\n|:----------------------|:-----|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| عربی                | x86  | [ar_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74065.iso](https://drive.massgrave.dev/ar_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74065.iso)           |\n| چکسلواکی                | x86  | [cs_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73965.iso](https://drive.massgrave.dev/cs_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73965.iso)           |\n| دانمارکی                | x86  | [da_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73968.iso](https://drive.massgrave.dev/da_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73968.iso)           |\n| آلمانی                | x86  | [de_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73985.iso](https://drive.massgrave.dev/de_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73985.iso)           |\n| یونانی                 | x86  | [el_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73988.iso](https://drive.massgrave.dev/el_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73988.iso)           |\n| انگلیسی               | x86  | [en_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73974.iso](https://drive.massgrave.dev/en_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73974.iso)           |\n| اسپانیایی               | x86  | [es_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74009.iso](https://drive.massgrave.dev/es_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74009.iso)           |\n| فنلاندی               | x86  | [fi_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73979.iso](https://drive.massgrave.dev/fi_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73979.iso)           |\n| فرانسوی                | x86  | [fr_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73982.iso](https://drive.massgrave.dev/fr_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73982.iso)           |\n| عبری                | x86  | [he_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74143.iso](https://drive.massgrave.dev/he_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74143.iso)           |\n| مجارستانی            | x86  | [hu_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73991.iso](https://drive.massgrave.dev/hu_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73991.iso)           |\n| ایتالیایی               | x86  | [it_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73994.iso](https://drive.massgrave.dev/it_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73994.iso)           |\n| ژاپنی              | x86  | [ja_windows_xp_professional_with_service_pack_3_x86_dvd_vl_x14-74058.iso](https://drive.massgrave.dev/ja_windows_xp_professional_with_service_pack_3_x86_dvd_vl_x14-74058.iso)         |\n| کره‌ای                | x86  | [ko_windows_xp_professional_k_with_service_pack_3_x86_cd_vl_x14-87427.iso](https://drive.massgrave.dev/ko_windows_xp_professional_k_with_service_pack_3_x86_cd_vl_x14-87427.iso)       |\n| هلندی                 | x86  | [nl_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73971.iso](https://drive.massgrave.dev/nl_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73971.iso)           |\n| نروژی             | x86  | [no_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74000.iso](https://drive.massgrave.dev/no_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74000.iso)           |\n| لهستانی                | x86  | [pl_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74003.iso](https://drive.massgrave.dev/pl_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74003.iso)           |\n| پرتغالی (برزیل)     | x86  | [pt-br_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74137.iso](https://drive.massgrave.dev/pt-br_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74137.iso)     |\n| پرتغالی (پرتقال)   | x86  | [pt-pt_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74006.iso](https://drive.massgrave.dev/pt-pt_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74006.iso)     |\n| روسی               | x86  | [ru_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74146.iso](https://drive.massgrave.dev/ru_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74146.iso)           |\n| سوئدی               | x86  | [sv_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74012.iso](https://drive.massgrave.dev/sv_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74012.iso)           |\n| ترکی               | x86  | [tr_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74085.iso](https://drive.massgrave.dev/tr_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74085.iso)           |\n| چینی (ساده شده)               | x86  | [zh-hans_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74070.iso](https://drive.massgrave.dev/zh-hans_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74070.iso) |\n| چینی-هنگ‌کنگ (SAR) | x86  | [zh-hk_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74075.iso](https://drive.massgrave.dev/zh-hk_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74075.iso)     |\n| چینی (سنتی)   | x86  | [zh-tw_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74140.iso](https://drive.massgrave.dev/zh-tw_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74140.iso)     |\n\n\n== Windows XP SP2 VL (x64)\n\n**ویندوز XP SP2 VL (x64)**\n\n| زبان | معماری | لینک                                                                                                                   |\n|:---------|:-----|:-----------------------------------------------------------------------------------------------------------------------|\n| انگلیسی  | x64  | [en_win_xp_pro_x64_with_sp2_vl_x13-41611.iso](https://drive.massgrave.dev/en_win_xp_pro_x64_with_sp2_vl_x13-41611.iso) |\n\n:::\n\n[genuine]: https://nirevil.github.io/windows-activation/fa/wa/genuine-installation-media#%D8%AA%D8%A7%D9%94%DB%8C%DB%8C%D8%AF-%D8%A7%D8%B5%D8%A7%D9%84%D8%AA-%D9%81%D8%A7%DB%8C%D9%84%E2%80%8C%D9%87%D8%A7\n"
  },
  {
    "path": "docs/index.md",
    "content": "---\n# https://vitepress.dev/reference/default-theme-home-page\nlayout: home\n\nhero:\n  name: \"Instant Windows & Office Activation\"\n  text: \"\"\n  tagline: \"A reliable, open-source activation toolkit for Windows and Office, featuring HWID, KMS, Ohook, and more. Activate in under 40–seconds!\"\n  actions:\n    - theme: brand\n      text: Get Started\n      link: ./wa/\n    - theme: alt\n      text: View on Github\n      link: https://github.com/NiREvil/windows-activation\n\nfeatures:\n  - title: \"🔐 HWID Activation\"\n    details: \"Get a permanent digital license for Windows 10 & 11. Tied to your hardware, it survives reinstalls.\"\n  - title: \"⚙️ KMS & Online KMS\"\n    details: \"Activate Windows and Office for 180 days, with an auto-renewal task for lifetime activation.\"\n  - title: \"📦 Ohook & TSforge\"\n    details: \"Permanent, offline activation methods for various editions of Microsoft Office for windows 7 / 11\"\n---\n\n<script setup>\nimport { data as posts } from './.vitepress/posts.data.js'\n</script>\n\n<div class=\"latest-posts-section\">\n  <h2 class=\"section-title\">Latest Posts</h2>\n  <div class=\"posts-grid\" v-if=\"posts && posts.length > 0\">\n    <article v-for=\"post of posts\" :key=\"post.url\" class=\"post-card\">\n      <div class=\"post-content\">\n        <h3 class=\"post-title\">\n          <a :href=\"post.url\" class=\"post-link\">{{ post.title }}</a>\n        </h3>\n        <p class=\"post-date\"> {{ post.date.string }}</p>\n        <p class=\"post-excerpt\" v-if=\"post.excerpt\">{{ post.excerpt }}</p>\n        <div class=\"post-actions\">\n          <a :href=\"post.url\" class=\"read-more\">Read More →</a>\n        </div>\n      </div>\n    </article>\n  </div>\n  <div v-else class=\"no-posts\">\n    <p>No posts available at the moment.</p>\n  </div>\n</div>\n\n<style scoped>\n.latest-posts-section {\n  max-width: 1152px;\n  margin: 3rem auto 0;\n  padding: 0 24px;\n}\n\n.section-title {\n  font-size: 2rem;\n  font-weight: 700;\n  color: var(--vp-c-text-1);\n  margin-bottom: 2rem;\n  text-align: center;\n  position: relative;\n}\n\n.section-title::after {\n  content: '';\n  position: absolute;\n  bottom: -8px;\n  left: 50%;\n  transform: translateX(-50%);\n  width: 60px;\n  height: 3px;\n  background: linear-gradient(90deg, var(--vp-c-brand-1), var(--vp-c-brand-2));\n  border-radius: 2px;\n}\n\n.posts-grid {\n  display: grid;\n  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));\n  gap: 2rem;\n  margin-top: 2rem;\n}\n\n.post-card {\n  background: var(--vp-c-bg-soft);\n  border: 1px solid var(--vp-c-divider);\n  border-radius: 12px;\n  overflow: hidden;\n  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);\n  position: relative;\n}\n\n.post-card::before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  height: 3px;\n  background: linear-gradient(90deg, var(--vp-c-brand-1), var(--vp-c-brand-2));\n  transform: scaleX(0);\n  transform-origin: left;\n  transition: transform 0.3s ease;\n}\n\n.post-card:hover {\n  transform: translateY(-4px);\n  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);\n  border-color: var(--vp-c-brand-1);\n}\n\n.post-card:hover::before {\n  transform: scaleX(1);\n}\n\n.post-content {\n  padding: 2rem;\n}\n\n.post-title {\n  margin: 0 0 1rem 0;\n  font-size: 1.25rem;\n  font-weight: 600;\n  line-height: 1.4;\n}\n\n.post-link {\n  color: var(--vp-c-text-1);\n  text-decoration: none;\n  transition: color 0.3s ease;\n}\n\n.post-link:hover {\n  color: var(--vp-c-brand-1);\n}\n\n.post-date {\n  color: var(--vp-c-text-2);\n  font-size: 0.875rem;\n  margin: 0 0 1rem 0;\n  display: flex;\n  align-items: center;\n  gap: 0.5rem;\n}\n\n.post-excerpt {\n  color: var(--vp-c-text-2);\n  line-height: 1.6;\n  margin: 0 0 1.5rem 0;\n  display: -webkit-box;\n  -webkit-line-clamp: 3;\n  -webkit-box-orient: vertical;\n  overflow: hidden;\n}\n\n.post-actions {\n  display: flex;\n  justify-content: flex-end;\n}\n\n.read-more {\n  color: var(--vp-c-brand-1);\n  text-decoration: none;\n  font-weight: 500;\n  font-size: 0.875rem;\n  padding: 0.5rem 1rem;\n  border-radius: 6px;\n  transition: all 0.3s ease;\n  border: 1px solid transparent;\n}\n\n.read-more:hover {\n  background: var(--vp-c-brand-soft);\n  border-color: var(--vp-c-brand-1);\n}\n\n.no-posts {\n  text-align: center;\n  padding: 3rem;\n  color: var(--vp-c-text-2);\n}\n\n@media (max-width: 768px) {\n  .latest-posts-section {\n    padding: 0 16px;\n  }\n\n  .posts-grid {\n    grid-template-columns: 1fr;\n    gap: 1.5rem;\n  }\n\n  .post-content {\n    padding: 1.5rem;\n  }\n\n  .section-title {\n    font-size: 1.75rem;\n  }\n}\n\n@media (prefers-color-scheme: dark) {\n  .post-card {\n    background: var(--vp-c-bg-alt);\n  }\n\n  .post-card:hover {\n    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);\n  }\n}\n</style>\n"
  },
  {
    "path": "docs/public/font/README.txt",
    "content": "Vazirmatn Variable Font\n=======================\n\nThis download contains Vazirmatn as both a variable font and static fonts.\n\nVazirmatn is a variable font with this axis:\n  wght\n\nThis means all the styles are contained in a single file:\n  Vazirmatn/Vazirmatn-VariableFont_wght.ttf\n\nIf your app fully supports variable fonts, you can now pick intermediate styles\nthat aren’t available as static fonts. Not all apps support variable fonts, and\nin those cases you can use the static font files for Vazirmatn:\n  Vazirmatn/static/Vazirmatn-Thin.ttf\n  Vazirmatn/static/Vazirmatn-ExtraLight.ttf\n  Vazirmatn/static/Vazirmatn-Light.ttf\n  Vazirmatn/static/Vazirmatn-Regular.ttf\n  Vazirmatn/static/Vazirmatn-Medium.ttf\n  Vazirmatn/static/Vazirmatn-SemiBold.ttf\n  Vazirmatn/static/Vazirmatn-Bold.ttf\n  Vazirmatn/static/Vazirmatn-ExtraBold.ttf\n  Vazirmatn/static/Vazirmatn-Black.ttf\n\nGet started\n-----------\n\n1. Install the font files you want to use\n\n2. Use your app's font picker to view the font family and all the\navailable styles\n\nLearn more about variable fonts\n-------------------------------\n\n  https://developers.google.com/web/fundamentals/design-and-ux/typography/variable-fonts\n  https://variablefonts.typenetwork.com\n  https://medium.com/variable-fonts\n\nIn desktop apps\n\n  https://theblog.adobe.com/can-variable-fonts-illustrator-cc\n  https://helpx.adobe.com/nz/photoshop/using/fonts.html#variable_fonts\n\nOnline\n\n  https://developers.google.com/fonts/docs/getting_started\n  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Fonts/Variable_Fonts_Guide\n  https://developer.microsoft.com/en-us/microsoft-edge/testdrive/demos/variable-fonts\n\nInstalling fonts\n\n  MacOS: https://support.apple.com/en-us/HT201749\n  Linux: https://www.google.com/search?q=how+to+install+a+font+on+gnu%2Blinux\n  Windows: https://support.microsoft.com/en-us/help/314960/how-to-install-or-remove-a-font-in-windows\n\nAndroid Apps\n\n  https://developers.google.com/fonts/docs/android\n  https://developer.android.com/guide/topics/ui/look-and-feel/downloadable-fonts\n\nLicense\n-------\nPlease read the full license text (OFL.txt) to understand the permissions,\nrestrictions and requirements for usage, redistribution, and modification.\n\nYou can use them in your products & projects – print or digital,\ncommercial or otherwise.\n\nThis isn't legal advice, please consider consulting a lawyer and see the full\nlicense for all details.\n"
  },
  {
    "path": "docs/wa/change_edition_issues.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'Change Edition Issues'\ndescription: 'During a Home to Pro upgrade, the script may show some errors'\ndate: 2024-04-05\neditLink: true\n---\n\n# Change Edition Issues\n\nIf the script encounters an error during the Windows edition change, follow the points listed below in this order.\n\n## Restart System\n\n- Press the restart button to reboot the system, then attempt to change the edition again.\n\n## Update Windows\n\n- Open the Windows settings, navigate to the Windows Update section, and ensure that Windows is fully updated.\n\n## Error 0x80070490\n\n::: tip Note\n\nOnly proceed if the script displays a 0x80070490 error code. If it doesn’t, this action is unnecessary.\n\n:::\n\n::: details Click here for info\n\n- During a Home to Pro upgrade, the script may show the below error:\n```\nException calling \"_DismSet Edition\" with \"6\" argument(s): \"Element not found. (Exception from HRESULT: 0x80070490)\"\n```\n- This issue often appears when .NET Framework 3.5 is installed.\n- To solve this, it needs to be disabled. To do that, open Command Prompt as admin and enter\n  `DISM /Online /English /Disable-Feature /FeatureName:\"NetFx3\"`\n- Once that's done, try to change the edition again.\n- After the edition change, you can enable .NET 3.5 again:\n  `DISM /Online /English /Enable-Feature /FeatureName:\"NetFx3\"`\n\n:::\n\n::: danger Troubleshooting\n\nIf none of the solutions worked, please follow the guide below to fix the system corruption. [In place repair](./in-place_repair_upgrade).\n\n- If you have any questions, first review the [**FAQ section**](./faq) - your answer will most likely be there.\n\n- If your issue persists - [**Contact us**](./troubleshoot).\n\n:::\n"
  },
  {
    "path": "docs/wa/change_office_edition.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'Change Office Edition'\ndescription: 'This option is available in the main menu of MAS. You can use this script with Office C2R (Ver 16.0.9029.2167 and later) to change, add, and remove editions or change the current Office update channel'\ndate: 2024-01-05\neditLink: true\n---\n\n# Change Office Edition\n\nThis option is available in the main menu of MAS. You can use this script with Office C2R (Ver 16.0.9029.2167 and later) to change, add, and remove editions or change the current Office update channel.\n\n## How does it work?\n\nOffice C2R (Click To Run) has a unified installation system, meaning that whether you download a single app like Word 2021 or a full package like ProPlus2021, the core files installed are nearly identical.\n\nThe main management program for Office C2R is located at `C:\\Program Files\\Common Files\\microsoft shared\\ClickToRun\\OfficeClickToRun.exe`\n\nThe script leverages this program to add, remove, or change Office editions. Because of Office's unified installation and delta updates, adding new editions or apps does not require a large download.\n\n\n## Change Office update channel\n\nThis script can also change the current Office update channel.\n\n```\n5440FD1F-7ECB-4221-8110-145EFAA6372F  -  Insider Fast [Beta]  -  Insiders::DevMain\n64256AFE-F5D9-4F86-8936-8840A6A4F5BE  -  Monthly Preview      -  Insiders::CC\n492350F6-3A01-4F97-B9C0-C7C6DDF67D60  -  Monthly [Current]    -  Production::CC\n55336B82-A18D-4DD6-B5F6-9E5095C314A6  -  Monthly Enterprise   -  Production::MEC\nB8F9B850-328D-4355-9145-C59439A0C4CF  -  Semi Annual Preview  -  Insiders::FRDC\n7FFBC6BF-BC32-4F92-8982-F9DD17FD3114  -  Semi Annual          -  Production::DC\nEA4A4090-DE26-49D7-93C1-91BFF9E53FC3  -  DevMain Channel      -  Dogfood::DevMain\nB61285DD-D9F7-41F2-9757-8F61CBA4E9C8  -  Microsoft Elite      -  Microsoft::DevMain\nF2E724C1-748F-4B47-8FB8-8E0D210E9208  -  Perpetual2019 VL     -  Production::LTSC\n1D2D2EA6-1680-4C56-AC58-A441C8C24FF9  -  Microsoft2019 VL     -  Microsoft::LTSC\n5030841D-C919-4594-8D2D-84AE4F96E58E  -  Perpetual2021 VL     -  Production::LTSC2021\n86752282-5841-4120-AC80-DB03AE6B5FDB  -  Microsoft2021 VL     -  Microsoft::LTSC2021\n7983BAC0-E531-40CF-BE00-FD24FE66619C  -  Perpetual2024 VL     -  Production::LTSC2024\nC02D8FE6-5242-4DA8-972F-82EE55E00671  -  Microsoft2024 VL     -  Microsoft::LTSC2024\n```\n\n- The script has the above list in its database and only offers officially supported upgrades.\n- Learn more about Office update channels here https://learn.microsoft.com/en-us/microsoft-365-apps/updates/overview-update-channels\n- You can fetch the latest Office build numbers here https://github.com/ItzLevvie/Office16/blob/master/defconfig\n- The script uses an official method to change the update channel:\nhttps://techcommunity.microsoft.com/t5/office-365-blog/how-to-manage-office-365-proplus-channels-for-it-pros/ba-p/795813\n\n### VL (LTSC) channel limitations\n(Applicable to 2019/21/24 VL)\n\nOfficially, the update channel can not be changed to or from a VL (LTSC) channel, so if the installed channel is a VL (LTSC) channel, only that channel will appear in the script.\nAlso, if the installed channel is not an LTSC channel, the script won't offer to change to LTSC.\n\n### Windows 7/8/8.1 limitations\n\nOffice C2R is no longer supported on Windows [7][1], [8][2], and [8.1][3].\nThe last available build is fixed and won't get any updates. VL (LTSC) channels are not supported on these Windows versions so they won't appear in the script.\n\n---\n\n## Troubleshooting\n\n::: danger Troubleshooting\n\nIf you have any questions, first review the [**FAQ section**](./faq) - your answer will most likely be there.\n\nIf your issue persists - [**Contact us**](./troubleshoot).\n\n:::\n\n\n[1]: https://learn.microsoft.com/en-us/microsoft-365-apps/end-of-support/windows-7-support\n[2]: https://learn.microsoft.com/en-us/microsoft-365-apps/end-of-support/windows-8-support\n[3]: https://learn.microsoft.com/en-us/microsoft-365-apps/end-of-support/windows-81-support\n"
  },
  {
    "path": "docs/wa/change_windows_edition.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'Change Windows Edition'\ndescription: 'This option can be found in the main menu of MAS, It can change Windows versions 7 through 11 and the equivalent server editions'\ndate: 2024-06-05\neditLink: true\n---\n\n# Change Windows Edition\n\n-   This option can be found in the main menu of MAS.\n-   It can change Windows versions 7 through 11 and the equivalent server editions.\n-   The script incorporates four methods for edition changing:\n    -   May's DISM Api Method - Used in Windows 10/11 Core to Non-Core edition change\n    -   [slmgr /ipk Method][1] - Used for Windows 10/11 virtual editions\n    -   [DISM Method][2] - Used in Server 2016 and later server versions\n    -   [CBS Upgrade Method][3] - Used in Windows versions before 10\n-   The script will show editions available via any of the four methods.\n-   The script is future-proof, which means that it won't need an update upon the release of new editions because it can get the required product key from the system itself.\n-   The script blocks changing to CountrySpecific and ServerRdsh, and to/from CloudEdition editions since this is not officially supported and it may cause issues.\n-   The script cannot change:\n    -   Non-Core editions to Core editions. (For example, Pro to Home isn't available.)\n    -   GAC editions to LTSC editions. (For example, Enterprise to Enterprise LTSC isn't available.)\n\n\n## Manual Edition Change\n\nIf you want to manually change the edition instead of using the script, please follow the steps below.\n\n### Windows 10/11\n\n-   To view the list of available editions, open the command prompt as admin and enter\n    `dism /online /english /Get-TargetEditions`\n-   Get a key for the desired edition from [here](./hwid#supported-products)\n-   If you are upgrading from Home to Pro, you will need to disable the Internet before performing the upgrade.\n-   Now enter that product key with this command, replace `<product_key>` with the actual key.\n    `changepk.exe /ProductKey <product_key>`\n-   In a Home to Pro upgrade, it may show an error, restart the system anyway. (Use the script if it's still not working)\n-   Activate the changed edition with MAS, that's all.\n\n### Windows Server 2016 and Later\n\n-   Follow the [official Microsoft guide][2]. You can get the required keys from [here](./kms38#supported-products).\n\n---\n\n## Troubleshooting\n\n::: danger Troubleshooting\n\nCheck [here](./change_edition_issues)\n\nIf your issue persists - [**Contact us**](./troubleshoot)\n\n:::\n\n\n[1]: https://learn.microsoft.com/en-us/windows/deployment/upgrade/windows-edition-upgrades#upgrade-using-a-command-line-tool\n[2]: https://learn.microsoft.com/en-us/windows-server/get-started/upgrade-conversion-options\n[3]: https://github.com/asdcorp/Set-WindowsCbsEdition\n"
  },
  {
    "path": "docs/wa/chart.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: Activation Methods Chart\ndescription: 'A comparison of activation methods offered by Microsoft Activation Scripts.'\ndate: 2025-05-06\neditLink: true\nhead:\n  - - meta\n    - name: keywords\n      content: chart, comparison, which one is the best, hwid or kms, kms, hwid, tsforge, ohook, online kms\n---\n\n# Activation Methods Chart\n\n> Below is a comparison of activation methods offered by Microsoft Activation Scripts.\n\n<br/>\n\n## Basics\n\n|                                                                      | HWID | Ohook | KMS38  | Online KMS | ZeroCID[^1] | StaticCID[^1] | KMS4k[^1] |\n| -------------------------------------------------------------------- | :--: | :---: | :----: | :--------: | :---------: | :-----------: | :-------: |\n| Works offline                                                        |  🔴  |  🟢   |   🟢   |     🔴     |     🟢      |      🔴       |    🟢     |\n| Activation is permanent                                              |  🟢  |  🟢   | 🟢[^2] |   🟢[^3]   |     🟢      |      🟢       |  🟢[^4]   |\n| Does not leave any files in the system to maintain activation status |  🟢  |  🔴   |   🟢   |     🔴     |     🟢      |      🟢       |    🟢     |\n\n<br/> \n\n## Persistence\n\n|                                                           | HWID | Ohook | KMS38 | Online KMS | ZeroCID[^1] | StaticCID[^1] | KMS4k[^1] |\n| --------------------------------------------------------- | :--: | :---: | :---: | :--------: | :---------: | :-----------: | :-------: |\n| Persists between hardware changes                         |  🔴  |  🟢   |  🔴   |     🟢     |     🟢      |      🔴       |    🟢     |\n| Persists between clean installations on the same hardware |  🟢  |  🔴   |  🔴   |     🔴     |     🔴      |      🔴       |    🔴     |\n| Persists between Windows 10 / 11 feature upgrades         |  🟢  |  🟢   |  🟢   |     🟢     |     🔴      |      🔴       |    🔴     |\n\n<br/> \n\n## Support\n\n|                                   | HWID | Ohook | KMS38  | Online KMS | ZeroCID[^1] | StaticCID[^1] |  KMS4k[^1]  |\n| --------------------------------- | :--: | :---: | :----: | :--------: | :---------: | :-----------: | :---------: |\n| Windows Vista / 7                 |  🔴  |  🔴   |   🔴   |   🟢[^5]   |     🟢      |      🔴       |   🟢[^5]    |\n| Windows 8 / 8.1                   |  🔴  |  🔴   |   🔴   |   🟢[^5]   |     🟢      |      🟢       |   🟢[^5]    |\n| Windows 10 / 11                   |  🟢  |  🔴   | 🟢[^5] |   🟢[^5]   |     🟢      |      🟢       |   🟢[^5]    |\n| Windows 11 (26100.4188 and later) |  🟢  |  🔴   | 🟢[^5] |   🟢[^5]   |     🔴      |      🟢       |   🟢[^5]    |\n| Windows Server 2008 / 2008 R2     |  🔴  |  🔴   |   🔴   |     🟢     |     🟢      |      🔴       |     🟢      |\n| Windows Server 2012 / 2012 R2     |  🔴  |  🔴   |   🔴   |     🟢     |     🟢      |      🟢       |     🟢      |\n| Windows Server 2016 and later     |  🔴  |  🔴   |   🟢   |     🟢     |     🟢      |      🟢       |     🟢      |\n| Office 2010                       |  🔴  |  🟢   |   🔴   |   🟢[^5]   |     🔴      |      🔴       |     🔴      |\n| Office 2013 and later             |  🔴  |  🟢   |   🔴   |   🟢[^5]   |   🟢[^6]    |    🟢[^6]     | 🟢[^5] [^6] |\n| Windows / Office KMS Host         |  🔴  |  🔴   |   🔴   |     🔴     |     🟢      |      🟢       |     🔴      |\n| Windows Extended Security Updates |  🔴  |  🔴   |   🔴   |     🔴     |     🟢      |      🟢       |     🔴      |\n| OCUR / RP / APPXLOB addons        |  🔴  |  🔴   |   🔴   |     🔴     |     🟢      |      🟢       |     🔴      |\n\n[^1]: Provided by [TSforge](./tsforge).\n\n[^2]: Valid until the year 2038.\n\n[^3]: Valid for 180 days by default. Permanent with renewal task installed.\n\n[^4]: Valid for 4083 years.\n\n[^5]: Volume activation capable editions only.\n\n[^6]: Supported only on Windows 8 and later; subscription editions are not supported.\n"
  },
  {
    "path": "docs/wa/clean_install_windows.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'Clean Install Windows'\ndescription: 'Guide on how to backup your data and clean install Windows'\ndate: 2025-03-07\neditLink: true\nhead:\n  - - meta\n    - name: keywords\n      content: clean install, infection, infected windows, malware, genuine, remove malware\n---\n\n## Prerequisites  \n\n- A genuine Windows ISO file, you can download:\n  - from [Dear Gravesoft][1]\n  - OR Directly from [Microsoft][2]\n- The latest version of Rufus from [rufus][3]\n- A minimum 8GB USB drive\n- Follow this [guide](./remove_malware) before making a bootable USB if you think the system has malware.\n\n::: details Another clean system if your current system is infected with File infector malware\n\n**Why?**\n\nBecause file infector malware can copy itself to the bootable USB that you are going to make to perform a clean installation.\n\nYou need to use another clean system to make a bootable USB and plug it into the current infected system only when it's not running live Windows.\n\n**How to check if you have file infector malware?**\n\nOpen PowerShell as admin and enter\n\n```reg\nsc.exe start \"sppsvc\" > $null 2>&1; Write-Host \"Error code: $LASTEXITCODE\"\n```\n\nIf the output is 577 or 225, then most likely chances are that the system is infected with File infector malware.\n\n**What if you don't have another clean system?**\n\nYou can try Dr.Web [free.drweb.com/download][4] to remove file infector malware. However in some cases, it may miss to remove all, that's why its best to make bootable USB on another clean system.\n\n:::\n\n## Back up your data  \n\nThe clean installation process will format the C drive where Windows is installed; if you have any data in the C drive, you need to back it up.   \n\nIf you have multiple partitions on your drives, like `C:\\ D:\\`\n- You can copy your data from C drive and paste it into other partitions.\n- Your data is usually located in the below place on the C drive,\n  - Go to this folder `C:\\Users` and then select the user account that you are using. \n  - Your data is saved in Desktop, Documents, Downloads, Music, Pictures, and Videos folders.\n  - Save these folders in another partition to backup.\n\nIF you have `C:\\ drive only`\n- Your data is usually located in the below place on the C drive,\n  - Go to this folder `C:\\Users` and then select the user account that you are using. \n  - Your data is saved in Desktop, Documents, Downloads, Music, Pictures, and Videos folders. \n- If you have a **small amount of data** to back up, save it on the below listed online drives or the USB drive after making it bootable with Rufus.\n- If you have a **large amount of data** that you can't save on an external drive or online drive,\n  - Create another partition using this [guide][5]\n  - Save your data onto that other newly created partition.\n\n<br/>\n\n::: danger It's highly recommend\n\nTo backup your critical data on some online drive as well, for example,\n\n- [GoogleDrive][6] → 15GB Free\n- [OneDrive][7] → 5GB Free\n- [Mega][8] → 20GB Free \n- [Filen][9] → 10GB Free\n\n:::\n\n## Create a bootable USB with Rufus\n\n- Plug your USB drive into the system. (Its data will be deleted.)\n- Launch Rufus which you downloaded earlier.\n- In the \"Device\" dropdown, select your USB flash drive.\n- Boot Selection:\n  - Click \"SELECT\" and choose your Windows ISO file. Rufus will auto-configure optimal settings.\n- Click \"START.\"\n- Wait for Rufus to create the bootable USB. It may take several minutes. You'll see \"READY\" when done.\n\n## Windows 11 on Unsupported Hardware   \n\n::: details Rufus can help you\n\n- Rufus can help you install Windows 11 on unsupported hardware, but you will encounter problems with future feature updates since Microsoft does not permit that on such hardware.\n- To resolve this issue, you need to install IoT Enterprise 24H2 (2024) edition which is [officially supported][10] on unsupported hardware. Don't worry about it being an unusual edition; it's binary identical to other editions, with the primary difference being the licensing.\n- This IoT Enterprise edition comes in 2 flavors,\n  - IoT Enterprise (GAC, General Availability Channel) \n  - IoT Enterprise (LTSC, Long-Term Servicing Channel)\n- Next question, how do we install this edition?\n  - For GAC version, you don't need IoT Enterprise ISO, you can simply use regular Windows 11 24H2 consumer (linked at the top) or business ISO.\n  - For LTSC version, you need to download the full version of LTSC ISO (don't use eval), it doesn't have to be IoT ISO, you can download a normal LTSC ISO in your language. \n  - After flashing the required ISO using Rufus, navigate to the `\\sources\\` folder on the USB drive and create a file named `PID.txt` (ensure the file extension is correct). Open this file with Notepad and enter the text below.\n    - For GAC version\n\t  ```\n\t  [PID]\n\t  Value=XQQYW-NFFMW-XJPBH-K8732-CKFFD\n\t  ```\n    - For LTSC version\n\t  ```\n\t  [PID]\n\t  Value=CGK42-GYN6Y-VD22B-BX98W-J8JXD\n\t  ```\n- When installing Windows, be sure not to use the old version of the installer.\n- That's it. The setup will auto-pick the IoT Enterprise edition.  \n\nAlternatively, if you don't want to do that, you can install Windows normally and later change the edition to IoT Enterprise.\n\n:::\n\n## Edition List During Windows Installation\n\n::: tip If your system has an OEM license\n\n- If your system has an OEM license installed by the manufacturer on the motherboard, then the Windows setup will not show the edition list and will automatically select the edition based on the license on the motherboard.\n- If you have such hardware and want to view the list of available editions for Windows installation, follow the steps below.\n- After flashing the required ISO using Rufus, navigate to the `\\sources\\` folder on the USB drive and create a file named `ei.cfg` (ensure the file extension is correct). Open this file with Notepad and enter the text below.\n\n```\n[Channel]\nNoKeyChannel\n```\n\n- Now you can view the edition list and pick the edition you want from Windows Vista to Windows 11. It also helps you avoid installing key in Windows 8/8.1 setup where key installation can not be skipped.\n- In Windows 11 24H2, the new installer does not support this, so you need to select the \"old\" installer option when the setup starts. \n- If you are using PID.txt, please note that it will take precedence over ei.cfg.\n\n:::\n\n## Clean Install Windows  \n\n- Disconnect all external or non-boot internal drives to reduce installation risks.\n- Restart your PC and boot from the USB flash drive, typically accessed by pressing F11 or F12 during startup. If it's not working for you then Google the type of device you have followed by \"boot menu key\", for example, \"Asus Zephyrus G14 boot menu key\" and find the results for your model number.\n- Follow on-screen instructions.\n  - Choose \"Custom: Install Windows only (advanced)\" for a clean install.\n  - Delete all partitions on the boot drive, or if you want to save data partitions then delete only the C drive and other small system partitions, and select the unallocated space created.  \n  - Click \"Next\" to start the installation. Windows will auto-create the necessary partitions.\n\n## Bypass Windows 11 Internet and Microsoft Account Requirements\n\nRufus offers an option to bypass the Internet and Microsoft Account requirements for installing Windows 11. However, if you prefer a different method, follow these steps:\n\n1. When you see the \"Let's connect you to a network\" screen, \n2. Press Shift + F10 to open a command prompt.\n3. Type `start ms-cxh:localonly` and press Enter.\n\nThis allows you to continue the installation without needing to connect to the Internet or use a Microsoft account.\n\n<br/>\n\n<video class=\"video-js vjs-default-skin vjs-fluid\" controls preload=\"auto\" data-setup='{}'>\n  <source src=\"/bypass_windows_11_internet_and_microsoft_account_requirement.mp4\" type=\"video/mp4\" />\n  <p class=\"vjs-no-js\"></p>\n</video>\n\n<br/>\n\n## Troubleshoot\n\n::: danger Troubleshoot\n\n- If you need any help regarding this, first review the [**FAQ section**](./faq) — your answer will most likely be there.\n\n- If your issue persists — You can [**Contact us**](./troubleshoot).\n\n:::\n\n\n[1]: https://msdl.gravesoft.dev/\n[2]: https://www.microsoft.com/en-us/software-download\n[3]: https://rufus.ie/\n[4]: https://free.drweb.com/download+cureit/gr\n[5]: https://youtu.be/_HgjasKuOBw\n[6]: https://drive.google.com/\n[7]: https://onedrive.live.com/\n[8]: https://mega.io/\n[9]: https://filen.io/\n[10]: https://learn.microsoft.com/en-us/windows/iot/iot-enterprise/Hardware/System_Requirements?tabs=Windows11LTSC#optional-minimum-requirements\n[11]: https://github.com/NiREvil/windows-activation/discussions/new/choose\n\n"
  },
  {
    "path": "docs/wa/command_line_switches.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'Command Line Switches'\ndescription: 'You can use the switches in AEG AIO, separate files version and in Powershell one-liner to run in unattended mode.'\ndate: 2023-02-06\neditLink: true\n---\n\n# Command Line Switches\n\n\n::: info Notes\n\n- You can use the switches below in AEG AIO, separate files version and in Powershell one-liner to run in unattended mode.\n\n- If you want to use MAS to pre-activate Windows, check [oem-folder](./oem-folder) page for more details.\n\n:::\n\n### HWID\n\n| Switches                | Meaning                                                                                                                                                                                   |\n| ----------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `/HWID`                 | Activate with HWID                                                                                                                                                                        |\n| `/HWID-NoEditionChange` | Some editions don't support HWID, so by default the script changes the edition to nearest available edition to enable activation. This switch runs HWID without allowing edition changes. |\n\n### Ohook\n\n| Switches           | Meaning                          |\n| ------------------ | -------------------------------- |\n| `/Ohook`           | Install Ohook to activate Office |\n| `/Ohook-Uninstall` | Uninstall Ohook                  |\n\n### TSforge\n\n| Switches                     | Meaning                                                                                                                                                                                               |\n| ---------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `/Z-Windows`                 | Activate only Windows with TSforge                                                                                                                                                                    |\n| `/Z-ESU`                     | Activate only ESU with TSforge                                                                                                                                                                        |\n| `/Z-Office`                  | Activate only Office with TSforge                                                                                                                                                                     |\n| `/Z-ProjectVisio`            | Activate only Project/Visio with TSforge                                                                                                                                                              |\n| `/Z-WindowsESUOffice`        | Activate all Windows / ESU / Office with TSforge                                                                                                                                                      |\n| `/Z-WinHost`                 | Activate only Windows KMS Host with TSforge                                                                                                                                                           |\n| `/Z-OffHost`                 | Activate only Office KMS Host with TSforge                                                                                                                                                            |\n| `/Z-APPX`                    | Activate only 8/8.1 APPXLOB with TSforge                                                                                                                                                              |\n| `/Z-ID-ActivationIdGoesHere` | To specify an activation ID for activation, where ActivationIdGoesHere needs to be edited for Activation ID. If you want to add multiple through parameters, pass each of them in separate parameters |\n| `/Z-Reset`                   | Reset rearm counter, evaluation period and clear the tamper state, key lock                                                                                                                           |\n\n**Change activation method:**\n\nFor builds 19041 and later, the script automatically selects StaticCID (requires an internet connection). If no internet connection is detected, it automatically switches to the KMS4k method.  \nFor builds earlier than 19041, the script automatically selects ZeroCID.\n\nTo override this automatic selection and use a specific activation method, you can apply the following switches in combination with the switches listed above.\n\n| Switches   | Meaning                                                                                                                                                          |\n| ---------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `/Z-SCID`  | Force use StaticCID activation method. It needs Internet and does not work on Windows 7 and older versions.                                                      |\n| `/Z-ZCID`  | Force use ZeroCID activation method. Works reliably on builds below 19041, may break on builds between 19041-26100 and does not work on builds above 26100.4188. |\n| `/Z-KMS4k` | Volume licenses only. Activates for 4000+ years.                                                                                                                 |\n\n### KMS38\n\n| Switches                  | Meaning                                                                                                                                                                                     |\n| ------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `/KMS38`                  | Activate with KMS38                                                                                                                                                                         |\n| `/KMS38-NoEditionChange`  | Some editions don't support KMS38, so by default the script changes the edition to nearest available edition to enable activation. This switch runs KMS38 without allowing edition changes. |\n| `/KMS38-RemoveProtection` | Remove KMS38 protection                                                                                                                                                                     |\n\n### Online KMS\n\n| Switches                      | Meaning                                                                                                                                                       |\n| ----------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `/K-Windows`                  | Activate only Windows with Online KMS                                                                                                                         |\n| `/K-Office`                   | Activate only Office with Online KMS                                                                                                                          |\n| `/K-ProjectVisio`             | Activate only Project/Visio with Online KMS                                                                                                                   |\n| `/K-WindowsOffice`            | Activate all Windows and Office with Online KMS                                                                                                               |\n| `/K-NoEditionChange`          | Some editions don't support KMS, script by default change edition to nearest available to enable KMS activation. This switch can be used to stop this change. |\n| `/K-NoRenewalTask`            | Whenever you run any activation, the script installs the auto-renewal task by default. To NOT auto-install renewal task with activation, use this switch.     |\n| `/K-Uninstall`                | Uninstall Online KMS including renewal tasks                                                                                                                  |\n| `/K-Server-YOURKMSSERVERNAME` | To specify a server address for activation, where YOURKMSSERVERNAME needs to be edited for server name                                                        |\n| `/K-Port-YOURPORTNAME`        | To specify a port for activation, where YOURPORTNAME needs to be edited for port address                                                                      |\n\n```\n/S\nRun operations in silent mode (no output but the CMD window will still appear)\n```\n\n<br/>\n\n## Using in the Powershell One-Liner\n\n`& ([ScriptBlock]::Create((irm https://get.activated.win))) /para`\n\n- Replace `/para` in this command with the switches from the above table. You can also use multiple switches. For example, `/HWID /Ohook`\n- This Powershell one-liner will only work on Windows 8.1 and later.\n- To change the edition through the command line, check [here](change_windows_edition.md#manual-edition-change). We didn't automate it in MAS because it requires a reboot in some cases.\n\n<br/>\n\n## Rules\n\n- The script will run in unattended mode if any switch is used.\n- `/S` switch is not applicable in MAS separate files version scripts.\n- All switches are case-insensitive and work in any order, but must be separated with spaces.\n- KMS Uninstall switch will take precedence over other KMS switches.\n- KMS38 remove protection switch will take precedence over KMS38 activation.\n\n"
  },
  {
    "path": "docs/wa/credits.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'Credits'\ndescription: 'Thos project wouldnt be possible without the kind help and use of other honorable developers tools and scripts'\ndate: 2022-02-02\neditLink: true\n---\n\n# Credits\n\nThe MAS project wouldn't be possible without the kind help and use of other honorable developers' tools and scripts. I would like to say thanks to all those wonderful people and projects.\n\n### Activation Methods Contributions\n\n| Activation Methods | Contributors                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |\n|--------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| HWID               | [**asdcorp**](https://github.com/asdcorp) - [Original HWID method](https://nsaneforums.com/topic/316668-microsoft-activation-scripts/page/29/#comment-1497887), Reinvented HWID after [free upgrade block](https://devicepartner.microsoft.com/en-us/communications/comm-windows-ends-installation-path-for-free-windows-7-8-upgrade), [Integrated_Patcher](https://github.com/asdcorp/Integrated_Patcher_3), [GamersOsState](https://github.com/asdcorp/GamersOsState) (Not in use anymore)  <br /> [**May**](https://github.com/ave9858) - Universal Ticket for HWID <br /> [**WitherOrNot**](https://github.com/WitherOrNot) - SPP Client Lockbox signing key (Currently in use) <br /> [**vyvojar**](https://github.com/vyvojar) - [slshim](https://app.box.com/s/y71tpcamofcg6zv6k7by6gaex6om3q4d) (Not in use anymore) <br /> [**sponpa, leitek8**](https://nsaneforums.com/topic/316668-microsoft-activation-scripts/page/21/?tab=comments#comment-1431257) - slc.dll Improvements (Not in use anymore) |\n| Ohook              | [**asdcorp**](https://github.com/asdcorp/ohook)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |\n| TSforge            | **Core Research and Development** <br /> [**WitherOrNot**](https://github.com/WitherOrNot) - Lead tool development, reverse engineering, testing <br /> [**asdcorp**](https://github.com/asdcorp) - Initial demonstrations, reverse engineering, tool development, testing <br /> [**abbodi1406**](https://github.com/abbodi1406) - Reverse engineering, development, testing <br /> [**Lyssa**](https://github.com/thecatontheceiling) - Reverse engineering, tool development, testing <br /> <br /> **Other Contributions** <br /> [**Emma (IPG)**](https://github.com/InvoxiPlayGames) - Vista [SPSys IOCTLs](https://github.com/InvoxiPlayGames/vistaspctl) and physical store format <br /> [**May**](https://github.com/ave9858) - Code formatting, build setup <br /><br /> **Special Thanks** <br /> [**BetaWiki**](https://betawiki.net/) - Documenting beta builds used for reverse engineering <br /> [**Rairii**](https://github.com/Wack0) - Assistance with initial reverse engineering efforts |\n| KMS38              | [**asdcorp**](https://github.com/asdcorp) - Original KMS38 method <br />  [**May**](https://github.com/ave9858) - Universal Ticket for KMS38 <br /> [**WitherOrNot**](https://github.com/WitherOrNot) - SPP Client Lockbox signing key                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |\n| Online KMS         | [**WindowsAddict**](https://github.com/WindowsAddict) - Forked [abbodi1406's](https://github.com/abbodi1406) [KMS_VL_ALL](https://github.com/abbodi1406/KMS_VL_ALL_AIO) <br /><br /> **Acknowledgements** <br /> [**MDL Forums**](https://forums.mydigitallife.net/forums/51/) - The home of KMS emulators <br /> [**Hotbird64**](https://forums.mydigitallife.net/threads/50234/) - The resourceful vlmcsd tool, and KMSEmulator source development                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |\n\n### MASSGRAVE R&D\n\n| Entity                                         | Contribution                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |\n|------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| [asdcorp](https://github.com/asdcorp)          | [[HWID/KMS38](https://nsaneforums.com/topic/316668-microsoft-activation-scripts/page/29/#comment-1497887)] [Reinvented HWID after [free upgrade block](https://devicepartner.microsoft.com/en-us/communications/comm-windows-ends-installation-path-for-free-windows-7-8-upgrade)] [[TSforge](https://github.com/massgravel/TSforge)] [[GamersOsState](https://github.com/asdcorp/GamersOsState)] [[Integrated_Patcher](https://github.com/asdcorp/Integrated_Patcher_3)] [[Rearm](https://github.com/asdcorp/rearm)] [[Set-WindowsCbsEdition](https://github.com/asdcorp/Set-WindowsCbsEdition)] [[clic](https://github.com/asdcorp/clic)] [RE and tool development] [Branding materials] [Great help] |\n| [WitherOrNot](https://github.com/WitherOrNot)  | [[TSforge](https://github.com/massgravel/TSforge)] [SPP Client Lockbox signing key for HWID/KMS38] [[winkeycheck](https://github.com/WitherOrNot/winkeycheck)] [[Keyhole](https://massgrave.dev/blog/keyhole)] [[warbird-docs](https://github.com/WitherOrNot/warbird-docs)] [[TSPKgen](https://gist.github.com/WitherOrNot/c34c4c7b893e89ab849ce04e007d89a9)] [RE and tool development]                                                                                                                                                                                                                                                                                                                                                                                                                                                |\n| [abbodi1406](https://github.com/abbodi1406)    | [[TSforge](https://github.com/massgravel/TSforge)] [[CAS](https://gravesoft.dev/cas)] [[KMS_VL_ALL](https://github.com/abbodi1406/KMS_VL_ALL_AIO) (Online KMS is a fork of it)] [RE and tool development] [Enormous help and problem solving]                                                                                                                                                                                                                                                                                                                                                                                                                                                           |\n| [awuctl](https://github.com/awuctl)            | [[hwid-stuff](https://github.com/massgravel/hwid-stuff)] [[licensing-stuff](https://github.com/awuctl/licensing-stuff)] [[info](https://github.com/massgravel/activation)] [[MVS Dump](https://github.com/awuctl/mvs)] [RE and tool development] (Currently retired)                                                                                                                                                                                                                                                                                                                                                                                                                                    |\n| [Lyssa](https://github.com/thecatontheceiling) | [Official mascot] [[TSforge](https://github.com/massgravel/TSforge)] [[LyssaRDSGen](https://github.com/thecatontheceiling/LyssaRDSGen)] [RE and tool development]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |\n| [May](https://github.com/ave9858)              | [Universal Ticket for HWID/KMS38] [DISM Api method to change Windows edition] [[CleanOffice.ps1](https://gist.github.com/ave9858/9fff6af726ba3ddc646285d1bbf37e71)] [[Keyhole](https://massgrave.dev/blog/keyhole)] [RE and tool development] [Great help]                                                                                                                                                                                                                                                                                                                                                                                                                                              |\n| [WindowsAddict](https://github.com/WindowsAddict)                           | MAS Author  \n\n### Other Contributions\n\n| Entity                                                                      | Contribution                                         |\n|-----------------------------------------------------------------------------|------------------------------------------------------|\n| [Enthousiast](https://forums.mydigitallife.net/members/enthousiast.104688/) | ISO uploads                                          |\n| [BetaWiki](https://betawiki.net/)                                           | Documenting beta builds used for reverse engineering |\n| [MDL Forums](https://forums.mydigitallife.net/forums/51/)                   | Helpful resources                                    |\n\nAnd thanks to the users for their interest, feedback, and assistance 🤍\n"
  },
  {
    "path": "docs/wa/evaluation_editions.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'Windows Evaluation Editions'\ndescription: 'A complete guide to Windows Evaluation Editions for IT professionals, plus Persian translation.'\ndate: 2023-02-05\neditLink: true\n---\n\n# Windows Evaluation Editions\n\nWindows Evaluation Editions are official trial versions of Windows operating systems released by Microsoft. They’re designed to help IT professionals and advanced users test the features and compatibility of Windows (Enterprise & Server) before committing to a purchase.\n\n- **Where to get:** [Microsoft Eval Center][1]\n- **Available:** Windows 10/11 Enterprise & all current Server editions\n\n::: danger Important\n\nYou _cannot_ activate evaluation editions after the trial period. For long-term use, always install a [genuine full version](./genuine-installation-media) instead.\n\n:::\n\n### Main Differences: Full vs. Evaluation\n\n- **Trial Period:** 90 days for Enterprise, 180 days for Server.\n- **Activation:** Not possible with product keys, digital licenses, or KMS after the trial expires.\n- **Post-trial:** The system will display activation warnings and may restart automatically.\n- **Permanent Activation:** Not supported on evaluation builds.\n\n---\n\n### How to Convert Evaluation to Full Version\n\n#### Windows 10/11 Enterprise\n\nOfficially, you can’t directly convert evaluation to full.  \nHowever, you can upgrade using an ISO and a registry tweak:\n\n:::tabs\n\n== Enterprise LTSC\n\n**Enterprise LTSC**\n\n**For LTSC editions:**\n\n1. Download the same-language/architecture LTSC ISO from [windows ltsc links][2]\n2. Mount the ISO (right-click → Open with Windows Explorer).\n3. As administrator, run:\n\n```reg\nreg add \"HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\" /v EditionID /d EnterpriseS /f\n```\n\n _(For Windows 11 on unsupported hardware, use `IoTEnterpriseS` instead of `EnterpriseS`)_  \n \n4. Run `setup.exe` from the mounted ISO, make sure “Keep personal files and apps” is selected.\n5. Complete the upgrade.\n\n== Enterprise GAC\n\n**For General Availability Channel (GAC):**\n\n1. Download the ISO from [MSDL][3].\n2. Mount the ISO.\n3. As administrator, run:\n\n```reg\nreg add \"HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\" /v EditionID /d Enterprise /f\n```\n\n_(For Windows 11 on unsupported hardware, use `IoTEnterprise`)_\n\n4. Run `setup.exe` and use key `NPPR9-FWDCX-D2C8J-H872K-2YT43` if prompted.\n5. On the confirmation screen, ensure “Keep personal files and apps” is selected.\n\n:::\n\n#### Windows Server\n\n- Official conversion is supported. See [Microsoft guide][4] or use the [MAS script](./index).\n\n### Extending the Evaluation Period\n\n- **Default:** 90 days (Enterprise), can be extended 2 more times (up to 270 days) with\n\n```reg\nslmgr /rearm\n```\n\n- **Other methods:** Use the TSforge option in MAS or reset WPA registry keys (see [gravesoft.dev][5]).\n\n::: info Info\n\n- Evaluation activation for Windows 10 Enterprise LTSC 2021 may fail—use MAS TSforge to fix.\n\n:::\n\n### Avoid License File Swapping\n\n::: tip Avoiding\n\nApplying full-version license files to eval builds is _not_ recommended and can break system updates, edition queries, and more.    \nAlways use official upgrade or extension methods.\n\n:::\n\n::: danger Troubleshoot\n\n- If you need any help regarding this, first review the [**FAQ section**](./faq) — your answer will most likely be there.  \n\n- If your issue persists — You can [**Contact Us**](./troubleshoot).\n\n:::\n\n[1]: https://www.microsoft.com/en-us/evalcenter\n[2]: https://massgrave.dev/windows_ltsc_links\n[3]: https://msdl.gravesoft.dev/\n[4]: https://learn.microsoft.com/en-us/windows-server/get-started/upgrade-conversion-options\n[5]: https://gravesoft.dev/fix-wpa-registry\n[6]: https://github.com/NiREvil/windows-activation/discussions\n"
  },
  {
    "path": "docs/wa/faq.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'FAQ'\ndescription: 'Frequently Asked Questions about Activation Methods' \ndate: 2025-02-04\neditLink: true\n---\n\n# Frequently Asked Questions (FAQ)\n\nWelcome to the MAS FAQ! Here you'll find answers to the most common questions. If you don't see your question here, feel free to [Contact Us](#contact-us) — we're happy to help!\n\n<br/><br/>\n\n## Getting Started\n\n### How do I use MAS?\n\nFor a full guide on permanent activation with HWID, see [this section](./index#step2).\n\n<br/>\n\n### How can I activate Windows permanently?\n\nSelect the HWID activation option in MAS.\n\n<br/>\n\n### How do I download and install Office?\n\nFollow the steps in the [genuine installation media guide](./genuine-installation-media).\n\n<br/>\n\n### How do I activate Office permanently?\n\nChoose the Ohook activation method within MAS.\n\n<br/>\n\n#### How to receive security updates for Windows 10 after October 2025?\nYou can use [TSforge option in MAS](index#step2) to activate 3 Years ESU (Oct 2025 to Oct 2028). [More info](./windows10_eol).\n\n<br/>\n\n## Troubleshooting\n\n### Activation failed — what should I do?\n\nSee our [troubleshooting guide](./troubleshoot) for common solutions.\n\n<br/>\n\n### Is MAS safe? How do I know it’s not malware?\n\nMAS is fully open-source, with over 140K stars on [GitHub][1] and millions of users worldwide. You can inspect the [batch files][8] in any text editor, or use this ai's for code review.\n\n[Gemini] - [Jules] - [Claude] - [ChatGPT] - [Grok] - [Perplexity] - [Qwen] - [GenSpark]\n\nIf you prefer, you can also perform manual activation — see [this guide](./manual_hwid_activation).\n\n<br/>\n\n### How can I remove HWID, Ohook, TSforge, KMS38, or Online KMS activations?\n\nMAS uses different activation methods, see the link below for removal instructions for each one:  \n\n- [❌Remove HWID](./hwid#how-to-remove-hwid)\n- [❌Remove Ohook](./ohook#how-to-remove-ohook)\n- [❌Remove TSforge](./tsforge#how-to-remove-tsforge)\n- [❌Remove KMS38](./kms38#how-to-remove-kms38)\n- [❌Remove Online KMS](./online_kms#how-to-remove-online-kms)\n\n<br/>\n\n::: danger Additional Information\n\n::: details Click here to see details\n\n- **HWID:**\nA digital license is stored on Microsoft's servers and tied to your hardware. It `cannot be removed` in the traditional sense. A major hardware change (like the motherboard) will invalidate it. To return to an unactivated state, you can install a generic KMS key. [Extended hwid details](./hwid#how-to-remove-hwid)\n\n\n- **Online KMS / Ohook / KMS38:**\nUse the corresponding `Uninstall` or `Remove` option within the [MAS script](./index#step2) menu, then run the \"Fix Licensing\" option from the Troubleshoot menu. [Online KMS Details](./online_kms#how-to-remove-online-kms) and [KMS38 details](./kms38#how-to-remove-kms38)\n\n\n- **TSforge:**\nThis method only appends data and doesn't install files. To reset it, simply run the `Fix Licensing` option from the Troubleshoot menu in the MAS script. [Ohook](./ohook#how-to-remove-ohook) [TSforge details](./tsforge#how-to-remove-tsforge)\n\n:::\n\n<br/>\n\n### Will I receive updates? How is it different from an official license?\n\nMAS does not interfere with Windows or Office updates. It functions in the same way as official licensing methods.\n\n### Will Microsoft ban my account if I use MAS?\n\n**No.**   \nWindows and Office piracy has existed for decades, and Microsoft has never banned accounts solely for this reason.\n\n### Is it legal? Can I face any consequences?\n\nBy using MAS, you are bypassing official licensing methods and not paying Microsoft, so technically it is not legal.\n\n\n- **Is it safe?**   \n**Home users:** Yes, it's safe.  \nPiracy has existed for decades, and Microsoft does not take action against individuals who pirate Windows or Office. Pursuing a home user over a $100–$200 license costs more in legal fees than it would recover and risks bad publicity.\n\nAt most, you may see notifications that your license is not genuine (with MAS, these notifications do not appear).\n\n**Businesses:** We do not recommend that businesses use MAS.  \nMicrosoft conducts audits on business entities to verify licenses. While small businesses might be less likely to face audits, the risk is still yours.\n\nIf you work in IT at a college or university, consult experienced senior staff about the chances of Microsoft audits at your institution.\n\n## Windows & Office Questions\n\n### How do I download the full Windows 10/11 Enterprise LTSC version?\n\nRefer to the [genuine installation media guide](./genuine-installation-media).\n\n<br/>\n\n### Can I upgrade Windows from Home to Pro?\n\nYes! In [MAS](./index#step2), select the “Change Windows Edition” option.\n\n<br/>\n\n### Will I lose my files when upgrading from Home to Pro?\n\nNo, your data will remain safe.\n\n<br/>\n\n### I changed my Windows edition, and now it’s deactivated — what now?\n\nJust run HWID activation again. Each Windows edition needs its own activation.\n\n<br/>\n\n### Is it safe to connect my Microsoft account after activating with MAS?\n\nAbsolutely, it’s safe.\n\n<br/>\n\n### Can I update Windows/Office after activation?\n\nYes — updates will work as usual.\n\n<br/>\n\n## Office-Specific\n\n#### Can I get the Copilot feature in Office with MAS activation?\nNo. [Copilot][2] is an additional plan that can be added to existing subscriptions of Microsoft 365.\n\n### I’m in Russia and can’t download Office. Any workaround?\n\nSee [this guide][3] for bypassing regional restrictions.\n\n<br/>\n\n### Can I activate Office 365?\n\nYes, with the `Ohook` activation. Note: MAS does not unlock server-side Office 365 features such as 1TB OneDrive, though almost all other features and 5GB storage in a free OneDrive account would work fine.\n\nSome features require signing in with a Microsoft account (free) in the Office apps.\n\n<br/>\n\n### Can I use Python in Excel after MAS activation?\n\nNo. [Python in Excel][4] is a cloud feature for Microsoft 365 subscribers.\n\n<br/>\n\n### I see an “Office is not genuine” banner — what should I do?\n\nSimply re-run the Ohook activation from the latest MAS version.\n\n<br/>\n\n## Other Common Questions\n\n<br/> \n\n### Can I delete the MAS folder after activation?\n\nYes, it’s safe to delete the MAS folder once activation is complete.\n\n<br/>\n\n### How does MAS activation actually work?\n\nSee the Docs section for detailed info.\n\n<br/>\n\n### Does MAS work for Windows Vista/7/8.1?\n\nYes, [TSforge](./tsforge), [Ohook](./ohook), and [Online KMS](./online_kms) options work for these versions.\n\n<br/>\n\n### How can I donate or contribute to the project?\nThis project doesn't accept donations and it's completely free. We don't earn money from donations, ads, or any other sources and we are commited to keeping it this way.\n\nIt's because it's a community project and involves many contributors, splitting donations is not practical, and also because profiting from piracy is not good.\n\n::: details Click here for more information\n\nHowever, if you would like to support and contribute us, you can do so in non-financial ways.\n\n**Coding**  \nAt the moment, we don't need any help with coding.\n\n[We will update this list as needed in the future.][7]\n\n:::\n\n::: danger Troubleshoot\n\n- Need any help regarding this — feel free to [**Contact Us**](./troubleshoot), We're happy to help.\n\n:::\n\n[1]: https://github.com/massgravel/Microsoft-Activation-Scripts\n[2]: https://www.microsoft.com/en-us/microsoft-365/microsoft-copilot\n[3]: https://gravesoft.dev/bypass-russian-geoblock\n[4]: https://support.microsoft.com/en-us/office/introduction-to-python-in-excel-55643c2e-ff56-4168-b1ce-9428c8308545\n[5]: https://github.com/NiREvil/windows-activation/discussions\n[6]: mailto:dianashariati.cl@gmail.com\n[7]: https://massgrave.dev/contribute\n[8]: https://github.com/massgravel/Microsoft-Activation-Scripts/blob/master/MAS/All-In-One-Version-KL/MAS_AIO.cmd\n[Gemini]: https://aistudio.google.com/prompt\n[Jules]: https://jules.google/\n[Claude]: https://claude.ai/chat/\n[ChatGPT]: https://chat.openai.com/auth/login\n[Grok]: https://grok.com\n[GenSpark]: https://www.genspark.ai/\n[Perplexity]: http://perplexity.ai/\n[Qwen]: https://chat.qwen.ai/\n"
  },
  {
    "path": "docs/wa/fix-wpa-registry.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'Fix WPA Registry'\ndescription: 'fix corrupt WPA registry keys which can cause to not work activation.'\ndate: 2025-01-07\neditLink: true\nhead:\n  - - meta\n    - name: keywords\n      content: broken system registry, sppsvc, wpa\n---\n\n## Fix corrupt system wpa registry \n\n\nIn some cases, the system may have corrupt WPA registry keys at `HKEY_LOCAL_MACHINE\\SYSTEM\\WPA` which can cause `sppsvc` to not work and activation to fail, it can also cause high CPU usage in `sppsvc` service.  \nThis registry key is protected by the kernel and cannot be deleted normally. That is why we need to follow some more steps below to clear it. \n\n## Steps To Fix WPA Registry\n\n-   Download https://github.com/asdcorp/rearm/archive/refs/heads/principalis.zip\n-   Extract this zip file.\n-   Copy `rearm.cmd` file to the root of the C drive, like `C:\\rearm.cmd`\n-   Open the command prompt as administrator and enter the below command  \n    `Shutdown /f /r /o /t 0`\n-   After the system restarts, select Troubleshoot > Advanced Options > Command Prompt.\n-   Enter the following command  \n    `C:\\rearm.cmd`\n-   If it says the command is not recognized, enter  \n    `bcdedit | find \"osdevice\"`\n-   It will show you the OS drive letter. Use that drive letter in the command, for example,  \n    `E:\\rearm.cmd`\n-   Wait for it to finish. When it's finished, you will be able to type in the command prompt, If not then wait.\n-   Once done, exit and then normally boot into Windows.\n\n## Video Tutorial\n\n<br/> \n\n<video class=\"video-js vjs-default-skin vjs-fluid\" controls preload=\"auto\" data-setup='{}'>\n  <source src=\"/Fix_WPA_Registry.mp4\" type=\"video/mp4\" />\n  <p class=\"vjs-no-js\"></p>\n</video>\n\n"
  },
  {
    "path": "docs/wa/fix_powershell.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'Fix PowerShell'\ndescription: 'Scripts may show an error related to Powershell not working.'\ndate: 2024-04-12\neditelink: true\n---\n\n# Fix PowerShell\n\n### Scripts may show an error related to Powershell not working.\n\n<br><br/>\n\n## ConstrainedLanguage\n\n-  If the script is showing `ConstrainedLanguage` in error output then open the `ConstrainedLanguage`\n- Open the <Badge type=\"danger\" text=\"Command Prompt\" /> as an <Badge type=\"info\" text=\"Administrator\" /> and ENTER:\n\n```reg\n\nreg delete \"HKLM\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Environment\" /v \"__PSLockdownPolicy\" /f\n\n```\n\n----\n\n> - Retry the script, the error should be fixed.\n\n::: danger Troubleshooting\n\nIf you have any questions, first review the [**FAQ section**](./faq) - your answer will most likely be there.\nIf your issue persists - [**contact us**](./troubleshoot).\n\n:::\n"
  },
  {
    "path": "docs/wa/fix_service.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'Fix Windows Services'\ndescription: 'if the script shows that -sppsvc service- is corrupt, Follow the steps'\ndate: 2024-02-05\neditLink: true\n---\n\n# Fix Windows Services\n\n### Corrupt service - sppsvc\n\n- Follow the steps below only if the script shows that `sppsvc` **service** is corrupt. Do not follow otherwise.\n- Download and extract the `sppsvc` registry zip file for [Windows 10][1] / [Windows 11][2]\n- Be careful, run these files only if they are matching with your Windows version, if not then ask for help [here](./troubleshoot).\n- Run the file, restart the system (using the restart button), and try the activation script again.\n- If the issue persists, contact us [here](./troubleshoot).\n\n\n## Corrupt service\n\n::: danger - Null\n\n- The script may show that `Null service is not running, script may crash...`\n- Follow these steps only if the script crashes after that.\n- Download and extract this Null service registry zip [file][3].\n- Run the file, restart the system (using the restart button), and try the activation script again.\n- If the issue persists, check if you are using `Comodo Antivirus` or any type of `sandboxing` security software. If so, temporarily disable it and run the script again.\n- If the issue persists, contact us [here](./troubleshoot).\n\n:::\n\n[1]: https://app.box.com/s/016qsq922nt3kgg744l07y115k9wph4b\n[2]: https://app.box.com/s/zq70tlbuo3iwxjd76ly26sz0gs2b98n0\n[3]: https://app.box.com/s/eczou3mvn6atronnd3nad2sqtb66h0lw\n"
  },
  {
    "path": "docs/wa/genuine-installation-media.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'Download Windows — Office'\ndescription: 'All download links available on our website lead to genuine files only'\ndate: 2025-01-05\neditLink: true\n---\n\n# Download Windows / Office\n\n::: info Note\n\n- All download links available on our website lead to genuine files only.\n- If your downloads are slow or keep interrupting, try using a download manager like [FDM]\n\n:::\n\n## Download Windows\n-  [Windows 11](./windows_11_links)\n-  [Windows 10](./windows_10_links)\n-  [Windows 10 / 11 Enterprise **LTSC**](./windows_ltsc_links)\n-  [Windows ARM64](./windows_arm_links)\n-  [Windows 8.1](./windows_8.1_links)\n-  [Windows 7](./windows_7_links)\n-  [Windows Vista][winvist]\n-  [Windows XP](./windows_xp_links)\n-  [Windows Server][winserv]\n-  Windows Insider [10-11][1] - [Server][2] / [Registration][3] is needed to download.\n\n## Download Office\n\nActivation with [MAS](./index#step2) is required after the installation of Office.\n\n-  [Office C2R Installers][4] 🤍 (O365, 2024, 2021, 2019, 2016, 2013)\n-  [Office C2R Custom Install][5] (O365, 2024, 2021, 2019, 2016)\n-  [Office MSI VL (Old versions)][winmsi] (2016, 2013, 2010, 2007)\n-  [Office For **Mac**][winmac]\n\n<hr/><br/>\n\n## FAQ\n\n#### Guides\n\n- [Clean Install Windows](./clean_install_windows)\n- [In-place Repair Upgrade (Keeping files and apps)](./in-place_repair_upgrade)\n- [Windows 11 on Unsupported Hardware](./clean_install_windows#windows-11-on-unsupported-hardware)\n- [Edition List During Windows Installation](./clean_install_windows#edition-list-during-windows-installation)\n- [Windows 10 Updates After End-Of-Life](./windows10_eol)\n\n#### Why are we hosting files on our server when we can download them from Microsoft?\n\n::: details Click here for info\n\nMicrosoft provides consumer ISOs for free on their [site][6], but business, enterprise, and older ISOs are behind paywalls such as [MVS][7] and [M365 Admin Center][8]. That's why we need to host files on our servers.\n\n:::\n\n#### How to ensure that these files are genuine?\n\n::: details Click here for info\n\nYou can check [here](./genuine-installation-media#verify-authenticity-of-files) on how to be sure that files are genuine by verifying the checksum available on the official Microsoft website.\n\n:::\n\n#### There are both consumer and business ISOs listed here. What is the difference between them?\n\n::: details Click here for info\n\nFor Windows 10/11 General Availability Channel (GAC) releases (i.e., Home and Pro), Microsoft produces two types of ISO files: Consumer and Business.\n\nThe Consumer ISO includes all editions such as Home, Pro, and Education, but excludes the Enterprise edition. In contrast, the Business ISO contains all editions except for the Home-level editions, and these ISO files come with a KMS key pre-installed (not activated) by default.\n\n:::\n\n#### How can I obtain an official Microsoft ISO that is not available here?\n\n::: details Click here for info\n\nYou can request the file [Discord][9].\n\n:::\n\n\n## Verify Authenticity Of Files\n\nYou can use the [file hashing method][10] to verify if a file is genuine. This can be done using tools like [7-Zip][11] (After installing 7-Zip, right-click on the ISO file and go to 7-Zip > SHA-256).\n\nThere are many places where you can find these checksums for verification. Examples can be found below.\n\n- [files.rg-adguard][12] (the most complete collection)\n- [MVS dump][13]\n- [genuine-iso-verifier][14]\n- [msdn.rg-adguard][15]\n- [sha1.rg-adguard][16]\n- Google\n\n#### Microsoft's Official free links for checksums:\n\n- [MVS][17]\n- [Windows 11][18]\n- [Windows 10][19]\n\n\n::: details More info on Official links!\n\n**MVS**\n- On MVS, you need to login and click on 'All Downloads' button and then search the product name.\n\n**MVS Limitations:**\n- They used to publish only SHA-1, but later started publishing SHA-1 and SHA-256 both and from 2022 they now publish only SHA-256.\n\n- However they removed all the SHA-1 data and as a result, old files checksums are simply not available on MVS site.\n\n- Also, around the time when they were publishing SHA-1 and SHA-256 both, they messed up some SHA-256 data, for example\n\n```shell\nIncorrect SHA-256 example\nSHA256: BDB3D0C5C933B201ECE736A172FB604AA5D7D0705DD75681F9FCC4B1EE79FAC8\nFile name: en-uk_windows_10_enterprise_ltsc_2019_x64_dvd_723dfbc1.iso\n```\n\n- So its useful only for the latest files.\n\n**Windows 11**\n- SHA-256 list will appear if you download the ISO file.\n\n**Windows 10**\n- Microsoft doesn't allow you to download ISO file directly if browser's useragent is Windows OS. So you need to change it to something else like Android or IOS and then download the ISO file to see the list.\n\n:::\n\n\n#### Video Tutorial\n\n<video class=\"video-js vjs-default-skin vjs-fluid\" controls preload=\"auto\" data-setup='{}'>\n  <source src=\"/how_to_verify_files.mp4\" type=\"video/mp4\" />\n  <p class=\"vjs-no-js\"></p>\n</video>\n\n::: danger Troubleshoot\n\n- If you need any help regarding this, first review the [**FAQ section**](./faq) — your answer will most likely be there.  \n\n- If your issue persists — You can [**Contact us**](./troubleshoot).\n\n:::\n\n[1]: https://www.microsoft.com/en-us/software-download/windowsinsiderpreviewiso\n[2]: https://www.microsoft.com/en-us/software-download/windowsinsiderpreviewserver\n[3]: https://www.microsoft.com/en-us/windowsinsider/getting-started\n[4]: https://gravesoft.dev/office_c2r_links\n[5]: https://gravesoft.dev/office_c2r_custom\n[6]: https://www.microsoft.com/en-us/software-download\n[7]: https://visualstudio.microsoft.com/subscriptions/\n[8]: https://learn.microsoft.com/en-us/licensing/vlsc-faqs-home-page\n[9]: https://discord.gg/FajfGaH3nD\n[10]: https://en.wikipedia.org/wiki/File_verification\n[11]: https://7-zip.org/\n[12]: https://files.rg-adguard.net/search\n[13]: https://awuctl.github.io/mvs/\n[14]: https://genuine-iso-verifier.weebly.com/\n[15]: https://msdn.rg-adguard.net/\n[16]: https://sha1.rg-adguard.net/\n[17]: https://my.visualstudio.com/Downloads\n[18]: https://www.microsoft.com/en-us/software-download/windows11\n[19]: https://www.microsoft.com/en-us/software-download/windows10\n[win11]: https://massgrave.dev/windows_11_links\n[win10]: https://massgrave.dev/windows_10_links\n[winen]: https://massgrave.dev/windows_ltsc_links\n[winarm]: https://massgrave.dev/windows_arm_links\n[win8]: https://massgrave.dev/windows_8.1_links\n[win7]: https://massgrave.dev/windows_7_links\n[winvist]: https://massgrave.dev/windows_vista__links\n[winxp]: https://massgrave.dev/windows_xp_links\n[winserv]: https://massgrave.dev/windows_server_links\n[winmsi]: https://massgrave.dev/office_msi_links\n[winmac]: https://massgrave.dev/office_for_mac\n[FDM]: https://www.freedownloadmanager.org\n"
  },
  {
    "path": "docs/wa/guide_links.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'Guide links'\ndescription: 'If you are facing any error, the script should tell you which guide you need to follow'\ndate: 2024-06-09\n---\n\n# Guides\n\n::: danger If you are facing any error\n\nThe script should tell you which guide you need to follow. If you are unsure, we suggest getting help from [here](./troubleshoot) instead of blindly following the guides.\n\n:::\n\n- [Windows 10 Updates After End-Of-Life](./windows10_eol)\n- [Office License Is Not Genuine](./office-license-is-not-genuine)\n- [Bypass Russian Geoblock][1]\n- [Fix WPA Registry](./fix-wpa-registry)\n- [Licensing Servers Issue](./licensing-servers-issue)\n- [Issues Due To Gaming Spoofers](./issues_due_to_gaming_spoofers)\n- [Fix Windows Services](./fix_service)\n- [Change Edition Issues](./change_edition_issues)\n- [Windows Evaluation Editions](./evaluation_editions)\n- [Fix Powershell](./fix_powershell)\n- [In-place Repair Upgrade](./in-place_repair_upgrade)\n- [Remove Malware](./remove_malware)\n- [Clean Install Windows](./clean_install_windows)\n\n<hr/>\n\n[1]: https://gravesoft.dev/bypass-russian-geoblock\n"
  },
  {
    "path": "docs/wa/hwid.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'HWID (digital license): Windows Activation Guide'\ndescription: 'Comprehensive open-source guide to safely activate Windows 10/11 using HWID in under 40 seconds. Includes troubleshooting tips and detailed comparisons.'\ndate: 2025-05-04\neditLink: true\nhead:\n  - - meta\n    - name: description\n      content: Safely activate Windows 10/11 using official open-source methods like HWID. Includes permanent and renewable options with full guides.\n  - - meta\n    - name: keywords\n      content: digital license generation without kms, windows activation, office activation, hwid, activate windows 11, activate office 2021, open-source tools\n  - - meta\n    - property: og:title\n      content: Safe and Permanent Activation for Windows\n  - - meta\n    - property: og:description\n      content: A full open-source guide to activating Windows 10/11 using reliable tools like HWID\n---\n\n# HWID Activation\n\n### Overview\n\n- How to use it? Please find the instructions [here](./index).\n- This activation method supports Windows 10/11 only.\n- This activation method does not store or modify any files in your system.\n- This activation method gives you permanent Windows activation for your system hardware.\n- All activations can be linked to a Microsoft account without any issues.\n- Once the system is activated, this activation cannot be removed because the license is stored on Microsoft's servers, not on the user's system. Microsoft checks the hardware ID (HWID), and if a license is found in their database, the system will automatically activate. This is how all digital licenses work.\n- Any significant changes to the hardware (such as a motherboard) may deactivate the system. It is possible to reactivate a system that was deactivated because of significant hardware changes, IF your activation, was linked to an online Microsoft account.\n- For activation to succeed, Internet connectivity must be enabled. If you are trying to activate without these conditions being met, then the system will auto-activate later when the conditions are met.\n- The following is required for Windows to reactivate itself after Windows reinstall:\n  - Internet connectivity is required. (Only at the time of activation)\n  - The system will auto-activate only if Retail (Consumer) media was used for installing Windows.\n  - The system will NOT auto-activate if VL (Business) media was used for the installation. In this case, the user will have to insert the generic Retail/OEM key corresponding to the Windows edition currently running to activate if the user doesn't want to use the script again. (Those keys can be found below on this page)\n\n## HWID History — How does it work?\n\n#### HWID 1 (Now defunct) (Summer of 2018 - Sep 26 2023)\n\n- In the official upgrade process from Windows 7 to Windows 10, if your copy of Windows 7 was activated, Microsoft provided a digital license for Windows 10 without any cost.\n- In the background, the upgrade process runs a file named gatherosstate.exe (available in Windows 10/11 ISO) and it checks the license of the current Windows installation. If it detected that it is activated, it generates a valid GenuineTicket.xml **ticket** which is sent to Microsoft and in return, MS authorizes a license.\n- So, if we can convince the gatherosstate.exe file that the conditions are met for ticket generation by fooling it, it will generate a valid ticket, which can be used to get the valid digital license.\n- How to convince gatherosstate.exe that Windows is activated?  \n  There are two methods for it.  \n  **1-** Place a [custom slc.dll][1] file beside gatherosstate.exe:\n  gatherosstate.exe uses the system's `C:\\Windows\\System32\\slc.dll` file to gather the system's info. If we place a custom slc.dll file beside gatherosstate.exe, it can send rubbish data to it, then it will simply accept it and generate a valid ticket.  \n  **2-** [Modify][2] the gatherosstate.exe file directly so that it doesn't check the system's activation status at all and create a valid ticket.\n- You can find the workings of this old method here: [MAS-Legacy-Methods][3]\n- Microsoft [made][4] server-side changes to their licensing servers to block the free upgrade, and with that server-side change, this method stopped working. To be clear, only new activation requests coming from new hardware were blocked, already established digital licenses with this method are fine.\n\n#### HWID 2 (Currently working) (03 Oct 2023 - Current)\n\n- When Microsoft stopped the free upgrade, it started requiring a genuine valid key in the ticket to authorize a digital license. In the new method, we use the Installation ID of a genuine, valid key. This gets accepted by the server and allows us to get a digital license for free. Check the manual activation process in below section to know how to make working universal tickets.\n\n<br/>\n\nNow a question, can Microsoft block the new requests or revoke already established digital licenses?\n\n- Revoking the licenses would be too extreme and will face many complications and create a risk of voiding valid licenses. However, they can very easily block the new activation requests for new hardware coming from the methods mentioned here.\n\n## Supported Products\n\n| Windows 10/11 Product Names           | EditionID                | Generic Retail/OEM/MAK Key    |\n| ------------------------------------- | ------------------------ | ----------------------------- |\n| Education                             | Education                | YNMGQ-8RYV3-4PGQ3-C8XTP-7CFBY |\n| Education N                           | EducationN               | 84NGF-MHBT6-FXBX8-QWJK7-DRR8H |\n| Enterprise                            | Enterprise               | XGVPP-NMH47-7TTHJ-W3FW7-8HV2C |\n| Enterprise N                          | EnterpriseN              | 3V6Q6-NQXCX-V8YXR-9QCYV-QPFCT |\n| Enterprise LTSB 2015                  | EnterpriseS              | FWN7H-PF93Q-4GGP8-M8RF3-MDWWW |\n| Enterprise LTSB 2016                  | EnterpriseS              | NK96Y-D9CD8-W44CQ-R8YTK-DYJWX |\n| Enterprise LTSC 2019                  | EnterpriseS              | 43TBQ-NH92J-XKTM7-KT3KK-P39PB |\n| Enterprise N LTSB 2015                | EnterpriseSN             | NTX6B-BRYC2-K6786-F6MVQ-M7V2X |\n| Enterprise N LTSB 2016                | EnterpriseSN             | 2DBW3-N2PJG-MVHW3-G7TDK-9HKR4 |\n| Home                                  | Core                     | YTMG3-N6DKC-DKB77-7M9GH-8HVX7 |\n| Home N                                | CoreN                    | 4CPRK-NM3K3-X6XXQ-RXX86-WXCHW |\n| Home China                            | CoreCountrySpecific      | N2434-X9D7W-8PF6X-8DV9T-8TYMD |\n| Home Single Language                  | CoreSingleLanguage       | BT79Q-G7N6G-PGBYW-4YWX6-6F4BT |\n| IoT Enterprise                        | IoTEnterprise            | XQQYW-NFFMW-XJPBH-K8732-CKFFD |\n| IoT Enterprise Subscription           | IoTEnterpriseK           | P8Q7T-WNK7X-PMFXY-VXHBG-RRK69 |\n| IoT Enterprise LTSC 2021              | IoTEnterpriseS           | QPM6N-7J2WJ-P88HH-P3YRH-YY74H |\n| IoT Enterprise LTSC 2024              | IoTEnterpriseS           | CGK42-GYN6Y-VD22B-BX98W-J8JXD |\n| IoT Enterprise LTSC Subscription 2024 | IoTEnterpriseSK          | N979K-XWD77-YW3GB-HBGH6-D32MH |\n| Pro                                   | Professional             | VK7JG-NPHTM-C97JM-9MPGT-3V66T |\n| Pro N                                 | ProfessionalN            | 2B87N-8KFHP-DKV6R-Y2C8J-PKCKT |\n| Pro Education                         | ProfessionalEducation    | 8PTT6-RNW4C-6V7J2-C2D3X-MHBPB |\n| Pro Education N                       | ProfessionalEducationN   | GJTYN-HDMQY-FRR76-HVGC7-QPF8P |\n| Pro for Workstations                  | ProfessionalWorkstation  | DXG7C-N36C4-C4HTG-X4T3X-2YV77 |\n| Pro N for Workstations                | ProfessionalWorkstationN | WYPNQ-8C467-V2W6J-TX4WX-WT2RQ |\n| S                                     | Cloud                    | V3WVW-N2PV2-CGWC3-34QGF-VMJ2C |\n| S N                                   | CloudN                   | NH9J3-68WK7-6FB93-4K3DF-DJ4F6 |\n| SE                                    | CloudEdition             | KY7PN-VR6RX-83W6Y-6DDYQ-T6R4W |\n| SE N                                  | CloudEditionN            | K9VKN-3BGWV-Y624W-MCRMQ-BHDCD |\n| Team                                  | PPIPro                   | XKCNC-J26Q9-KFHD2-FKTHY-KD72Y |\n\n<br/>\n\n::: tip Info\n\n- Systems in all architectures (x86, x64 and arm64) are supported.\n- Any evaluation version of Windows (i.e. 'EVAL' LTSB/C) [cannot be activated](/evaluation_editions) beyond the evaluation period. You can use TSforge option in MAS to reset the activation any given time.\n- IoTEnterpriseS (LTSC) 2021 key will be used to activate the unsupported EnterpriseS (LTSC) 2021 edition.\n- IoTEnterpriseS (LTSC) 2024 key will be used to activate the unsupported EnterpriseS (LTSC) 2024 edition.\n- Windows Server does not support HWID activation.\n- Enterprise multi-session (ServerRdsh) edition can be activated with only a key NJCF7-PW8QT-3324D-688JX-2YV66, but it does not support real digital license activation.\n\n:::\n\n<br/>\n\n## How to remove HWID\n\n- **HWID (Digital license) activation cannot be removed** because the license is stored in the Microsoft servers and not in the user's system.\n- Microsoft checks the hardware ID (HWID) and if a license is found in their database, the system will automatically activate. This is how the official digital license activation process works.\n\n**What if you still want to remove it?**\n\n- As explained above, you cannot remove it for your hardware, only major hardware change such as CPU, motherboard can remove the activation.\n\n**What if you just want to keep Windows in the unactivated stage?**\n\n- To do that, you can install the [KMS key](/kms38#supported-products) in the Windows settings activation page\n  Or\n- Change the edition using Change Windows edition option in MAS.\n- **Note:**\n  - Windows settings will instantly show that Windows is not activated but it usually takes 3 hours for the Activation Watermark to appear.\n  - These options will simply hide the HWID activation. If you reinstall Windows with the same edition or restore the default generic Retail/OEM keys, the system will automatically activate again if an Internet connection is found.\n\n<br/>\n\n### Command line Switches\n\n- Check [here - Command line switches](/command_line_switches).\n\n<br/>\n\n### Manual Activation\n\n- Check [here - Manual hwid activation](/manual_hwid_activation).\n\n<br/>\n\n### Manual Ticket Generation\n\nThis guide is for manually creating the same kind of tickets that are used in the MAS script.\n\n- Download the .cab file from the following official Microsoft link:  \n  https://download.microsoft.com/download/9/A/E/9AE69DD5-BA93-44E0-864E-180F5E700AB4/adk/Installers/14f4df8a2a7fc82a4f415cf6a341415d.cab\n- Find the file named `filf8377e82b29deadca67bc4858ed3fba9` (Size: 330 KB) and rename it to `gatherosstate.exe`.\n- Make a folder named `Files` in the root of the C: drive (`C:\\Files`) and copy the `gatherosstate.exe` file to that folder.\n- Make sure you have a working Internet connection.\n- Open Windows PowerShell as Administrator and enter the following commands.\n- Copy the entire block of code below and enter it in PowerShell to patch the `gatherosstate.exe` file. The patches are based on [GamersOsState][3].\n\n```yaml\n$bytes  = [System.IO.File]::ReadAllBytes(\"C:\\Files\\gatherosstate.exe\")\n$bytes[320] = 0xf8\n$bytes[321] = 0xfb\n$bytes[322] = 0x05\n$bytes[324] = 0x03\n$bytes[13672] = 0x25\n$bytes[13674] = 0x73\n$bytes[13676] = 0x3b\n$bytes[13678] = 0x00\n$bytes[13680] = 0x00\n$bytes[13682] = 0x00\n$bytes[13684] = 0x00\n$bytes[32748] = 0xe9\n$bytes[32749] = 0x9e\n$bytes[32750] = 0x00\n$bytes[32751] = 0x00\n$bytes[32752] = 0x00\n$bytes[32894] = 0x8b\n$bytes[32895] = 0x44\n$bytes[32897] = 0x64\n$bytes[32898] = 0x85\n$bytes[32899] = 0xc0\n$bytes[32900] = 0x0f\n$bytes[32901] = 0x85\n$bytes[32902] = 0x1c\n$bytes[32903] = 0x02\n$bytes[32904] = 0x00\n$bytes[32906] = 0xe9\n$bytes[32907] = 0x3c\n$bytes[32908] = 0x01\n$bytes[32909] = 0x00\n$bytes[32910] = 0x00\n$bytes[32911] = 0x85\n$bytes[32912] = 0xdb\n$bytes[32913] = 0x75\n$bytes[32914] = 0xeb\n$bytes[32915] = 0xe9\n$bytes[32916] = 0x69\n$bytes[32917] = 0xff\n$bytes[32918] = 0xff\n$bytes[32919] = 0xff\n$bytes[33094] = 0xe9\n$bytes[33095] = 0x80\n$bytes[33096] = 0x00\n$bytes[33097] = 0x00\n$bytes[33098] = 0x00\n$bytes[33449] = 0x64\n$bytes[33576] = 0x8d\n$bytes[33577] = 0x54\n$bytes[33579] = 0x24\n$bytes[33580] = 0xe9\n$bytes[33581] = 0x55\n$bytes[33582] = 0x01\n$bytes[33583] = 0x00\n$bytes[33584] = 0x00\n$bytes[33978] = 0xc3\n$bytes[34189] = 0x59\n$bytes[34190] = 0xeb\n$bytes[34191] = 0x28\n$bytes[34238] = 0xe9\n$bytes[34239] = 0x4f\n$bytes[34240] = 0x00\n$bytes[34241] = 0x00\n$bytes[34242] = 0x00\n$bytes[34346] = 0x24\n$bytes[34376] = 0xeb\n$bytes[34377] = 0x63\n[System.IO.File]::WriteAllBytes(\"C:\\Files\\gatherosstatemodified.exe\", $bytes)\n```\n\n- Right click on the newly created file, `gatherosstatemodified.exe`, click the \"Properties\" option and set the Compatibility mode to Windows XP SP3.\n- To generate the ticket using our modified `gatherosstate.exe`, run these commands:\n\n```\n$value = (Get-ItemProperty HKLM:\\SYSTEM\\CurrentControlSet\\Control\\ProductOptions).OSProductPfn\n\nC:\\Files\\gatherosstatemodified.exe /c Pfn=$value`;PKeyIID=465145217131314304264339481117862266242033457260311819664735280\n```\n\n- A GenuineTicket.xml file should be created in the `C:\\Files\\` folder.\n\n**Notes:**\n\n- There are two types of tickets: Lockbox and Downlevel. If the system is already activated, then the created ticket will be a Lockbox ticket. If not, it will be a Downlevel ticket.\n- To make the exact ticket used by the MAS script for HWID activation, make sure the system is already activated and change the time with the below PowerShell command. Then, start the ticket generation process according to the steps above.\\\n  `Set-TimeZone -Id \"UTC\"; $date=[datetime]\"2022/10/11 12:00\";while($true){set-date $date; start-sleep -milliseconds 10}`\n\n## Setup Preactivate\n\n- Check the Extract OEM option in the MAS `Extras` section if you want pre-activated Windows installation.\n- Further, read [here - OEM Folder](/oem-folder).\n\n<hr/>\n\n## Troubleshooting\n\n::: danger Troubleshooting\n\nIf you have any questions, first review the [**FAQ section**](./faq) - your answer will most likely be there.\nIf your issue persists - [**contact us**](./troubleshoot).\n\n:::\n\n[1]: https://github.com/asdcorp/Integrated_Patcher_3\n[2]: https://github.com/asdcorp/GamersOsState\n[3]: https://github.com/massgravel/MAS-Legacy-Methods\n[4]: https://devicepartner.microsoft.com/en-us/communications/comm-windows-ends-installation-path-for-free-windows-7-8-upgrade\n[5]: https://github.com/asdcorp/GamersOsState\n"
  },
  {
    "path": "docs/wa/in-place_repair_upgrade.md",
    "content": "# In-place Repair Upgrade\n\n\nIn-place repair upgrade using Windows ISO file is a good way to fix system errors. Here's how you can perform it.\n\n\n\n-   Download the Windows ISO, preferably from [MSDL][1] in the **same Windows language, and architecture**.\n\n    -   To check the installed Windows architecture, open Powershell as admin and enter,\n\n        ```\n\n\t\t(Get-ItemProperty \"HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Environment\").PROCESSOR_ARCHITECTURE\n\n\t\t```\n\n        AMD64/x64 means 64 Bit, x86 means 32 Bit\n\n    -   To check the installed Windows Language, enter this command,\n\n        ```\n\n\t\tdism /english /online /get-intl | find /i \"Default system UI language\"\n\n\t\t```\n\n\t\tAlternatively, you can use this command,\n\n\t\t```\n\n\t\t[Globalization.CultureInfo]::GetCultureInfo([Convert]::ToInt32((Get-ItemProperty \"HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Nls\\Language\").InstallLanguage, 16)).Name\n\n\t\t```\n\n    -   Note: If you are running the Enterprise LTSC edition, you will need to download that edition's ISO file. Don't download Evaluation version, that can't be activated.\n\n-  Right-click on the downloaded ISO file, Open With > Windows Explorer\n\n-  A new DVD drive will appear in Windows Explorer, which means the installation image has been mounted successfully.\n\n::: details Click here for info: Windows 11 on Unsupported Hardware\n\n- If you're using Windows 11 or upgrading from Windows 10, you may encounter errors due to unsupported hardware.\n\n- To resolve this, you need to install IoT Enterprise 24H2 (2024) edition which is [officially supported][2] on unsupported hardware.\n\n  - To do that, open the command prompt as admin and,\n\n  - Enter the below command if you are using normal Windows 11 24H2 ISO\n\n`reg add \"HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\" /v EditionID /d IoTEnterprise /f`\n\n  - Enter the below command if you are using Windows 11 LTSC 2024 ISO\n\n`reg add \"HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\" /v EditionID /d IoTEnterpriseS /f`\n\n- Now quickly run setup.exe as described below.\n\n:::\n\n-   Go into that DVD drive and run setup.exe, just continue until you reach the final confirmation screen.\n\n-   Make sure it says \"**Keep personal files and apps**\" on the final screen. Then you can continue the process and wait until it is done.\n\n<br/>\n\n::: danger Troubleshoot\n\n- If you need any help regarding this, first review the [**FAQ section**](./faq) — Your answer will most likely be there.\n\n- If you are not getting the option to keep files and apps, or the setup is showing any error — You can [**Contact us**](./troubleshoot).\n\n:::\n\n[1]: https://msdl.gravesoft.dev/\n[2]: https://learn.microsoft.com/en-us/windows/iot/iot-enterprise/Hardware/System_Requirements?tabs=Windows11LTSC#optional-minimum-requirements\n"
  },
  {
    "path": "docs/wa/index.md",
    "content": "---\nlayout: doc\noutline: deep\nlang: en-US\ndir: ltr\ntitle: 'All-in-One — Microsoft Activation Scripts'\ndescription: 'MAS: Microsoft Activation Script — Comprehensive open-source guide to safely activate Windows 10/11 and Office using HWID, KMS, TSforge, Ohook in under 40 seconds. Includes troubleshooting tips and detailed comparisons'\ndate: 2025-09-07\neditLink: true\nhead:\n  - - meta\n    - name: description\n      content: Safely activate Windows 10/11 and Microsoft Office using official open-source methods like HWID, KMS, TSforge, and more. Includes permanent and renewable options with full guides.\n  - - meta\n    - name: keywords\n      content: windows activation, office activation, hwid, kms, tsforge, ohook, kms38, digital license, activate windows 11, activate office 2021, open-source activation\n  - - meta\n    - property: og:title\n      content: Safe and Permanent Activation for Windows and Office\n  - - meta\n    - property: og:description\n      content: A full open-source guide to activating Windows 10/11 and Microsoft Office using reliable tools like HWID, KMS, and TSforge.\n---\n\n# Welcome to the ultimate guide for activating Windows and Office\n\n> All-in One, This comprehensive guide walks you through reliable, open-source methods — like HWID, KMS, TSforge, and more to activate your `Windows` and `Office` safely and permanently in under 40–seconds. Includes troubleshooting tips and detailed comparisons.\n\n<br/>\n\n::: tip Freedom to Dream\n\n::: details Why Freedom to Dream\n\nFreedom to Dream isn’t just a name, It’s the spirit behind this project, This isn’t only about activating Windows or Office.\nIt’s about breaking artificial limitations, and empowering every user—student, freelancer, or creator to unlock their full potential.\n\nWe believe everyone deserves access to essential tools, regardless of where they live or what they can afford.\nWhen your tools are free, your ideas are free, too.\n\nThis project reflects our mission to enable creativity, productivity, and ambition by removing digital barriers—so you can focus on what truly matters: your work, your goals, and your dreams.\n\n:::\n\n<br/>\n\n## Activation Methods Summary {#summary}\n\nFor a quick overview, here is a summary of the activation methods available:\n\n| Activation Type | Supported Product      | Activation Period                | Internet Needed?      | More Info               |\n| :-------------: | :--------------------- | :------------------------------- | :-------------------- | :---------------------- |\n|    **HWID**     | Windows 10-11          | Permanent                        | Yes                   | [Details](./hwid)       |\n|     **KMS**     | Windows 10-11          | 180 Days (Manual)                | Yes                   | [Details](./kms)        |\n|    **Ohook**    | Office                 | Permanent                        | No                    | [Details](./ohook)                     |\n|   **TSforge**   | Windows / ESU / Office | Permanent                        | Yes (on build 19041+) | [Details](./tsforge)    |\n|    **KMS38**    | Windows 10-11-Server   | Until 2038                       | No                    | [Details](./kms38)      |\n| **Online KMS**  | Windows / Office       | 180 Days (Lifetime with Renewal) | Yes                   | [Details](./online_kms) |\n\n<p style=\"text-align: center;\">\n  For a detailed comparison of all methods, check out the <a href=\"./chart\">Activation Methods Chart</a>.</p>\n\n<br/>\n\n# Method 1. Permanent Activation with HWID\n\nFor most users, the HWID <Badge type=\"info\" text=\"Hardware ID\" /> method is the simplest way to get a permanent digital license for Windows 10 and 11. \n\n<br/>\n\n## Step 1. Open PowerShell as Administrator\n\n### Option A: Using Search Bar <Badge type=\"danger\" text=\"Recommend\" />  \n1. Click on windows \"Start\" button or \"Search\" icon in the taskbar  \n2. Type `powershell`\n3. Select `Run as administrator` <br/>\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/9b27cd4b-21d8-4970-98bb-3c97010e09bf\" alt=\"open-powershell-as-admin\" width=\"540px\" />\n</p>\n\n<br/>\n\n::: tip  To run PowerShell\n\n::: details To view additional methods, please click here \n\n### Option B: Using Run Box\n\n1. Open the Run dialog box: Press `Win (⊞) + R` keys simultaneously  \n2. Type `powershell`\n3. Press `Ctrl + Shift + Enter` to run as administrator\n4. If prompted by User Account Control, click `Yes`\n\n<br/>\n\n### Option C: Using Power User Menu\n\n1. Right-click on the \"Start menu\" (or press `Win (⊞) + X`)\n2. Select \"Windows Terminal (Admin)\" on Windows 11 or \"Windows PowerShell (Admin)\" on Windows 10\n\n<br/>\n\nOr You can visit [this Link][1] to see 10 ways to run **PowerShell** And [this link][2] For Running CMD in your windows.\n\n:::\n\n<br/>\n\n## Step 2. Run the Activation Script {#step2}\n\nCopy the following command, paste it (via Right-click) into the PowerShell window and press `Enter` key\n\n<br/>\n\n::: code-group\n\n```powershell [For Windows 8, 10, 11]\nirm https://get.activated.win | iex\n```\n\n```powershell [For Windows 7 and later]\niex ((New-Object Net.WebClient).DownloadString('https://get.activated.win'))\n```\n\n```powershell [Script not launching]\niex (curl.exe -s --doh-url https://1.1.1.1/dns-query https://get.activated.win | Out-String)\n```\n\n:::\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/6b72787e-f5ad-47a2-ab2b-ae93de9f70bc\" alt=\"Paste command in PowerShell\" width=\"540px\" />\n</p>\n\n<br/>\n\nTo activate additional products such as Office for macOS, Visual Studio, RDS CALs, and Windows XP, check [here](./unsupported_products_activation).\n\n## Step 3. Choose the HWID Option\n\nA menu will appear in a new window. Press `1` number on your keyboard to select **HWID Activation** and wait a few moments for the process to complete.\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/8b119e05-d506-4c42-91cb-ac58c9a2f189\" alt=\"Select HWID Activation\" width=\"540px\" />\n</p>\n\n**Congratulations!** <Badge type=\"tip\" text=\"Done\" />\nYour Windows is now permanently activated with a digital license.\n\n<br/>\n\nTo check the activation status of \"Windows 10\" Navigate to:  \nSettings > Update & Security > Activation [^1]\n\nTo check the activation status of \"Windows 11\" Navigate to:  \nSettings > System > Activation [^2]\n\n<br/>\n\n::: info Note\n\n::: details Click here to see the details\n\n- **For Windows:** I personally use the **KMS method** [[see guides](./kms)] or [[Online KMS](./online_kms) for my Windows 10/11 activations. It's official, leaves no files on the system, and takes less than 3 minutes. If for some reason that fails, HWID is my go-to, as it's also official and file-less.\n- **For Office:** I use Ohook, or TSforge, The small differences are noted in the [summary table 👆🏿](#summary)\n\n:::\n\n::: info Note\n\n::: details Click here to see the details\n\n- The IRM command in PowerShell downloads a script from a specified URL, and the IEX command executes it.\n- Always double-check the URL before executing the command and verify the source is trustworthy when manually downloading files.\n- Be cautious, as some spread malware disguised as MAS by changing the URL in the IRM command.\n\n:::\n\n<br/>\n\n## How to Remove Activations\n\n::: danger Additional Information\n\n- **HWID:**\nA digital license is stored on Microsoft's servers and tied to your hardware. It `cannot be removed` in the traditional sense. A major hardware change (like the motherboard) will invalidate it. To return to an unactivated state, you can install a generic KMS key. [Extended hwid details](./hwid#how-to-remove-hwid)\n\n- **Online KMS / Ohook / KMS38:**\nUse the corresponding `Uninstall` or `Remove` option within the [MAS script](#step2) menu, then run the \"Fix Licensing\" option from the Troubleshoot menu. [Online KMS Details](./online_kms#how-to-remove-online-kms) and [KMS38 details](./kms38#how-to-remove-kms38)\n\n- **TSforge:**\nThis method only appends data and doesn't install files. To reset it, simply run the `Fix Licensing` option from the Troubleshoot menu in the MAS script. [Ohook](./ohook#how-to-remove-ohook) [TSforge details](./tsforge#how-to-remove-tsforge)\n\n:::\n\n<br/>\n\n::: info Supported Windows 10/11 Products for HWID\n\n::: details Click here to see products\n\n|      Windows 10/11 Product Names      |        EditionID         |  Generic Retail/OEM/MAK Key   |\n| :-----------------------------------: | :----------------------: | :---------------------------: |\n|               Education               |        Education         | YNMGQ-8RYV3-4PGQ3-C8XTP-7CFBY |\n|              Education N              |        EducationN        | 84NGF-MHBT6-FXBX8-QWJK7-DRR8H |\n|              Enterprise               |        Enterprise        | XGVPP-NMH47-7TTHJ-W3FW7-8HV2C |\n|             Enterprise N              |       EnterpriseN        | 3V6Q6-NQXCX-V8YXR-9QCYV-QPFCT |\n|         Enterprise LTSB 2015          |       EnterpriseS        | FWN7H-PF93Q-4GGP8-M8RF3-MDWWW |\n|         Enterprise LTSB 2016          |       EnterpriseS        | NK96Y-D9CD8-W44CQ-R8YTK-DYJWX |\n|         Enterprise LTSC 2019          |       EnterpriseS        | 43TBQ-NH92J-XKTM7-KT3KK-P39PB |\n|        Enterprise N LTSB 2015         |       EnterpriseSN       | NTX6B-BRYC2-K6786-F6MVQ-M7V2X |\n|        Enterprise N LTSB 2016         |       EnterpriseSN       | 2DBW3-N2PJG-MVHW3-G7TDK-9HKR4 |\n|                 Home                  |           Core           | YTMG3-N6DKC-DKB77-7M9GH-8HVX7 |\n|                Home N                 |          CoreN           | 4CPRK-NM3K3-X6XXQ-RXX86-WXCHW |\n|            Home China [^3]            |   CoreCountrySpecific    | N2434-X9D7W-8PF6X-8DV9T-8TYMD |\n|       Home Single Language [^4]       |    CoreSingleLanguage    | BT79Q-G7N6G-PGBYW-4YWX6-6F4BT |\n|            IoT Enterprise             |      IoTEnterprise       | XQQYW-NFFMW-XJPBH-K8732-CKFFD |\n|      IoT Enterprise Subscription      |      IoTEnterpriseK      | P8Q7T-WNK7X-PMFXY-VXHBG-RRK69 |\n|       IoT Enterprise LTSC 2021        |      IoTEnterpriseS      | QPM6N-7J2WJ-P88HH-P3YRH-YY74H |\n|       IoT Enterprise LTSC 2024        |      IoTEnterpriseS      | CGK42-GYN6Y-VD22B-BX98W-J8JXD |\n| IoT Enterprise LTSC Subscription 2024 |     IoTEnterpriseSK      | N979K-XWD77-YW3GB-HBGH6-D32MH |\n|                  Pro                  |       Professional       | VK7JG-NPHTM-C97JM-9MPGT-3V66T |\n|                 Pro N                 |      ProfessionalN       | 2B87N-8KFHP-DKV6R-Y2C8J-PKCKT |\n|             Pro Education             |  ProfessionalEducation   | 8PTT6-RNW4C-6V7J2-C2D3X-MHBPB |\n|            Pro Education N            |  ProfessionalEducationN  | GJTYN-HDMQY-FRR76-HVGC7-QPF8P |\n|       Pro for Workstations [^5]       | ProfessionalWorkstation  | DXG7C-N36C4-C4HTG-X4T3X-2YV77 |\n|      Pro N for Workstations [^6]      | ProfessionalWorkstationN | WYPNQ-8C467-V2W6J-TX4WX-WT2RQ |\n|                   S                   |          Cloud           | V3WVW-N2PV2-CGWC3-34QGF-VMJ2C |\n|                  S N                  |          CloudN          | NH9J3-68WK7-6FB93-4K3DF-DJ4F6 |\n|                  SE                   |       CloudEdition       | KY7PN-VR6RX-83W6Y-6DDYQ-T6R4W |\n|                 SE N                  |      CloudEditionN       | K9VKN-3BGWV-Y624W-MCRMQ-BHDCD |\n|                 Team                  |          PPIPro          | XKCNC-J26Q9-KFHD2-FKTHY-KD72Y |\n\n_A generic key is automatically applied by the script where needed._\n\n:::\n\n<hr/><br/>\n\n::: danger Troubleshoot\n\n- If you need any help regarding this, first review the [**FAQ section**](./faq) — your answer will most likely be there.  \n\n- If your issue persists — You can [**Contact us**](./troubleshoot).\n\n:::\n\n[^1]: To check the activation status of Windows 10, Navigate to <br/> Settings → Update & Security → Activation. <br/> You will see your activation status listed there. If Windows is activated, you should see \"Activated\" with a green checkmark.\n\n[^2]: To check the activation status of Windows 11, Navigate to <br/> Settings → System → Activation. <br/> The activation status will be displayed, Showing whether Windows is activated, along with details about the activation method and any linked Microsoft account.\n\n[^3]: Home China Country Specific version.\n\n[^4]: Home Single language version.\n\n[^5]: Professional for Workstations\n\n[^6]: Professional N for Workstations.\n\n[1]: https://www.minitool.com/news/open-windows-11-powershell.html\n[2]: https://www.minitool.com/news/open-command-prompt-windows-11.html\n[3]: https://github.com/NiREvil/windows-activation/discussions\n[4]: mailto:diana.clk01@gmail.com\n[rainbow]: https://github.com/NiREvil/vless/assets/126243832/1aca7f5d-6495-44b7-aced-072bae52f256\n"
  },
  {
    "path": "docs/wa/issues_due_to_gaming_spoofers.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'Issues Due To Gaming Spoofers'\ndescription: 'MAS activation may show the error related to -Incorrect ModuleId- Some gaming spoofers mess with Windows activation-related registry keys and because of that windows can not be activated'\ndate: 2021-02-11\neditLink: true\n---\n\n# Issues Due To Gaming Spoofers\n\n## Incorrect ModuleId\n\nMAS activation may show the error related to \"Incorrect ModuleId\". Some gaming spoofers mess with Windows activation-related registry keys and because of that windows can not be activated. To fix this, you just need to restore that corrupt registry key with default data.\n\n\n::: tip Tips\n\n- [Download][1] and run this registry file, and confirm all prompts.\n- Restart your system.\n- Run the activation in MAS and if the issue is still not resolved, connect with us [here](./troubleshoot).\n\n:::\n\n[1]: https://app.box.com/s/bwdlhknu66es69fooki1rlno9ppumfph\n"
  },
  {
    "path": "docs/wa/kms.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'Official KMS Activation Guide'\ndescription: 'Step-by-step guide to activating Windows using the official KMS method for volume licensing.'\ndate: 2025-05-04\neditLink: true\nhead:\n  - - meta\n    - name: description\n      content: Activate Windows 10, 11 and Microsoft Office safely using the KMS method. Official, renewable every 180 days, and file-free.\n  - - meta\n    - name: keywords\n      content: KMS, Windows activation, Office activation, Windows 10, Windows 11, volume license, activate Office 2021, digital license\n  - - meta\n    - property: og:title\n      content: Activate Windows Using the Official KMS Method\n  - - meta\n    - property: og:description\n      content: A complete guide to activating Windows using the secure, renewable KMS method.\n---\n\n# KMS Activation guide\n\n### Official KMS Activation Guide — 180 Days, Renewable\n\n> This guide walks you through activating Windows for <Badge type=\"tip\" text=\"180 Days\" /> using Microsoft’s official Key Management Service <Badge type=\"tip\" text=\"KMS\" /> method\n> \n> It is a safe and trusted activation approach for volume-licensed products, and can be renewed indefinitely.\n\n<br/>\n\n# Method 2. Activating Win for 180 days with KMS\n\n::: tip Prerequisites\n\n- A stable internet connection.\n- Administrator privileges for CMD on your computer\n\n:::\n\n<br/>\n\n## Step 1. Open Command Prompt as Administrator\n\n### Option A: Using Search Bar <Badge type=\"danger\" text=\"Recommend\" />\n\n1. Click the \"Start\" button or \"Search\" icon in the taskbar\n2. Type `cmd` or `Command Prompt`\n3. Select \"Run as administrator\"\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/4465a2d3-6c93-4ee1-bb63-94ab7b8e06ac\" alt=\"run-cmd-as-dmin\" width=\"580px\" />\n</p>\n\n::: tip To run CMD\n\n::: details For a view of alternative methods, please click here.\n\n### Option B: Using the Run box\n\n1. Open the Run Dialog box: Press `Win (⊞) + R` keys Simultaneously\n2. Type: `cmd` or `command prompt`\n3. press `Ctrl + Shift + Enter` to run as administrator\n4. If prompted by User Account Control, click `Yes`\n\n<br/>\n\n### Option C: Using Power User Menu\n\n1. Right-click the \"Start menu\"\n2. Select \"Windows Terminal (Admin)\" on Windows 11 or \"Windows PowerShell (Admin)\" on Windows 10.  \n\nOr You can visit [this Link][2] to see 8 ways to run **cmd**, And  [This Link][1] to see more than 10 ways For Running PowerShell on your windows.\n\n:::\n\n<br/>\n\n## Step 2. Install a Generic KMS Client Key\n\nIn the Command Prompt window, run the following command.  \nYou must replace `Your-License-Key` with the key from the table below that matches your Windows edition.\n\n```reg\nslmgr /ipk Your-License-Key\n```\n\n<br/>\n\n::: tip To find your Windows edition\n\n### Option A: Using keyboard shortcuts <Badge type=\"danger\" text=\"Recommend\" />\n\n1. Open the Run dialog box: Press `Win (⊞) + Pause/Break` keys Simultaneously\n2. This will open the \"About\" section in \"Settings\" directly. and you will see the Edition of your Windows under \"Windows specifications\"\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/647ef16b-9208-4ff3-a94b-825ffa99721f\" alt=\"about-system\" width=\"540px\" />\n</p>\n\n<br/>\n  \n::: details Click here to see more ways\n\n### Option B: Using System Settings\n\n1. Click the `🪟 Start` button and then click `⚙️ Settings`\n2. Click on `💻 System`\n3. Scroll down and click on `ℹ️ About`\n4. Under `Windows specifications`, you will see the Edition of your Windows\n\n<br/>\n\n### Option C: Using Run Box\n\n1. Open the Run dialog box: Press `Win (⊞) + R` keys Simultaneously\n2. Type `winver` or `msinfo32` or `ms-settings:about` and press Enter key\n3. A window will appear showing the Windows version and build number, Done✔️\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/f764797a-e07f-4c58-b932-bfe7b359a7bd\" alt=\"winver-command\" width=\"540px\" />\n</p>\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/4c7edc15-1c02-4d7b-ab5f-df70eaff8ad7\" alt=\"winver-response\" width=\"540px\" />\n</p><br/>\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/a6360712-0ad0-4be4-b0a4-01171d293d83\" alt=\"msinfo32-command\" width=\"540px\" />\n</p>\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/8592c1bd-4a1a-47c1-bd21-0eb17049db31\" alt=\"msinfo32-response\" width=\"540px\" />\n</p>\n\n<br/>\n  \n### Option D: Using CMD or PowerShell [^2]  \n1. Click on windows \"Start\" button or \"Search\" icon\n2. Type `cmd` or `Command Prompt`\n3. in running terminal, type: `systeminfo` or `systeminfo | findstr /B /C:\"OS Name\" /B /C:\"OS Version\"` and press \"Enter\" key\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/16e8f49a-0cec-4836-b841-0cbd9344fbb1\" alt=\"findstdr command\" width=\"540px\" />\n</p>\n\n<br/>\n\n### Option E: Using CMD like option D\n\n1. Also, run \"PowerShell\" or \"CMD\"\n2. Type `slmgr /dlv`, and press \"Enter\" key\n3. The `/dlv` command displays the detailed licensing information\n4. Notice the output displays \"Enterprise\" as seen in the following image:\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/86925e56-7cac-4b53-8ccf-6addcd799ece\" alt=\"slmgr-command\" width=\"540px\" />\n</p>\n\n:::\n\n<br/>\n\nPlease select one of the **\"license keys\"** from the list that \"matches your version of Windows\" and replace it (via Right-click) with the phrase `Your-License-Key` in the command.\n\n<br/>\n\n### Generic Volume License Keys <Badge type=\"danger\" text=\"GVLK\" />\n\n| Windows Edition               | GVLK Key         |\n| :---------------------------- | :--------------- |\n| TX9XD-98N7V-6WMQ6-BX7FG-H8Q99 | Home             |\n| 3KHY7-WNT83-DGQKR-F7HPR-844BM | Home N           |\n| 7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH | Home sl [^3]     |\n| PVMJN-6DFY6–9CCP6–7BKTT-D3WVR | Home cs [^4]     |\n| W269N-WFGWX-YVC9B-4J6C9-T83GX | Pro              |\n| MH37W-N47XK-V7XM9-C7227-GCQG9 | Pro N            |\n| YNMGQ-8RYV3-4PGQ3-C8XTP-7CFBY | Education        |\n| 84NGF-MHBT6-FXBX8-QWJK7-DRR8H | Education N      |\n| NW6C2-QMPVW-D7KKK-3GKT6-VCFB2 | Pro Education    |\n| 2WH4N-8QGBV-H22JP-CT43Q-MDWWJ | Pro Education N  |\n| DXG7C-N36C4-C4HTG-X4T3X-2YV77 | Pro for W [^5]   |\n| WYPNQ-8C467-V2W6J-TX4WX-WT2RQ | Pro N for W [^6] |\n| NPPR9-FWDCX-D2C8J-H872K-2YT43 | Enterprise       |\n| DPH2V-TTNVB-4X9Q3-TJR4H-KHJW4 | Enterprise N     |\n| XKCNC-J26Q9-KFHD2-FKTHY-KD72Y | Team             |\n| V3WVW-N2PV2-CGWC3-34QGF-VMJ2C | S                |\n| KY7PN-VR6RX-83W6Y-6DDYQ-T6R4W | SE               |\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/d5d93702-7865-4552-85d0-6916b1331bc0\" alt=\"Install-KMS-Key\" width=\"540px\" />\n</p>\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/50c23cad-7690-49fb-bf1c-d1c7cc66f0fe\" alt=\"install-KMS-keyy\" width=\"540px\" />\n</p>\n\n<br/>\n \n::: details An alternative license keys\n\n|            **Key**            |  **Version**   |\n| :---------------------------: | :------------: |\n| TX9XD-98N7V-6WMQ6-BX7FG-H8Q99 |      Home      |\n| 3KHY7-WNT83-DGQKR-F7HPR-844BM |     Home N     |\n| 7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH |    Home sl     |\n| PVMJN-6DFY6–9CCP6–7BKTT-D3WVR |    Home cs     |\n| W269N-WFGWX-YVC9B-4J6C9-T83GX |  Professional  |\n| MH37W-N47XK-V7XM9-C7227-GCQG9 | Professional N |\n| NW6C2-QMPVW-D7KKK-3GKT6-VCFB2 |   Education    |\n| 2WH4N-8QGBV-H22JP-CT43Q-MDWWJ |  Education N   |\n| NPPR9-FWDCX-D2C8J-H872K-2YT43 |   Enterprise   |\n| DPH2V-TTNVB-4X9Q3-TJR4H-KHJW4 |  Enterprise N  |\n\n:::\n\n<br/>\n\n## Step 3. Set the KMS Server Address\n\nNext, point your system to a public KMS server. Run this command:\n\n```reg\nslmgr /skms kms8.msguides.com\n```\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/edd0835f-c314-4ef8-a87d-a33e29f3f7c0\" alt=\"set-kms-server\" width=\"580px\" />\n</p>\n\n<br/>\n\n## Step 4. Activate Windows\n\nFinally, trigger the activation by running command:\n\n```reg\nslmgr /ato\n```\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/95e014e5-8946-4036-84ca-77ebb6122b1b\" alt=\"active-windows\" width=\"580px\" />\n</p>\n\n<br/>\n\n## Step 5. Check Activation Status\n\n**You're all set!!** <Badge type=\"danger\" text=\"Done\" />\n\nTo check the activation status of \"Windows 10\" Navigate to:  \nSettings > Update & Security > Activation. [^7]\n\nTo check the activation status of \"Windows 11\" Navigate to:  \nSettings > System > Activation. [^8]\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/da52f1bb-79c9-45db-bade-a0f56cd0a739\" alt=\"activated\" width=\"580px\" />\n</p>\n\n<hr/><br/>\n\n::: danger Troubleshoot\n\n**Error 0xC004F074:** This usually means your internet connection is unstable or the server is busy. Ensure you are online and try the `slmgr /ato` command again. \n\n<br/>\n\n**Method Not Working?** If you're still having trouble, try the **HWID method** from the [Main guide](./index#step2). or [Online KMS](./online_kms).\n\n<br/>\n\nIf you need any help regarding this, first review the [**FAQ section**](./faq) — your answer will most likely be there.  \n\nIf your issue persists — You can [**Contact us**](./troubleshoot).\n\n:::\n\n<h3 align=\"center\">Be curious 🪐🩶</h3>\n\n<br/><br/>\n\n## About Hotkeys <Badge type=\"danger\" text=\"For Enthusiasts\" />\n\n::: details Use the hotkeys to open default programs in the Win+X Menu\n\n**Power user menu** is a brief menu listing some advanced system tools like event viewer, device manager, disk management, computer management, task manager, etc.  \nSo, you can quickly access those tools through the Power user menu.\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/7fa52188-2ac2-4b4d-9600-cf3f92e11d3d\" alt=\"windows-plus-x-menu\" width=\"460px\" />\n</p><br/>\n  \nThe default programs in the Power User Menu have a corresponding hotkey. Familiarity with the hotkeys of common programs can save a lot of time and improve efficiency.  \nFor example:\n\n- Press `Win (⊞) + X` opens the **Power User Menu** (Win+X Menu).\n- The second keypress (e.g., `F`, `B`, `U`) selects the corresponding program.\n- For shutdown/restart options, `U` opens the submenu, followed by `I`, `S`, `U`, or press `R` for reatart system.\n\nThe following are the hotkeys corresponding to each program:\n\n| Keyboard Shortcut            | Program                  |\n| ---------------------------- | ------------------------ |\n| `Windows + X`, then `F`      | Apps and Features        |\n| `Windows + X`, then `B`      | Mobility Center          |\n| `Windows + X`, then `O`      | Power Options            |\n| `Windows + X`, then `V`      | Event Viewer             |\n| `Windows + X`, then `Y`      | System                   |\n| `Windows + X`, then `M`      | Device Manager           |\n| `Windows + X`, then `W`      | Network Connections      |\n| `Windows + X`, then `K`      | Disk Management          |\n| `Windows + X`, then `G`      | Computer Management      |\n| `Windows + X`, then `A`      | Windows Terminal (Admin) |\n| `Windows + X`, then `T`      | Task Manager             |\n| `Windows + X`, then `N`      | Settings                 |\n| `Windows + X`, then `E`      | File Explorer            |\n| `Windows + X`, then `S`      | Search                   |\n| `Windows + X`, then `R`      | Run                      |\n| `Windows + X`, then `U`, `I` | Sign out                 |\n| `Windows + X`, then `U`, `S` | Sleep                    |\n| `Windows + X`, then `U`, `U` | Shut Down                |\n| `Windows + X`, then `U`, `R` | Restart                  |\n| `Windows + X`, then `D`      | Desktop                  |\n\n:::\n\n[^1]: 10 Ways to run PowerShell in windows [read here][1].\n\n[^2]: Another easiest way to run **PowerShell** is **Using Power User Menu**. <br/> - 1. **Right-click** the **Windows Start** icon on the Taskbar to open the menu containing shortcuts to frequently used tools. Also you can open this menu with **`Win (⊞) + x`**. <br/> - 2. Select **Windows Terminal (admin)** at windows 11 Or **Windows PowerShell (admin)** at Windows 10.\n\n[^3]: Home Single language version.\n\n[^4]: Home Country Specific version.\n\n[^5]: Professional for Workstations.\n\n[^6]: Professional N for Workstations.\n\n[^7]: To check the activation status of Windows 10, navigate to <br/> Settings → Update & Security → Activation. <br/> You will see your activation status listed there. If Windows is activated, you should see \"Activated\" with a green checkmark.\n\n[^8]: To check the activation status of Windows 11, Navigate to <br/> Settings → System → Activation. <br/> The activation status will be displayed, showing whether Windows is activated, along with details about the activation method and any linked Microsoft account.\n\n[1]: https://www.minitool.com/news/open-windows-11-powershell.html\n[2]: https://www.minitool.com/news/open-command-prompt-windows-11.html\n[3]: https://github.com/NiREvil/windows-activation/discussions/\n[4]: mailto:diana.clk01@gmail.com\n"
  },
  {
    "path": "docs/wa/kms38.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'KMS38 Activation'\ndescription: 'Discover KMS38 Activation – a secure, open-source solution for activating Windows and Office products.'\ndate: 2025-04-06\neditLink: true\n---\n\n# KMS38 Activation\n\n> Discover KMS38 Activation – a secure, open-source solution for activating Windows and Office products.\n>\n> KMS38 provides offline activation for Windows 10/11 and Server (build 14393+) with validity until 2038, without leaving any files on your system.\n>\n> Learn how this clever method extends Microsoft's KMS technology for permanent offline activation.\n\n::: tip Overview\n\n- This activation method activates Windows 10/11 and Windows Server (14393 and later builds), until January 19, 2038, 03:14:07 UTC.\n- This activation method does not store any files on the system.\n- This activation method works offline.\n- Unlike HWID and Online KMS activation options, KMS38 does not match with any official activation method.\n\n:::\n\n## How does it work?\n\n- In a genuine [KMS][1] activation environment, activation lasts a maximum of up to 180 days. This is done using a valid license and server setup.\n  - In the Windows major upgrade process, the system uses `gatherosstate.exe` to carry over the remaining KMS activation period. It does this by creating a ticket that can be used offline.\n\n- The trick is that we can fool the `gatherosstate.exe` about the remaining KMS activation period and manually put the desired period maximum up to January 19, 2038, 03:14:07 UTC.\n\n- **Why is it limited to the year 2038?**\n  - This is due to the [Y2K38 problem][2]. This date (19 January 2038, 03:14:07 UTC) is the maximum value that can fit into a signed 32 bit integer.\n\n- **How can we convince the gatherosstate.exe?**\n  - There are two methods for it.\n    - **1-** Place a [custom slc.dll][3] file beside gatherosstate.exe: gatherosstate.exe uses the system's `C:\\Windows\\System32\\slc.dll` file to gather the system's info. If we place a custom slc.dll file beside gatherosstate.exe which can send the rubbish data to it, then it will simply accept it and generate a valid ticket allowing activation up to January 19, 2038, 03:14:07 UTC.\n    - **2-** [Modify][4] the gatherosstate.exe file itself so that it doesn't check the system's activation status and we can put the activation period as we wish.\n\n ### Important\n\n::: important **To be Clear,**\n\n- we are **not modifying/patching any on-board system file** to get the ticket.\n- Gatherosstate.exe is a part of the ISO file and not available in C drive system files. The system's slc.dll file is not touched; instead, we use custom slc.dll only for a brief moment of ticket generation.\n  - Latest MAS doesn't use any of these methods; instead, it uses ready-to-use Universal Tickets (check below for manual activation info).\n    - **Q:** Can Microsoft block this kind of activation?\n    - **A:** Not directly. They could only update Clipup to allow for a maximum activation period of 180 days. Not much besides that can be done on their part. The tickets are not sent to Microsoft at all, so they can't block them or take action directly.\n   \n:::\n\n## Supported Products\n\n### Windows 10 / 11\n\n|                     Product Names                     |        EditionID         |  Generic Volume License Key   |\n| :---------------------------------------------------: | :----------------------: | :---------------------------: |\n|                       Education                       |        Education         | NW6C2-QMPVW-D7KKK-3GKT6-VCFB2 |\n|                      Education N                      |        EducationN        | 2WH4N-8QGBV-H22JP-CT43Q-MDWWJ |\n|                      Enterprise                       |        Enterprise        | NPPR9-FWDCX-D2C8J-H872K-2YT43 |\n|                     Enterprise N                      |       EnterpriseN        | DPH2V-TTNVB-4X9Q3-TJR4H-KHJW4 |\n|                     Enterprise G                      |       EnterpriseG        | YYVX9-NTFWV-6MDM3-9PT4T-4M68B |\n|                    Enterprise G N                     |       EnterpriseGN       | 44RPN-FTY23-9VTTB-MP9BX-T84FV |\n|                 Enterprise LTSB 2016                  |       EnterpriseS        | DCPHK-NFMTC-H88MJ-PFHPY-QJ4BJ |\n|                 Enterprise LTSC 2019                  |       EnterpriseS        | M7XTQ-FN8P6-TTKYV-9D4CC-J462D |\n|                 Enterprise LTSC 2021                  |       EnterpriseS        | M7XTQ-FN8P6-TTKYV-9D4CC-J462D |\n|                 Enterprise LTSC 2024                  |       EnterpriseS        | M7XTQ-FN8P6-TTKYV-9D4CC-J462D |\n|                Enterprise N LTSB 2016                 |       EnterpriseSN       | QFFDN-GRT3P-VKWWX-X7T3R-8B639 |\n|                Enterprise N LTSC 2019                 |       EnterpriseSN       | 92NFX-8DJQP-P6BBQ-THF9C-7CG2H |\n|                Enterprise N LTSC 2021                 |       EnterpriseSN       | 92NFX-8DJQP-P6BBQ-THF9C-7CG2H |\n|                Enterprise N LTSC 2024                 |       EnterpriseSN       | 92NFX-8DJQP-P6BBQ-THF9C-7CG2H |\n| IoT Enterprise LTSC 2021 <br/> (19044.2788 and later) |      IoTEnterpriseS      | KBN8V-HFGQ4-MGXVD-347P6-PDQGT |\n|               IoT Enterprise LTSC 2024                |      IoTEnterpriseS      | KBN8V-HFGQ4-MGXVD-347P6-PDQGT |\n|                         Home                          |           Core           | TX9XD-98N7V-6WMQ6-BX7FG-H8Q99 |\n|                        Home N                         |          CoreN           | 3KHY7-WNT83-DGQKR-F7HPR-844BM |\n|                      Home China                       |   CoreCountrySpecific    | PVMJN-6DFY6-9CCP6-7BKTT-D3WVR |\n|                 Home Single Language                  |    CoreSingleLanguage    | 7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH |\n|                         Lean                          |          CloudE          | NBTWJ-3DR69-3C4V8-C26MC-GQ9M6 |\n|   Enterprise multi-session <br/> (17763 and later)    |        ServerRdsh        | CPWHC-NT2C7-VYW78-DHDB2-PG3GK |\n|   Enterprise multi-session <br/> (17134 and before)   |        ServerRdsh        | 7NBT4-WGBQX-MP4H7-QXFF8-YP3KX |\n|                          Pro                          |       Professional       | W269N-WFGWX-YVC9B-4J6C9-T83GX |\n|                         Pro N                         |      ProfessionalN       | MH37W-N47XK-V7XM9-C7227-GCQG9 |\n|                     Pro Education                     |  ProfessionalEducation   | 6TP4R-GNPTD-KYYHQ-7B7DP-J447Y |\n|                    Pro Education N                    |  ProfessionalEducationN  | YVWGF-BXNMC-HTQYQ-CPQ99-66QFC |\n|                 Pro for Workstations                  | ProfessionalWorkstation  | NRG8B-VKK3Q-CXVCJ-9G2XF-6Q84J |\n|                Pro N for Workstations                 | ProfessionalWorkstationN | 9FNHH-K3HBT-3W4TD-6383H-6XYWF |\n|                          SE                           |       CloudEdition       | 37D7F-N49CB-WQR8W-TBJ73-FM8RX |\n|                         SE N                          |      CloudEditionN       | 6XN7V-PCBDC-BDBRH-8DQY7-G6R44 |\n\n<br/>\n\n### Windows Server 2025 (LTSC)\n\n|            Product Names             |    EditionID     |  Generic Volume License Key   |\n| :----------------------------------: | :--------------: | :---------------------------: |\n|     Windows Server 2025 Standard     |  ServerStandard  | TVRH6-WHNXV-R9WG3-9XRFY-MY832 |\n|    Windows Server 2025 Datacenter    | ServerDatacenter | D764K-2NDRG-47T6Q-P8T8W-YP6DF |\n|    Windows Server 2025 Azure Core    |  ServerAzureCor  | FCNV3-279Q9-BQB46-FTKXX-9HPRH |\n| Windows Server 2025 Azure Datacenter |  ServerTurbine   | XGN3F-F394H-FD2MY-PP6FD-8MCRC |\n\n<br/>\n\n### Windows Server 2022 (LTSC)\n\n|            Product Names             |    EditionID     |  Generic Volume License Key   |\n| :----------------------------------: | :--------------: | :---------------------------: |\n|    Windows Server 2022 Datacenter    | ServerDatacenter | WX4NM-KYWYW-QJJR4-XV3QB-6VM33 |\n|     Windows Server 2022 Standard     |  ServerStandard  | VDYBN-27WPP-V4HQT-9VMD4-VMK7H |\n|    Windows Server 2022 Azure Core    |  ServerAzureCor  | 6N379-GGTMK-23C6M-XVVTC-CKFRQ |\n| Windows Server 2022 Azure Datacenter |  ServerTurbine   | NTBV8-9K7Q8-V27C6-M2BTV-KHMXV |\n\n<br/>\n\n### Windows Server 2019 (LTSC)\n\n|         Product Names          |    EditionID     |  Generic Volume License Key   |\n| :----------------------------: | :--------------: | :---------------------------: |\n| Windows Server 2019 Datacenter | ServerDatacenter | WMDGN-G9PQG-XVVXX-R3X43-63DFG |\n|  Windows Server 2019 Standard  |  ServerStandard  | N69G4-B89J2-4G8F4-WWYCC-J464C |\n| Windows Server 2019 Essentials |  ServerSolution  | WVDHN-86M7X-466P6-VHXV7-YY726 |\n| Windows Server 2019 Azure Core |  ServerAzureCor  | FDNH6-VW9RW-BXPJ7-4XTYG-239TB |\n|   Windows Server 2019 ARM64    |   ServerARM64    | GRFBW-QNDC4-6QBHG-CCK3B-2PR88 |\n\n<br/>\n\n### Windows Server 2016 (LTSC)\n\n| Product Names                     | EditionID          | Generic Volume License Key    |\n| --------------------------------- | ------------------ | ----------------------------- |\n| Windows Server 2016 ARM64         | ServerARM64        | K9FYF-G6NCK-73M32-XMVPY-F9DRR |\n| Windows Server 2016 Datacenter    | ServerDatacenter   | CB7KF-BWN84-R7R2Y-793K2-8XDDG |\n| Windows Server 2016 Standard      | ServerStandard     | WC2BQ-8NRM3-FDDYY-2BFGV-KHKQY |\n| Windows Server 2016 Essentials    | ServerSolution     | JCKRF-N37P4-C2D82-9YXRT-4M63B |\n| Windows Server 2016 Cloud Storage | ServerCloudStorage | QN4C6-GBJD2-FB422-GHWJK-GJG2R |\n| Windows Server 2016 Azure Core    | ServerAzureCor     | VP34G-4NPPG-79JTQ-864T4-R3MQX |\n\n<br/>\n\n### Windows Server 23H2 (Annual Channel)\n\n| Product Names             | EditionID        | Generic Volume License Key    |\n| ------------------------- | ---------------- | ----------------------------- |\n| Windows Server Datacenter | ServerDatacenter | WX4NM-KYWYW-QJJR4-XV3QB-6VM33 |\n\n<br/>\n\n### Windows Server 20H2, 2004, 1909, 1903, and 1809 (Semi-Annual Channel)\n\n| Product Names             | EditionID            | Generic Volume License Key    |\n| ------------------------- | -------------------- | ----------------------------- |\n| Windows Server Datacenter | ServerDatacenterACor | 6NMRW-2C8FM-D24W7-TQWMY-CWH2D |\n| Windows Server Standard   | ServerStandardACor   | N2KJX-J94YW-TQVFB-DG9YT-724CC |\n\n<br/>\n\n### Windows Server 1803 (Semi-Annual Channel)\n\n| Product Names             | EditionID            | Generic Volume License Key    |\n| ------------------------- | -------------------- | ----------------------------- |\n| Windows Server Datacenter | ServerDatacenterACor | 2HXDN-KRXHB-GPYC7-YCKFJ-7FVDG |\n| Windows Server Standard   | ServerStandardACor   | PTXN8-JFHJM-4WC78-MPCBR-9W4KR |\n\n<br/>\n\n### Windows Server 1709 (Semi-Annual Channel)\n\n| Product Names             | EditionID            | Generic Volume License Key    |\n| ------------------------- | -------------------- | ----------------------------- |\n| Windows Server Datacenter | ServerDatacenterACor | 6Y6KB-N82V8-D8CQV-23MJW-BWTG6 |\n| Windows Server Standard   | ServerStandardACor   | DPCNP-XQFKJ-BJF7R-FRC8D-GF6G4 |\n\n<br/>\n\n::: tip Note\n\n- Systems in all architectures (x86, x64 and arm64) are supported.\n- Any evaluation version of Windows (i.e. 'EVAL' LTSB/C) beyond the evaluation period. You can use the TSforge option in MAS to reset the activation at any time.\n- KMS38 only supports Windows/server version 14393 (1607) and newer versions.\n- Initial release (19044.1288) of Iot LTSC 2021 doesn't support KMS license and it was added later in update 19044.2788.\n- Server Azure Datacenter (ServerTurbine) edition does not support activation on non-azure systems.\n\n:::\n\n## How to remove kms38\n\n::: danger How to remove KMS38\n\n- In AEG, go to KMS38 Activation and apply the Remove KM38 Protection option.\n- After that, In MAS, go to Troubleshoot and apply the Fix Licensing option.\n  - Done ✔️\n\n:::\n\n## KMS38 - Server Cor/Acor\n\n- Windows Server Cor/Acor (No GUI) editions don't have the `clipup.exe` file.\n- To KMS38 activate it, you need to download the `ClipUp.exe` file from this link [app.box.com/s/][5].  \n   `File: ClipUp.exe`  \n   `SHA-256: 0d6e9f6bbd0321eda149658d96040cb4f79e0bd93ba60061f25b28fecbf4d4ef`  \n   This file has digital signatures that can be verified. You can also get this file from the official [Windows Server 2016 x64 RTM ISO.download][6].\n- Put the `ClipUp.exe` file beside the KMS38 Activation script. That would be either `MAS_AIO.cmd` or `KMS38_Activation.cmd`  \n   The activation script will check for `ClipUp.exe` in the current folder (from where the script is running) and will use it accordingly.\n\n### KMS38 Protection\n\n- KMS38 Activation is vulnerable to unintended replacement by a 180-Day KMS Activator.\n- From MAS 1.7, the script will enable KMS38 protection by default.\n\n- If you are going to use KMS_VL_ALL by abbodi1406 or [AEG][7] (Online KMS option) for **Office activation**, then you can choose to remove this protection.\n- Below is the explanation for how the script protect KMS38.\n- In the KMS activation method, Windows first checks the KMS IP registered as a specific KMS, and if that is not defined, then it checks the Global KMS IP.\n  - Another fact is that if Localhost (IP range 127.0.0.0/8) is defined as the KMS IP in Windows 8 and later OS, then Windows will not accept it as a valid KMS IP.\n  - This script simply utilizes the above facts to protect the KMS38 activation from being overwritten by any alternative 'normal' 180-Day KMS Activation, and at the same time, that KMS activator can be used for Office activation.\n  - Script steps\n  - Set the Windows edition-specific KMS IP to Localhost (127.0.0.2)\n  - Protect the below Registry from edit and delete  \n    `HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\SoftwareProtectionPlatform\\55c92734-d682-4d71-983e-d6ec3f16059f\\XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX\\`\n- Done ✔️\n\n----\n\n::: danger Troubleshooting\n\nIf you have any questions, first review the [**FAQ section**](./faq) - your answer will most likely be there.\nIf your issue persists - [**Contact us**](./troubleshoot).\n\n:::\n\n\n[1]: https://docs.microsoft.com/en-us/previous-versions/tn-archive/ee939272(v=technet.10)?redirectedfrom=MSDN#kms-overview\n[2]: https://en.wikipedia.org/wiki/Year_2038_problem\n[3]: https://github.com/asdcorp/Integrated_Patcher_3\n[4]: https://github.com/asdcorp/GamersOsState\n[5]: https://app.box.com/s/cwoxub9tqyowhnyva6ign6qnogb6vk0o\n[6]: https://download.microsoft.com/download/1/6/F/16FA20E6-4662-482A-920B-1A45CF5AAE3C/14393.0.160715-1616.RS1_RELEASE_SERVER_EVAL_X64FRE_EN-US.ISO\n[7]: https://github.com/NiREvil/windows-activation\n"
  },
  {
    "path": "docs/wa/licensing-servers-issue.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'Licensing Servers Issue'\ndescription: 'In some cases, HWID activation may fail because the system couldnt connect to HWID licensing servers'\ndate: 2023-02-11\neditLink: true\n---\n\n# Licensing Servers Issue\n\nIn some cases, **HWID activation** may fail because the system couldn't connect to HWID licensing servers. The activation script will inform you about this if that is the case.\nWe suggest following the below guide only when the script tells you to do so.\n\n<hr/><br/>\n\n## Network Reset\n\n::: tip Tip\n\n- In Windows 10/11, go to settings and search for Network Reset, then apply this option.\n- Restart your system and try HWID Activation.\n- If it's showing the same Internet error then follow the below option.\n\n:::\n\n## Firewall / Proxy Reset\n\n- Open Powershell as admin and enter below commands:\n\n```shell\nSet-ItemProperty -Path \"HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\" -Name ProxyEnable -Type DWord -Value 0\nSet-ItemProperty -Path \"HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\" -Name ProxyServer -Type String -Value \"\"\n\n$filePath = \"$env:SystemRoot\\System32\\drivers\\etc\\hosts\"\nSet-Content -Path $filePath -Value (Get-Content $filePath | ForEach-Object { $_ -replace '.*licensing.mp.microsoft.com.*', ''}) -force\nSet-Content -Path $filePath -Value (Get-Content $filePath | ForEach-Object { $_ -replace '.*purchase.mp.microsoft.com.*', ''}) -force\nSet-Content -Path $filePath -Value (Get-Content $filePath | ForEach-Object { $_ -replace '.*login.live.com.*', ''}) -force\n\nnetsh int ip reset\nnetsh winsock reset\nnetsh advfirewall reset\nnetsh winhttp reset proxy\nbitsadmin /util /setieproxy localsystem NO_PROXY RESET\nipconfig /flushdns\n```\n\n- Restart your system and try HWID Activation.\n- If it's showing the same Internet error then follow the below option.\n\n## VPN / Another Internet Connection\n\n- Install Cloudflare WARP VPN - https://1.1.1.1/\n  Connect the VPN and try HWID activation.\n\n- If it's not working, try a different internet connection or use your phone's internet through USB tethering.\n\n\n::: danger Troubleshoot\n\n- If you need any help regarding this, first review the [**FAQ section**](./faq) — your answer will most likely be there.\n\n- If HWID activation is still not working — You can [**Contact us**](./troubleshoot).\n\n:::\n"
  },
  {
    "path": "docs/wa/manual_hwid_activation.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'Manual HWID Activation'\ndescription: 'A step-by-step guide for manually activating Windows 10/11 via HWID, for users who prefer not to use automated scripts.'\ndate: 2024-02-11\neditLink: true\n---\n\n# Manual HWID Activation for Windows 10/11\n\n>  Prefer to activate Windows yourself without using scripts or automated tools? This guide walks you through the HWID activation process, step by step.\n\n::: info supported\n\nHWID activation is supported **only** on Windows 10 and 11.\n\n:::\n\n## How to Activate Manually\n\n> Make sure you have an internet connection before doing anything\n\n### Step 1. Identify Your Windows Edition\n\n::: tip To find your Windows edition\n\n#### Option A: Using keyboard shortcuts <Badge type=\"danger\" text=\"Recommend\" />\n\n1. Open the Run dialog box: Press `Win (⊞) + Pause/Break` keys Simultaneously\n2. This will open the \"About\" section in \"Settings\" directly. and you will see the Edition of your Windows under \"Windows specifications\" <br/>\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/647ef16b-9208-4ff3-a94b-825ffa99721f\" alt=\"about-system\" width=\"580px\" />\n</p>\n  \n::: details Click here to see more ways\n\n#### Option B: Using System Settings\n\n1. Click the `🪟 Start` button and then click \"⚙️ Settings\"\n2. Click on \"💻 System\"\n3. Scroll down and click on \"ℹ️ About\"\n4. Under `Windows specifications`, you will see the Edition of your Windows <br/>\n\n#### Option C: Using Run Box\n\n1. Open the Run dialog box: Press `Win (⊞) + R` keys Simultaneously\n2. Type `winver` or `msinfo32` or `ms-settings:about` and press Enter key\n3. A window will appear showing the Windows version and build number, Done <br/>\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/f764797a-e07f-4c58-b932-bfe7b359a7bd\" alt=\"winver-command\" width=\"580px\" />\n  </p>\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/4c7edc15-1c02-4d7b-ab5f-df70eaff8ad7\" alt=\"winver-response\" width=\"580px\" />\n</p>\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/a6360712-0ad0-4be4-b0a4-01171d293d83\" alt=\"msinfo32-command\" width=\"580px\" />\n</p>\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/8592c1bd-4a1a-47c1-bd21-0eb17049db31\" alt=\"msinfo32-response\" width=\"580px\" />\n</p>\n  \n#### Option D: Using CMD or PowerShell [^2]  \n1. Click on windows \"Start\" button or \"Search\" icon\n2. Type `cmd` or `Command Prompt`\n3. in running terminal, type: `systeminfo` or `systeminfo | findstr /B /C:\"OS Name\" /B /C:\"OS Version\"` and press \"Enter\" key.\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/16e8f49a-0cec-4836-b841-0cbd9344fbb1\" alt=\"findstdr command\" width=\"580px\" />\n</p>\n\n#### Option E: Using CMD like option D\n\n1. Also, run \"PowerShell\" or \"CMD\"\n2. Type `slmgr /dlv`, and press \"Enter\" key\n3. The `/dlv` command displays the detailed licensing information.\n4. Notice the output displays \"Home\" as seen in the following image:\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/86925e56-7cac-4b53-8ccf-6addcd799ece\" alt=\"slmgr-command\" width=\"580px\" />\n</p>\n\n:::\n### Step 2. Download the Correct Ticket File  \nFrom the [table below](#product-keys-and-ticket-downloads), download the ticket file that matches your Windows edition.\n\n### Step 3. Copy the Ticket File\nMove the downloaded file to this address:  \n`C:\\ProgramData\\Microsoft\\Windows\\ClipSVC\\GenuineTicket`\n\n::: danger Important\n\nThe `ProgramData` folder is hidden. Paste the path above directly into the Windows Explorer address bar to access it.  \n\n:::\n\n### Step 4. Open Activation Settings\nGo to **Settings > Activation**, and click `Change product key`\n\n### Step 5. Enter the Product Key  \nCopy the product key from the table below (matching your edition) and paste it when prompted.\n\n### Step 6. Complete Activation  \nWait a few moments, Windows should activate automatically. <br/>\n\n### Step 7. Check Windows Activation Status\n\nTo check the activation status of \"Windows 10\" Navigate to:  \nSettings > Update & Security > Activation. [^2]\n\nTo check the activation status of \"Windows 11\" Navigate to:  \nSettings > System > Activation. [^3]\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/da52f1bb-79c9-45db-bade-a0f56cd0a739\" alt=\"activated\" width=\"580px\" />\n</p>\n\n::: info Troubleshooting\n\nIf you see error `0x803fa067` when entering the product key, temporarily disconnect from the internet and try again.  \nOnce you’ve entered the key and it's accepted, reconnect to the internet to finish activation.  \n\n:::\n\n<br/>\n\n## Product Keys and Ticket Downloads\n\n| Edition                               | Product Key                   | Ticket File                                                                                                                     |\n| ------------------------------------- | ----------------------------- | ------------------------------------------------------------------------------------------------------------------------------- |\n| Education                             | YNMGQ-8RYV3-4PGQ3-C8XTP-7CFBY | [Download](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Education.xml)                             |\n| Education N                           | 84NGF-MHBT6-FXBX8-QWJK7-DRR8H | [Download](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Education.N.xml)                           |\n| Enterprise                            | XGVPP-NMH47-7TTHJ-W3FW7-8HV2C | [Download](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Enterprise.xml)                            |\n| Enterprise N                          | 3V6Q6-NQXCX-V8YXR-9QCYV-QPFCT | [Download](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Enterprise.N.xml)                          |\n| Enterprise LTSB 2015                  | FWN7H-PF93Q-4GGP8-M8RF3-MDWWW | [Download](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Enterprise.LTSB.2015.xml)                  |\n| Enterprise LTSB 2016                  | NK96Y-D9CD8-W44CQ-R8YTK-DYJWX | [Download](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Enterprise.LTSB.2016.xml)                  |\n| Enterprise LTSC 2019                  | 43TBQ-NH92J-XKTM7-KT3KK-P39PB | [Download](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Enterprise.LTSC.2019.xml)                  |\n| Enterprise N LTSB 2015                | NTX6B-BRYC2-K6786-F6MVQ-M7V2X | [Download](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Enterprise.N.LTSB.2015.xml)                |\n| Enterprise N LTSB 2016                | 2DBW3-N2PJG-MVHW3-G7TDK-9HKR4 | [Download](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Enterprise.N.LTSB.2016.xml)                |\n| Home                                  | YTMG3-N6DKC-DKB77-7M9GH-8HVX7 | [Download](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Home.xml)                                  |\n| Home N                                | 4CPRK-NM3K3-X6XXQ-RXX86-WXCHW | [Download](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Home.N.xml)                                |\n| Home China                            | N2434-X9D7W-8PF6X-8DV9T-8TYMD | [Download](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Home.China.xml)                            |\n| Home Single Language                  | BT79Q-G7N6G-PGBYW-4YWX6-6F4BT | [Download](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Home.Single.Language.xml)                  |\n| IoT Enterprise                        | XQQYW-NFFMW-XJPBH-K8732-CKFFD | [Download](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/IoT.Enterprise.xml)                        |\n| IoT Enterprise Subscription           | P8Q7T-WNK7X-PMFXY-VXHBG-RRK69 | [Download](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/IoT.Enterprise.Subscription.xml)           |\n| IoT Enterprise LTSC 2021              | QPM6N-7J2WJ-P88HH-P3YRH-YY74H | [Download](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/IoT.Enterprise.LTSC.2021.xml)              |\n| IoT Enterprise LTSC 2024              | CGK42-GYN6Y-VD22B-BX98W-J8JXD | [Download](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/IoT.Enterprise.LTSC.2024.xml)              |\n| IoT Enterprise LTSC Subscription 2024 | N979K-XWD77-YW3GB-HBGH6-D32MH | [Download](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/IoT.Enterprise.LTSC.Subscription.2024.xml) |\n| Pro                                   | VK7JG-NPHTM-C97JM-9MPGT-3V66T | [Download](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Pro.xml)                                   |\n| Pro N                                 | 2B87N-8KFHP-DKV6R-Y2C8J-PKCKT | [Download](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Pro.N.xml)                                 |\n| Pro Education                         | 8PTT6-RNW4C-6V7J2-C2D3X-MHBPB | [Download](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Pro.Education.xml)                         |\n| Pro Education N                       | GJTYN-HDMQY-FRR76-HVGC7-QPF8P | [Download](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Pro.Education.N.xml)                       |\n| Pro for Workstations                  | DXG7C-N36C4-C4HTG-X4T3X-2YV77 | [Download](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Pro.for.Workstations.xml)                  |\n| Pro N for Workstations                | WYPNQ-8C467-V2W6J-TX4WX-WT2RQ | [Download](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Pro.N.for.Workstations.xml)                |\n| S                                     | V3WVW-N2PV2-CGWC3-34QGF-VMJ2C | [Download](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Cloud.S.xml)                               |\n| S N                                   | NH9J3-68WK7-6FB93-4K3DF-DJ4F6 | [Download](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Cloud.S.N.xml)                             |\n| SE                                    | KY7PN-VR6RX-83W6Y-6DDYQ-T6R4W | [Download](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/CloudEdition.SE.xml)                       |\n| SE N                                  | K9VKN-3BGWV-Y624W-MCRMQ-BHDCD | [Download](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/CloudEdition.SE.N.xml)                     |\n| Team                                  | XKCNC-J26Q9-KFHD2-FKTHY-KD72Y | [Download](https://github.com/massgravel/hwid-kms38-tickets/releases/latest/download/Team.xml)                                  |\n<br/>\n\n::: tip Tip \n\nLooking for an easier solution? Try our [automatic activation tool](./index).\n\n:::\n\n[^1]: Another easiest way to run **PowerShell** is **Using Power User Menu**. <br/> - 1. **Right-click** the **Windows Start** icon on the Taskbar to open the menu containing shortcuts to frequently used tools. Also you can open this menu with `Win (⊞) + x`. <br/> - 2. Select **Windows Terminal (admin)** at windows 11 Or **Windows PowerShell (admin)** at Windows 10.\n\n[^2]: To check the activation status of Windows 10, Navigate to <br/> Settings → Update & Security → Activation. <br/> You will see your activation status listed there. If Windows is activated, you should see \"Activated\" with a green checkmark.\n\n[^3]: To check the activation status of Windows 11, Navigate to <br/> Settings → System → Activation. <br/> The activation status will be displayed, Showing whether Windows is activated, along with details about the activation method and any linked Microsoft account.\n"
  },
  {
    "path": "docs/wa/manual_kms38_activation.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'Manual KMS38 Activation'\ndescription: 'This page is intended for users who do not want to use the script for any reason and would rather perform the KMS38 activation process themselves'\ndate: 2023-03-07\neditLink: true\n---\n\n\n# KMS38\n\nThis page is intended for users who do not want to use the script for any reason and would rather perform the KMS38 activation process themselves. If you'd like to use a tool for this instead, please check [here](./index#step-2-run-the-activation-script).\n\n::: info Note\n\nKMS38 activation is only supported on Windows 10/11 Client and Server editions.\n\n:::\n\n## Manually Activate Windows\n\nTo manually activate Windows, follow these steps:\n\n- **step 1:** Open Windows Powershell as administrator and enter the below commands\n::: tip To run Powershell\n\n::: details Click here to see details\n\n### Option A: Using Search Bar <Badge type=\"danger\" text=\"Recommend\" />\n1. Click on windows \"Start\" button or \"Search\" icon in the taskbar\n2. Type `powershell`\n3. Select `Run as administrator` <br/>\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/9b27cd4b-21d8-4970-98bb-3c97010e09bf\" alt=\"open-powershell-as-admin\" width=\"540px\" />\n</p>\n\n### Option B: Using Run Box\n\n1. Open the Run dialog box: Press `Win (⊞) + R` keys simultaneously\n2. Type `powershell`\n3. Press `Ctrl + Shift + Enter` to run as administrator\n4. If prompted by User Account Control, click `Yes` <br/>\n\n### Option C: Using Power User Menu\n\n1. Right-click on the \"Start menu\" (or press `Win (⊞) + X`)\n2. Select \"Windows Terminal (Admin)\" on Windows 11 or \"Windows PowerShell (Admin)\" on Windows 10\n\nOr You can visit [this Link][1] to see 10 ways to run **PowerShell** And [this link][2] For Running CMD in your windows.\n\n:::\n\n- **step 2:** Install the generic key which matches your Windows edition and version:\n\n``` reg\nslmgr /ipk <key>\n```\n\n*(Refer to the table below for the appropriate key.)*\n\n- **Step 3:** Download the [KMS38 ticket file][3].\n- **Step 4:** Copy the downloaded ticket file to the root of the C: drive.\n- **Step 5:** Migrate the ticket to a license and activate Windows by running the commands:\n\n```reg\nclipup -v -o -altto C:\\\n```\n\n- **Finally** After waiting for a few seconds, Windows should be activated.\n\n\n::: tip Notes\n\n- For Windows Server Cor/Acor editions, the system does not have the `clipup.exe` file.\n    To activate it using KMS38, download the missing `ClipUp.exe` file from [this link][4].\n    `File: ClipUp.exe`\n    `SHA-256: 0d6e9f6bbd0321eda149658d96040cb4f79e0bd93ba60061f25b28fecbf4d4ef`\n  The file is digitally signed and verifiable. You can also obtain this file from the official [Windows Server 2016 x64 RTM ISO][5].\n  Place the `ClipUp.exe` file in the `C:\\Windows\\System32` folder and perform the KMS38 activation process. Once the activation is complete, you can remove the file.\n\n:::\n\n<br/>\n\n### Windows 10 / 11\n| Product Names                                          | Generic Volume License Key    |\n|--------------------------------------------------------|-------------------------------|\n| Education                                              | NW6C2-QMPVW-D7KKK-3GKT6-VCFB2 |\n| Education N                                            | 2WH4N-8QGBV-H22JP-CT43Q-MDWWJ |\n| Enterprise                                             | NPPR9-FWDCX-D2C8J-H872K-2YT43 |\n| Enterprise N                                           | DPH2V-TTNVB-4X9Q3-TJR4H-KHJW4 |\n| Enterprise G                                           | YYVX9-NTFWV-6MDM3-9PT4T-4M68B |\n| Enterprise G N                                         | 44RPN-FTY23-9VTTB-MP9BX-T84FV |\n| Enterprise LTSB 2016                                   | DCPHK-NFMTC-H88MJ-PFHPY-QJ4BJ |\n| Enterprise LTSC 2019                                   | M7XTQ-FN8P6-TTKYV-9D4CC-J462D |\n| Enterprise LTSC 2021                                   | M7XTQ-FN8P6-TTKYV-9D4CC-J462D |\n| Enterprise LTSC 2024                                   | M7XTQ-FN8P6-TTKYV-9D4CC-J462D |\n| Enterprise N LTSB 2016                                 | QFFDN-GRT3P-VKWWX-X7T3R-8B639 |\n| Enterprise N LTSC 2019                                 | 92NFX-8DJQP-P6BBQ-THF9C-7CG2H |\n| Enterprise N LTSC 2021                                 | 92NFX-8DJQP-P6BBQ-THF9C-7CG2H |\n| Enterprise N LTSC 2024                                 | 92NFX-8DJQP-P6BBQ-THF9C-7CG2H |\n| IoT Enterprise LTSC 2021 <br /> (19044.2788 and later) | KBN8V-HFGQ4-MGXVD-347P6-PDQGT |\n| IoT Enterprise LTSC 2024                               | KBN8V-HFGQ4-MGXVD-347P6-PDQGT |\n| Home                                                   | TX9XD-98N7V-6WMQ6-BX7FG-H8Q99 |\n| Home N                                                 | 3KHY7-WNT83-DGQKR-F7HPR-844BM |\n| Home China                                             | PVMJN-6DFY6-9CCP6-7BKTT-D3WVR |\n| Home Single Language                                   | 7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH |\n| Lean                                                   | NBTWJ-3DR69-3C4V8-C26MC-GQ9M6 |\n| Enterprise multi-session <br /> (17763 and later)      | CPWHC-NT2C7-VYW78-DHDB2-PG3GK |\n| Enterprise multi-session <br /> (17134 and before)     | 7NBT4-WGBQX-MP4H7-QXFF8-YP3KX |\n| Pro                                                    | W269N-WFGWX-YVC9B-4J6C9-T83GX |\n| Pro N                                                  | MH37W-N47XK-V7XM9-C7227-GCQG9 |\n| Pro Education                                          | 6TP4R-GNPTD-KYYHQ-7B7DP-J447Y |\n| Pro Education N                                        | YVWGF-BXNMC-HTQYQ-CPQ99-66QFC |\n| Pro for Workstations                                   | NRG8B-VKK3Q-CXVCJ-9G2XF-6Q84J |\n| Pro N for Workstations                                 | 9FNHH-K3HBT-3W4TD-6383H-6XYWF |\n| SE                                                     | 37D7F-N49CB-WQR8W-TBJ73-FM8RX |\n| SE N                                                   | 6XN7V-PCBDC-BDBRH-8DQY7-G6R44 |\n\n<br/>\n\n### Windows Server 2025 (LTSC)\n| Product Names                        | Generic Volume License Key    |\n|--------------------------------------|-------------------------------|\n| Windows Server 2025 Standard         | TVRH6-WHNXV-R9WG3-9XRFY-MY832 |\n| Windows Server 2025 Datacenter       | D764K-2NDRG-47T6Q-P8T8W-YP6DF |\n| Windows Server 2025 Azure Core       | FCNV3-279Q9-BQB46-FTKXX-9HPRH |\n| Windows Server 2025 Azure Datacenter | XGN3F-F394H-FD2MY-PP6FD-8MCRC |\n\n<br/>\n\n### Windows Server 2022 (LTSC)\n| Product Names                        | Generic Volume License Key    |\n|--------------------------------------|-------------------------------|\n| Windows Server 2022 Datacenter       | WX4NM-KYWYW-QJJR4-XV3QB-6VM33 |\n| Windows Server 2022 Standard         | VDYBN-27WPP-V4HQT-9VMD4-VMK7H |\n| Windows Server 2022 Azure Core       | 6N379-GGTMK-23C6M-XVVTC-CKFRQ |\n| Windows Server 2022 Azure Datacenter | NTBV8-9K7Q8-V27C6-M2BTV-KHMXV |\n\n<br/>\n\n### Windows Server 2019 (LTSC)\n| Product Names                  | Generic Volume License Key    |\n|--------------------------------|-------------------------------|\n| Windows Server 2019 Datacenter | WMDGN-G9PQG-XVVXX-R3X43-63DFG |\n| Windows Server 2019 Standard   | N69G4-B89J2-4G8F4-WWYCC-J464C |\n| Windows Server 2019 Essentials | WVDHN-86M7X-466P6-VHXV7-YY726 |\n| Windows Server 2019 Azure Core | FDNH6-VW9RW-BXPJ7-4XTYG-239TB |\n| Windows Server 2019 ARM64      | GRFBW-QNDC4-6QBHG-CCK3B-2PR88 |\n\n<br/>\n\n### Windows Server 2016 (LTSC)\n| Product Names                     | Generic Volume License Key    |\n|-----------------------------------|-------------------------------|\n| Windows Server 2016 ARM64         | K9FYF-G6NCK-73M32-XMVPY-F9DRR |\n| Windows Server 2016 Datacenter    | CB7KF-BWN84-R7R2Y-793K2-8XDDG |\n| Windows Server 2016 Standard      | WC2BQ-8NRM3-FDDYY-2BFGV-KHKQY |\n| Windows Server 2016 Essentials    | JCKRF-N37P4-C2D82-9YXRT-4M63B |\n| Windows Server 2016 Cloud Storage | QN4C6-GBJD2-FB422-GHWJK-GJG2R |\n| Windows Server 2016 Azure Core    | VP34G-4NPPG-79JTQ-864T4-R3MQX |\n\n<br/>\n\n### Windows Server 23H2 (Annual Channel)\n| Product Names             | Generic Volume License Key    |\n|---------------------------|-------------------------------|\n| Windows Server Datacenter | WX4NM-KYWYW-QJJR4-XV3QB-6VM33 |\n\n<br/>\n\n### Windows Server 20H2, 2004, 1909, 1903, and 1809 (Semi-Annual Channel)\n| Product Names             | Generic Volume License Key    |\n|---------------------------|-------------------------------|\n| Windows Server Datacenter | 6NMRW-2C8FM-D24W7-TQWMY-CWH2D |\n| Windows Server Standard   | N2KJX-J94YW-TQVFB-DG9YT-724CC |\n\n<br/>\n\n### Windows Server 1803 (Semi-Annual Channel)\n| Product Names             | Generic Volume License Key    |\n|---------------------------|-------------------------------|\n| Windows Server Datacenter | 2HXDN-KRXHB-GPYC7-YCKFJ-7FVDG |\n| Windows Server Standard   | PTXN8-JFHJM-4WC78-MPCBR-9W4KR |\n\n<br/>\n\n### Windows Server 1709 (Semi-Annual Channel)\n| Product Names             | Generic Volume License Key    |\n|---------------------------|-------------------------------|\n| Windows Server Datacenter | 6Y6KB-N82V8-D8CQV-23MJW-BWTG6 |\n| Windows Server Standard   | DPCNP-XQFKJ-BJF7R-FRC8D-GF6G4 |\n\n\n## Troubleshoot\n\n::: danger Troubleshoot\n\n- If you need any help regarding this, first review the [**FAQ section**](./faq) — your answer will most likely be there.\n\n- If your issue persists — You can [**Contact us**](./troubleshoot).\n\n:::\n\n\n[1]: https://www.minitool.com/news/open-windows-11-powershell.html\n[2]: https://www.minitool.com/news/open-command-prompt-windows-11.html\n[3]: https://github.com/massgravel/hwid-kms38-tickets/releases/download/2.0/KMS38.xml\n[4]: https://app.box.com/s/cwoxub9tqyowhnyva6ign6qnogb6vk0o\n[5]: https://download.microsoft.com/download/1/6/F/16FA20E6-4662-482A-920B-1A45CF5AAE3C/14393.0.160715-1616.RS1_RELEASE_SERVER_EVAL_X64FRE_EN-US.ISO\n"
  },
  {
    "path": "docs/wa/manual_ohook_activation.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'Manual Ohook Activation'\ndescription: 'This page is intended for users who do not want to use the script for any reason and would rather perform the Ohook activation process themselves.'\ndate: 2024-02-11\neditLink: true\n---\n\n# Ohook\n\n> This page is intended for users who do not want to use the script for any reason and would rather perform the Ohook activation process themselves. If you'd like to use a tool for this instead, please check [here](./index#step2).\n\n::: tip Tip\n\nThe steps below only apply to Office 16.0 (2016, 2019, 2021 and 365) C2R x64 bit versions running on an x64 bit Windows 8+ machine.  \n\nFor older Office versions, please follow [this](./index#step2) instead.\n\n:::\n\n<br/>\n\n## Manually Activate Office\n\nTo manually activate Office, follow these steps:\n\n-   Download the Ohook sppc.dll files from [here][1] or compile the sppc.dll files yourself using [this guide](./ohook#custom-sppcdll-info).\n-   Create a new folder called `ohook` in the root of your C: drive and extract the zip file to it. The path to the folder should be `C:\\ohook`.\n-   Open Command Prompt as Administrator and enter the following command to create a symlink of the system's sppc.dll as sppcs.dll in the Office C2R System directory:  \n    `mklink \"%ProgramFiles%\\Microsoft Office\\root\\vfs\\System\\sppcs.dll\" \"%windir%\\System32\\sppc.dll\"`\n-   Enter the following commands to copy the hook library `sppc64.dll` to the Office C2R system directory:    \n    `cd /d C:\\ohook`  \n    `copy /y sppc64.dll \"%ProgramFiles%\\Microsoft Office\\root\\vfs\\System\\sppc.dll\"`\n-   Some Office 365 editions check the license status and display the banner \"There was a problem checking this device's license status\". To prevent this, enter the following command:  \n    `reg add HKCU\\Software\\Microsoft\\Office\\16.0\\Common\\Licensing\\Resiliency /v \"TimeOfLastHeartbeatFailure\" /t REG_SZ /d \"2040-01-01T00:00:00Z\" /f`\n-   Install the generic key which matches your Office edition and version:  \n    `slmgr /ipk <key>`  \n    *(Refer to the table below for the appropriate key.)*\n-   Office should be activated now.\n\n<br/>\n\n### Office 365\n\n| Office Product         | Generated Generic Key         |\n|------------------------|-------------------------------|\n| O365AppsBasicRetail    | 3HYJN-9KG99-F8VG9-V3DT8-JFMHV |\n| O365BusinessRetail     | Y9NF9-M2QWD-FF6RJ-QJW36-RRF2T |\n| O365EduCloudRetail     | W62NQ-267QR-RTF74-PF2MH-JQMTH |\n| O365HomePremRetail     | 3NMDC-G7C3W-68RGP-CB4MH-4CXCH |\n| O365ProPlusRetail      | H8DN8-Y2YP3-CR9JT-DHDR9-C7GP3 |\n| O365SmallBusPremRetail | 2QCNB-RMDKJ-GC8PB-7QGQV-7QTQJ |\n\n<br/>\n\n### Office 2016\n\n| Office Product              | Generated Generic Key         |\n|-----------------------------|-------------------------------|\n| AccessRetail                | WHK4N-YQGHB-XWXCC-G3HYC-6JF94 |\n| AccessRuntimeRetail         | RNB7V-P48F4-3FYY6-2P3R3-63BQV |\n| AccessVolume                | JJ2Y4-N8KM3-Y8KY3-Y22FR-R3KVK |\n| ExcelRetail                 | RKJBN-VWTM2-BDKXX-RKQFD-JTYQ2 |\n| ExcelVolume                 | FVGNR-X82B2-6PRJM-YT4W7-8HV36 |\n| HomeBusinessPipcRetail      | 2WQNF-GBK4B-XVG6F-BBMX7-M4F2Y |\n| HomeBusinessRetail          | HM6FM-NVF78-KV9PM-F36B8-D9MXD |\n| HomeStudentARMRetail        | PBQPJ-NC22K-69MXD-KWMRF-WFG77 |\n| HomeStudentPlusARMRetail    | 6F2NY-7RTX4-MD9KM-TJ43H-94TBT |\n| HomeStudentRetail           | PNPRV-F2627-Q8JVC-3DGR9-WTYRK |\n| HomeStudentVNextRetail      | YWD4R-CNKVT-VG8VJ-9333B-RC3B8 |\n| MondoRetail                 | VNWHF-FKFBW-Q2RGD-HYHWF-R3HH2 |\n| MondoVolume                 | FMTQQ-84NR8-2744R-MXF4P-PGYR3 |\n| OneNoteFreeRetail           | XYNTG-R96FY-369HX-YFPHY-F9CPM |\n| OneNoteRetail               | FXF6F-CNC26-W643C-K6KB7-6XXW3 |\n| OneNoteVolume               | 9TYVN-D76HK-BVMWT-Y7G88-9TPPV |\n| OutlookRetail               | 7N4KG-P2QDH-86V9C-DJFVF-369W9 |\n| OutlookVolume               | 7QPNR-3HFDG-YP6T9-JQCKQ-KKXXC |\n| PersonalPipcRetail          | 9CYB3-NFMRW-YFDG6-XC7TF-BY36J |\n| PersonalRetail              | FT7VF-XBN92-HPDJV-RHMBY-6VKBF |\n| PowerPointRetail            | N7GCB-WQT7K-QRHWG-TTPYD-7T9XF |\n| PowerPointVolume            | X3RT9-NDG64-VMK2M-KQ6XY-DPFGV |\n| ProPlusRetail               | GM43N-F742Q-6JDDK-M622J-J8GDV |\n| ProPlusVolume               | FNVK8-8DVCJ-F7X3J-KGVQB-RC2QY |\n| ProfessionalPipcRetail      | CF9DD-6CNW2-BJWJQ-CVCFX-Y7TXD |\n| ProfessionalRetail          | NXFTK-YD9Y7-X9MMJ-9BWM6-J2QVH |\n| ProjectProRetail            | WPY8N-PDPY4-FC7TF-KMP7P-KWYFY |\n| ProjectProVolume            | PKC3N-8F99H-28MVY-J4RYY-CWGDH |\n| ProjectProXVolume           | JBNPH-YF2F7-Q9Y29-86CTG-C9YGV |\n| ProjectStdRetail            | NTHQT-VKK6W-BRB87-HV346-Y96W8 |\n| ProjectStdVolume            | 4TGWV-6N9P6-G2H8Y-2HWKB-B4G93 |\n| ProjectStdXVolume           | N3W2Q-69MBT-27RD9-BH8V3-JT2C8 |\n| PublisherRetail             | WKWND-X6G9G-CDMTV-CPGYJ-6MVBF |\n| PublisherVolume             | 9QVN2-PXXRX-8V4W8-Q7926-TJGD8 |\n| SkypeServiceBypassRetail    | 6MDN4-WF3FV-4WH3Q-W699V-RGCMY |\n| SkypeforBusinessEntryRetail | 4N4D8-3J7Y3-YYW7C-73HD2-V8RHY |\n| SkypeforBusinessRetail      | PBJ79-77NY4-VRGFG-Y8WYC-CKCRC |\n| SkypeforBusinessVolume      | DMTCJ-KNRKR-JV8TQ-V2CR2-VFTFH |\n| StandardRetail              | 2FPWN-4H6CM-KD8QQ-8HCHC-P9XYW |\n| StandardVolume              | WHGMQ-JNMGT-MDQVF-WDR69-KQBWC |\n| VisioProRetail              | NVK2G-2MY4G-7JX2P-7D6F2-VFQBR |\n| VisioProVolume              | NRKT9-C8GP2-XDYXQ-YW72K-MG92B |\n| VisioProXVolume             | G98Q2-B6N77-CFH9J-K824G-XQCC4 |\n| VisioStdRetail              | NCRB7-VP48F-43FYY-62P3R-367WK |\n| VisioStdVolume              | XNCJB-YY883-JRW64-DPXMX-JXCR6 |\n| VisioStdXVolume             | B2HTN-JPH8C-J6Y6V-HCHKB-43MGT |\n| WordRetail                  | P8K82-NQ7GG-JKY8T-6VHVY-88GGD |\n| WordVolume                  | YHMWC-YN6V9-WJPXD-3WQKP-TMVCV |\n\n<br/>\n\n### Office 2019\n\n| Office Product                  | Generated Generic Key         |\n|---------------------------------|-------------------------------|\n| Access2019Retail                | WRYJ6-G3NP7-7VH94-8X7KP-JB7HC |\n| Access2019Volume                | 6FWHX-NKYXK-BW34Q-7XC9F-Q9PX7 |\n| AccessRuntime2019Retail         | FGQNJ-JWJCG-7Q8MG-RMRGJ-9TQVF |\n| Excel2019Retail                 | KBPNW-64CMM-8KWCB-23F44-8B7HM |\n| Excel2019Volume                 | 8NT4X-GQMCK-62X4P-TW6QP-YKPYF |\n| HomeBusiness2019Retail          | QBN2Y-9B284-9KW78-K48PB-R62YT |\n| HomeStudentARM2019Retail        | DJTNY-4HDWM-TDWB2-8PWC2-W2RRT |\n| HomeStudentPlusARM2019Retail    | NM8WT-CFHB2-QBGXK-J8W6J-GVK8F |\n| HomeStudent2019Retail           | XNWPM-32XQC-Y7QJC-QGGBV-YY7JK |\n| Outlook2019Retail               | WR43D-NMWQQ-HCQR2-VKXDR-37B7H |\n| Outlook2019Volume               | RN3QB-GT6D7-YB3VH-F3RPB-3GQYB |\n| Personal2019Retail              | NMBY8-V3CV7-BX6K6-2922Y-43M7T |\n| PowerPoint2019Retail            | HN27K-JHJ8R-7T7KK-WJYC3-FM7MM |\n| PowerPoint2019Volume            | 29GNM-VM33V-WR23K-HG2DT-KTQYR |\n| ProPlus2019Retail               | BN4XJ-R9DYY-96W48-YK8DM-MY7PY |\n| ProPlus2019Volume               | T8YBN-4YV3X-KK24Q-QXBD7-T3C63 |\n| Professional2019Retail          | 9NXDK-MRY98-2VJV8-GF73J-TQ9FK |\n| ProjectPro2019Retail            | JDTNC-PP77T-T9H2W-G4J2J-VH8JK |\n| ProjectPro2019Volume            | TBXBD-FNWKJ-WRHBD-KBPHH-XD9F2 |\n| ProjectStd2019Retail            | R3JNT-8PBDP-MTWCK-VD2V8-HMKF9 |\n| ProjectStd2019Volume            | RBRFX-MQNDJ-4XFHF-7QVDR-JHXGC |\n| Publisher2019Retail             | 4QC36-NW3YH-D2Y9D-RJPC7-VVB9D |\n| Publisher2019Volume             | K8F2D-NBM32-BF26V-YCKFJ-29Y9W |\n| SkypeforBusiness2019Retail      | JBDKF-6NCD6-49K3G-2TV79-BKP73 |\n| SkypeforBusiness2019Volume      | 9MNQ7-YPQ3B-6WJXM-G83T3-CBBDK |\n| SkypeforBusinessEntry2019Retail | N9722-BV9H6-WTJTT-FPB93-978MK |\n| Standard2019Retail              | NDGVM-MD27H-2XHVC-KDDX2-YKP74 |\n| Standard2019Volume              | NT3V6-XMBK7-Q66MF-VMKR4-FC33M |\n| VisioPro2019Retail              | 2NWVW-QGF4T-9CPMB-WYDQ9-7XP79 |\n| VisioPro2019Volume              | 33YF4-GNCQ3-J6GDM-J67P3-FM7QP |\n| VisioStd2019Retail              | 263WK-3N797-7R437-28BKG-3V8M8 |\n| VisioStd2019Volume              | BGNHX-QTPRJ-F9C9G-R8QQG-8T27F |\n| Word2019Retail                  | JXR8H-NJ3MK-X66W8-78CWD-QRVR2 |\n| Word2019Volume                  | 9F36R-PNVHH-3DXGQ-7CD2H-R9D3V |\n\n<br/>\n\n### Office 2021\n\n| Office Product             | Generated Generic Key         |\n|----------------------------|-------------------------------|\n| Access2021Retail           | P286B-N3XYP-36QRQ-29CMP-RVX9M |\n| AccessRuntime2021Retail    | MNX9D-PB834-VCGY2-K2RW2-2DP3D |\n| Access2021Volume           | JBH3N-P97FP-FRTJD-MGK2C-VFWG6 |\n| Excel2021Retail            | V6QFB-7N7G9-PF7W9-M8FQM-MY8G9 |\n| Excel2021Volume            | WNYR4-KMR9H-KVC8W-7HJ8B-K79DQ |\n| HomeBusiness2021Retail     | JM99N-4MMD8-DQCGJ-VMYFY-R63YK |\n| HomeStudent2021Retail      | N3CWD-38XVH-KRX2Y-YRP74-6RBB2 |\n| OneNoteFree2021Retail      | CNM3W-V94GB-QJQHH-BDQ3J-33Y8H |\n| OneNote2021Retail          | NB2TQ-3Y79C-77C6M-QMY7H-7QY8P |\n| OneNote2021Volume          | THNKC-KFR6C-Y86Q9-W8CB3-GF7PD |\n| Outlook2021Retail          | 4NCWR-9V92Y-34VB2-RPTHR-YTGR7 |\n| Outlook2021Volume          | JQ9MJ-QYN6B-67PX9-GYFVY-QJ6TB |\n| Personal2021Retail         | RRRYB-DN749-GCPW4-9H6VK-HCHPT |\n| PowerPoint2021Retail       | 3KXXQ-PVN2C-8P7YY-HCV88-GVM96 |\n| PowerPoint2021Volume       | 39G2N-3BD9C-C4XCM-BD4QG-FVYDY |\n| ProPlus2021Retail          | 8WXTP-MN628-KY44G-VJWCK-C7PCF |\n| ProPlus2021Volume          | RNHJY-DTFXW-HW9F8-4982D-MD2CW |\n| ProPlusSPLA2021Volume      | JRJNJ-33M7C-R73X3-P9XF7-R9F6M |\n| Professional2021Retail     | DJPHV-NCJV6-GWPT6-K26JX-C7PBG |\n| ProjectPro2021Retail       | QKHNX-M9GGH-T3QMW-YPK4Q-QRWMV |\n| ProjectPro2021Volume       | HVC34-CVNPG-RVCMT-X2JRF-CR7RK |\n| ProjectStd2021Retail       | 2B96V-X9NJY-WFBRC-Q8MP2-7CHRR |\n| ProjectStd2021Volume       | 3CNQX-T34TY-99RH4-C4YD2-KW6WH |\n| Publisher2021Retail        | CDNFG-77T8D-VKQJX-B7KT3-KK28V |\n| Publisher2021Volume        | 2KXJH-3NHTW-RDBPX-QFRXJ-MTGXF |\n| SkypeforBusiness2021Retail | DVBXN-HFT43-CVPRQ-J89TF-VMMHG |\n| SkypeforBusiness2021Volume | R3FCY-NHGC7-CBPVP-8Q934-YTGXG |\n| Standard2021Retail         | HXNXB-J4JGM-TCF44-2X2CV-FJVVH |\n| Standard2021Volume         | 2CJN4-C9XK2-HFPQ6-YH498-82TXH |\n| StandardSPLA2021Volume     | BQWDW-NJ9YF-P7Y79-H6DCT-MKQ9C |\n| VisioPro2021Retail         | T6P26-NJVBR-76BK8-WBCDY-TX3BC |\n| VisioPro2021Volume         | JNKBX-MH9P4-K8YYV-8CG2Y-VQ2C8 |\n| VisioStd2021Retail         | 89NYY-KB93R-7X22F-93QDF-DJ6YM |\n| VisioStd2021Volume         | BW43B-4PNFP-V637F-23TR2-J47TX |\n| Word2021Retail             | VNCC4-CJQVK-BKX34-77Y8H-CYXMR |\n| Word2021Volume             | BJG97-NW3GM-8QQQ7-FH76G-686XM |\n\n<br/>\n\n### Office 2024\n\n| Office Product             | Generated Generic Key         |\n|----------------------------|-------------------------------|\n| Access2024Retail           | P6NMW-JMTRC-R6MQ6-HH3F2-BTHKB |\n| Access2024Volume           | CXNJT-98HPP-92HX7-MX6GY-2PVFR |\n| Excel2024Retail            | 82CNJ-W82TW-BY23W-BVJ6W-W48GP |\n| Excel2024Volume            | 7Y287-9N2KC-8MRR3-BKY82-2DQRV |\n| Home2024Retail             | N69X7-73KPT-899FD-P8HQ4-QGTP4 |\n| HomeBusiness2024Retail     | PRKQM-YNPQR-77QT6-328D7-BD223 |\n| Outlook2024Retail          | 2CFK4-N44KG-7XG89-CWDG6-P7P27 |\n| Outlook2024Volume          | NQPXP-WVB87-H3MMB-FYBW2-9QFPB |\n| PowerPoint2024Retail       | CT2KT-GTNWH-9HFGW-J2PWJ-XW7KJ |\n| PowerPoint2024Volume       | RRXFN-JJ26R-RVWD2-V7WMP-27PWQ |\n| ProjectPro2024Retail       | GNJ6P-Y4RBM-C32WW-2VJKJ-MTHKK |\n| ProjectPro2024Volume       | WNFMR-HK4R7-7FJVM-VQ3JC-76HF6 |\n| ProjectStd2024Retail       | C2PNM-2GQFC-CY3XR-WXCP4-GX3XM |\n| ProjectStd2024Volume       | F2VNW-MW8TT-K622Q-4D96H-PWJ8X |\n| ProPlus2024Retail          | VWCNX-7FKBD-FHJYG-XBR4B-88KC6 |\n| ProPlus2024Volume          | 4YV2J-VNG7W-YGTP3-443TK-TF8CP |\n| SkypeforBusiness2024Volume | XKRBW-KN2FF-G8CKY-HXVG6-FVY2V |\n| Standard2024Volume         | GVG6N-6WCHH-K2MVP-RQ78V-3J7GJ |\n| VisioPro2024Retail         | HGRBX-N68QF-6DY8J-CGX4W-XW7KP |\n| VisioPro2024Volume         | GBNHB-B2G3Q-G42YB-3MFC2-7CJCX |\n| VisioStd2024Retail         | VBXPJ-38NR3-C4DKF-C8RT7-RGHKQ |\n| VisioStd2024Volume         | YNFTY-63K7P-FKHXK-28YYT-D32XB |\n| Word2024Retail             | XN33R-RP676-GMY2F-T3MH7-GCVKR |\n| Word2024Volume             | WD8CQ-6KNQM-8W2CX-2RT63-KK3TP |\n\n<br/>\n\n## Troubleshoot  \n\n::: danger Troubleshoot\n\n- If you need any help regarding this, first review the [**FAQ section**](./faq) — your answer will most likely be there.  \n\n- If your issue persists — You can [**Contact us**](./troubleshoot).\n\n:::\n\n[1]: https://github.com/asdcorp/ohook/releases/download/0.5/ohook_0.5.zip\n"
  },
  {
    "path": "docs/wa/oem-folder.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: \"OEM Folder\"\ndescription: \"\"\ndate: 2025-05-06\neditLink: true\n---\n\n# $OEM$ Folders  \n\nTo create a pre-activated Windows installation ISO, do the following:\n-   Extract the `$OEM$` folder to the desktop using the MAS script.  \n-   Copy the `$OEM$` folder to the `sources` folder in the Windows installation media (ISO or USB).  \n-   The directory will appear like this: `\\sources\\$OEM$` in your altered ISO or on your bootable USB drive.  \n-   Now use this ISO or bootable USB drive to install Windows, it will either already be activated (KMS38) as soon as it boots or will self-activate (HWID or Online KMS) at the first internet contact.\n-   You can check [here][1] for activation method details.  \n\n::: info  NOTE\n\n::: details On Windows 8 and later\n\n- error [running setup complete.cmd is disabled][2] if the default installed key for the edition is from the OEM channel, except for Enterprise editions and Windows Server.\n- However, in Windows 10, IoT Enterprise editions were not included in the Enterprise category list during the installation process.\n- As a result, Enterprise with an OEM key can handle setupcomplete.cmd, but IoT Enterprise (LTSC) cannot. This was fixed in later Windows 11 versions.\n    - In Windows 10 IoT Enterprise (LTSC), you can resolve this issue by using the Non-IoT Windows 10 Enterprise LTSC ISO. In this case, the HWID method in preactivation will install the IoT LTSC key to change the edition and enable HWID activation.\n    - In Windows 11 IoT Enterprise (LTSC), it works fine as expected by default.\n    \n:::\n\n<br></br>  \n\n## Edit ISO File  \n\n::: tip  NOTE\n\n- As stated above, you can copy the `$OEM$` folder to your bootable USB so you don't have to edit the ISO file. However, if you need to, then follow the steps below.\n- Download [AnyBurn Free Portable][3] and extract the zip file.\n- Run the file named `AnyBurn(64-bit)\\AnyBurn.exe`.\n- Select the option named `Edit image file`.\n- Follow the on-screen instructions and add the `$OEM$` folder to the `sources` folder so that the directory will appear like this: `\\sources\\$OEM$`.\n- Save the ISO, that's it.\n\n:::\n\n</br>    \n\n## KMS38 - Server Cor/Acor  \n\n-   Windows Server Cor/Acor (No GUI) editions don't have the `clipup.exe` file.\n-   To KMS38 activate it, you need to download the missing `ClipUp.exe` file from [app.box.com/s/....][4].  \n    `File: ClipUp.exe`  \n    `SHA-256: 0d6e9f6bbd0321eda149658d96040cb4f79e0bd93ba60061f25b28fecbf4d4ef`  \n    This file has digital signatures that can be verified. You can also get this file from the official [Windows Server 2016 x64 RTM ISO][5].  \n-   Put the `ClipUp.exe` beside the KMS38 Activation script. That would be either `MAS_AIO.cmd` or `KMS38_Activation.cmd`  \n-   The activation script will check `ClipUp.exe` in the current folder (from where script is running) and will use it accordingly.  \n\n</br>    \n\n##  Preinstall Office  \n\n-\tFollow this [office c2r guides](office_c2r.md) and download the Office files.  \n- \tCopy the downloaded `Office` folder, `setup.exe` and `Configuration.xml` files, and paste them into the $OEM$ folder, beside the `setupcomplete.cmd` file.   \n-\tOpen the `setupcomplete.cmd` file with notepad and add the below lines after `fltmc >nul || exit /b` line.    \n\t```\n\tcd /d \"%~dp0\"\n\tsetup.exe /configure Configuration.xml\n\t```\n- \tSave the $OEM$ folder into the ISO as per above instructions, that's it.\n\n<br/> \n\n::: danger How to Remove Activations ?\n\n::: details  Click here to see the details\n\n- **HWID:** A digital license is stored on Microsoft's servers and tied to your hardware. It cannot be \"removed\" in the traditional sense. A major hardware change (like the motherboard) will invalidate it.  To return to an unactivated state, you can install a generic KMS key.  [Extended details](./en/hwid)\n- **Online KMS / Ohook / KMS38:** Use the corresponding \"Uninstall\" or \"Remove\" option within the MAS script menu, then run the \"Fix Licensing\" option from the Troubleshoot menu.  [KMS details](./en/kms) and [KMS38 details](./en/kms38) \n- **TSforge:** This method only appends data and doesn't install files. To reset it, simply run the \"Fix Licensing\" option from the Troubleshoot menu in the MAS script.  [TSforge details](./en/tsforge)  \n\n:::\n\n\n[1]: https://github.com/NiREvil/windows-activation   \n\n[2]: https://learn.microsoft.com/en-us/windows-hardware/manufacture/desktop/add-a-custom-script-to-windows-setup?view=windows-11#windows-setup-scripts   \n\n[3]: https://www.anyburn.com/download.php   \n\n[4]: https://app.box.com/s/cwoxub9tqyowhnyva6ign6qnogb6vk0o   \n\n[5]: https://download.microsoft.com/download/1/6/F/16FA20E6-4662-482A-920B-1A45CF5AAE3C/14393.0.160715-1616.RS1_RELEASE_SERVER_EVAL_X64FRE_EN-US.ISO   \n"
  },
  {
    "path": "docs/wa/office-license-is-not-genuine.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'Get genuine Office'\ndescription: 'Office Click-to-Run builds since February 2021, that are activated with KMS check the existence of a KMS server name in the registry'\ndate: 2024-08-05\neditLink: true\n---\n\n# 'Get genuine Office' banner\n\n<img width=\"1118\" height=\"87\" alt=\"image\" src=\"https://github.com/user-attachments/assets/80014636-3c17-4509-a3fc-4a63e436a240\" />\n\nTo discourage the use of pirated Office, the Office team began implementing checks in Office C2R in February 2021 to display a banner prompting users to buy genuine Office. Since most piracy tutorials on YouTube used retail Office installers and then manually installed volume licenses and activated them with m-s-guides KMS server, the Office team started to show them banners to buy genuine licenses. Along the way, they added some more checks and mistakenly started showing it to Volume Office 2024 genuine users as well (MS forgot to update the checks). Below you can find more details on it.\n\n## When does the banner appear?\n\n- Office Click-to-Run builds (since February 2021) that are activated with KMS check the existence of a KMS server name in the registry. If the KMS server is not present, a banner is shown in Office programs notifying that \"Office isn't licensed properly\"\n- If 32-bit Office is installed on 64-bit Windows, Office checks the KMS server existence in the corresponding WOW6432Node registry key as well.\n- Apart from this, they also detect if a registered KMS server is on their blacklist or not. As far as I know, the below 3 addresses are blacklisted.\n  `km-s8.MSG-uides.com` `km-s9.MSG-uides.com` `0.0.0.0` (Remove hyphen)\n  The first two are public KMS servers and the last one is not a real IP.\n- These above checks are not performed by Office if the proper installation of the Volume version of Office is done with the PerpetualVL2019 / PerpetualVL2021 channel.\n    However, with the release of the Office PerpetualVL2024 channel, they haven't updated the checks yet, and as a result, if any of the above conditions are met then Office will show a banner, even to the genuine customers.\n\n## Solutions:\n\nBelow, you can find various ways of avoiding this banner. The simplest option for you is to just use an Office activation tool mentioned here.\n\n### 1- Activation Tools\n\n- Use [MAS](./index#step2) or abbodi1406's [KMS_VL_ALL][1] to activate Office.\n\n\n### 2- Manual Activation\n\nIn this section, I'm only going to mention how to set up the KMS server in the registry properly.\n\n- **If using Public KMS server:**\n    Since they can put any public KMS server on the blacklist, as a permanent solution, we can instead use server IP instead of hostname.\n\n- **If using private KMS server IP:**\n    Make sure to use a valid private IP address.\n\nBelow, you can find how to set the KMS server address in the registry. For example, with a private IP `10.0.0.10`\n\n```reg\nreg delete \"HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\SoftwareProtectionPlatform\\0ff1ce15-a989-479d-af46-f275c6370663\" /f\n\nreg delete \"HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\SoftwareProtectionPlatform\\0ff1ce15-a989-479d-af46-f275c6370663\" /f /reg:32\n\nreg add \"HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\SoftwareProtectionPlatform\" /f /v KeyManagementServiceName /t REG_SZ /d \"10.0.0.10\"\n\nreg add \"HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\SoftwareProtectionPlatform\" /f /v KeyManagementServiceName /t REG_SZ /d \"10.0.0.10\" /reg:32\n```\n\n### 3- Install VL Office\n\nAs mentioned in the Reasons section, these checks are performed only if Retail Office is installed and was later converted to VL. The office doesn't perform any kind of related checks if the proper installation of the VL office is done. (Not applicable to PerpetualVL2024)\n\nPlease see the guide [here][2] for VL Office installation.\n\n### 4- Change Update Channel\n\nIf we change the Insider or Current update channel **to** Monthly Enterprise or Semi-Annual channel then such non-genuine banners won't appear by default.\n\nYou can find this option in [MAS](./index#step2) under Change Office edition option.\n\n## Troubleshoot  \n\n::: danger Troubleshoot\n\n- If you need any help regarding this, first review the [**FAQ section**](./faq) — your answer will most likely be there.  \n\n- If your issue persists — You can [**Contact Us**](./troubleshoot).\n\n:::\n\n[1]: https://github.com/abbodi1406/KMS_VL_ALL_AIO/\n[2]: https://gravesoft.dev/office_c2r_custom\n"
  },
  {
    "path": "docs/wa/office_c2r.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'Office C2R Custom Install'\ndescription: 'office custom installation method'\ndate: 2025-05-08\neditLink: true\n---\n\n# Office C2R Custom Install\n\n::: info Note\n- If the below guide is confusing to you then the simplest option for you is to use [Office C2R Installer][1].     \n- Retail Office (e.g. O365) has latest feature updates and Volume Office (e.g. ProPlus 2024) doesn't.    \n- Please note that in the official C2R office custom installation method, there is no ISO or any one-click solution available. Below is the simplest guide to installing customized office.    \n\n:::\n\n<br/>  \n\n## Custom Installation Guide\n\n-   If Office was ever installed before,\n\t- Uninstall Office with the App and Features option in Windows settings.\n\t- Run `OfficeScrubber.cmd` file from [Office Scrubber][2] by abbodi1406 and select `[R] Remove all Licenses` option.\n-   Create a new folder named `Office` in `C:\\` drive, example `C:\\Office`\n-   Download [Office Deployment Tool][3] (ODT)\n-   Copy the downloaded `setup.exe` file to that Office folder which you created, example `C:\\Office\\setup.exe`\n-   Go to [config.office.com][4]\n-   If you want Retail Office then select `Microsoft 365 Apps for enterprise` in the office suites section.\n-   If you want Volume Office then select `Office LTSC Professional Plus 2024 - Volume License` in the office suites section. (Don't select the SPLA version)\n-   You can add Visio and Project apps if you need them, but ensure that [Project][5] / [Visio][6] supported language is selected.\n-   If you are planning to download Office files and install them later, then ensure that you select a specific version number instead of the latest in the `Select the version` option.\n-   You need to configure the options till \"Language\" section only. You can leave the rest as default.\n-   Click on the export button, select \"Keep Current Settings\" option and it will download a file named `Configuration.xml` (If the name is something else then change it to `Configuration.xml`\n-   Copy the downloaded `Configuration.xml` file to that Office folder which you created, example `C:\\Office\\Configuration.xml`\n\n-   Open the **command prompt** (not Powershell) **as admin** and run the below commands.  \n    ```         \n    cd /d C:\\Office\\\n    setup.exe /configure Configuration.xml\n    ```\n\n**It will now install Office.**\n\n-\tEnsure that you have selected a specific version number in the configuration as per the above steps.\n-   Open the **command prompt** (not Powershell) **as admin** and run the below commands  \n\t- Download Office files\n    ```         \n    cd /d C:\\Office\\\n    setup.exe /download Configuration.xml\n    ```\n\t- Install Office from the downloaded Office files (can be done Offline)\n\t```\n\tcd /d C:\\Office\\\n    setup.exe /configure Configuration.xml\n    ```\n\n<br/>\n\n::: tip **Common errors**  \n\n- Make sure you are entering those commands in command prompt (CMD) as administrator privilege.  \n \n- File name extensions are hidden by default in Windows. Due to that, some people might incorrectly rename `Configuration.xml` to `Configuration.xml.xml` because `.xml` was not visible.   \n\n:::\n\n<br/>  \n\n### Alternative Methods  \n-  [YAOCTRU][7] (Office Downloader) & [YAOCTRI][8] (Office Installer)\n-  [Office Tool Plus][9].  \n\n[1]: https://gravesoft.dev/office_c2r_links\n[2]: https://github.com/abbodi1406/WHD/raw/master/scripts/OfficeScrubber_13.zip\n[3]: https://officecdn.microsoft.com/pr/wsus/setup.exe\n[4]: https://config.office.com/deploymentsettings\n[5]: https://learn.microsoft.com/en-us/projectonline/supported-languages-for-project-online  \n[6]: https://support.microsoft.com/en-us/office/display-languages-supported-in-the-visio-desktop-app-a921983e-fd5d-45ef-8af1-cedf70c53d75\n[7]: https://github.com/abbodi1406/WHD/raw/master/scripts/YAOCTRU_v10.0.zip  \n[8]: https://github.com/abbodi1406/WHD/raw/master/scripts/YAOCTRI_v11.1.zip  \n[9]: http://otp.landian.vip/  \n"
  },
  {
    "path": "docs/wa/ohook.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'Ohook Activation'\ndescription: 'Ohook activation method can activate all kinds of Office versions on Windows Vista and higher and their Server equivalent except Office UWP apps.'\ndate: 2025-05-04\neditLink: true\nhead:\n  - - meta\n    - name: description\n      content: ohook, activation office, office 365, office 2013, office 2019, office 2021, activate all kinds of Office versions\n---\n\n# Ohook Activation\n\n## Overview\n\n::: tip How to use it?\n\n- Please find the instructions [here](index#step2).\n\n- This activation method can activate all kinds of Office versions on Windows Vista and higher and their Server equivalent except Office UWP apps.\n- This activation method works offline and activates Office permanently.\n- This activation method can survive Office repairs, Office updates, and even Windows major feature upgrades. You do not need to reactivate in these cases.\n- For the O365 subscription version, you can't get server side O365 specific features such as 1TB storage in Onedrive. However, almost all other features and 5GB storage in free onedrive account would work fine.\n- This activation method does not modify/patch any onboard system files, instead it installs a custom SPPC.dll (open source) file for the activation to work. Check further details in below \"How does it work?\" section.\n\n:::\n\n## How does it work?\n\n#### For SPP based Office:\n\n![beforohook](/mas_before_ohook.svg)\n\n-   As illustrated in the above 1st image, in the Official activation process of SPP based Office, Office asks `C:\\Windows\\System32\\sppc.dll` about the activation status and that file asks the same thing to SPP (Software Protection Platform) `C:\\Windows\\System32\\sppsvc.exe` and returns the message back to Office.\n\n![afterohook](/mas_after_ohook.svg)\n\n-   As illustrated in the above 2nd image, we modify this behavior by placing a custom `sppc.dll` file in Office folder without touching system's `C:\\Windows\\System32\\sppc.dll` file and that custom file always returns the message that Office is activated. This is how ohook activation works.\n-   You can find the source code of ohook custom sppc.dll file [here][1].\n\n\n## Supported Products\n\nTL;DR all kinds of Office products are supported on Windows Vista and higher and their Server equivalent except Office UWP apps.\n\n### Office 2010 (14.0)\n\n::: warning Note\n\nYou can use this `FJ44M-DX23P-QRWQ8-RXY39-HFQTC` ltFree OEM key to install any retail version of Office 2010.\n\n:::\n\n<br/>\n\n| Office Version | Office Product                                                      | Blocked keys sourced from the Internet | Key Type |\n|----------------|---------------------------------------------------------------------|----------------------------------------|----------|\n| v14.0 (2010)   | AccessR                                                             | 7KTYC-XR43P-C3MRW-BJKFD-XBYPG          | Retail   |\n| v14.0 (2010)   | AccessRuntimeR                                                      | 7XHPQ-BQMYG-YBP49-CY8B2-T8CGQ          | ByPass   |\n| v14.0 (2010)   | AccessVL                                                            | 89RTQ-MT4GK-6CPTX-WWP7C-J9KXR          | MAK      |\n| v14.0 (2010)   | ExcelVL                                                             | 39TRR-C2F37-9WYJ2-MJQXH-B938K          | MAK      |\n| v14.0 (2010)   | GrooveVL                                                            | RCGT3-FPQDV-H49CD-PPDBF-TH47G          | MAK      |\n| v14.0 (2010)   | HomeBusinessR [HomeBusinessDemoR]                                   | 3YR9B-D9W79-BY66R-R8XYP-QYYYY          | Retail   |\n| v14.0 (2010)   | HomeStudentR [HomeStudentDemoR]                                     | 3X43R-HHHXX-FRHRW-2M2WJ-8VPHD          | Retail   |\n| v14.0 (2010)   | InfoPathR                                                           | XDGJY-KFHW9-JWX9X-YM4GW-GC8WR          | Retail   |\n| v14.0 (2010)   | InfoPathVL                                                          | 6GKT2-KMJPK-4RRBF-8VQKB-JB6G6          | MAK      |\n| v14.0 (2010)   | OneNoteR [HSOneNoteR]                                               | 2TG3P-9DB76-4YT99-8RXGD-CWXBP          | Retail   |\n| v14.0 (2010)   | OneNoteVL                                                           | CV64P-F4VRH-BJ33D-PH6MR-X69RY          | MAK      |\n| v14.0 (2010)   | OutlookVL                                                           | J8C9M-YXMH2-9CX44-2C3YG-V7692          | MAK      |\n| v14.0 (2010)   | PersonalR [PersonalDemoR,PersonalPrepaidR]                          | GMBWM-WVX26-7WHV4-DB43D-WVDY2          | Retail   |\n| v14.0 (2010)   | PowerPointVL                                                        | HPBQP-RJHDR-Q3472-PT9Q6-PBB72          | MAK      |\n| v14.0 (2010)   | ProfessionalR [ProfessionalAcadR,ProfessionalDemoR,OEM-SingleImage] | 367X9-9HP9R-TKHY6-DH4QH-K9PY7          | Retail   |\n| v14.0 (2010)   | ProjectProR [ProjectProMSDNR]                                       | 6JD4G-KRW3J-48MGV-DM6FC-T9WKR          | Retail   |\n| v14.0 (2010)   | ProjectProVL                                                        | 3XDTH-MMGJ6-F9MKX-THP8D-G9BP7          | MAK      |\n| v14.0 (2010)   | ProjectStdR                                                         | 2W96V-RTQ9R-2BPVT-PT8H9-MV68T          | Retail   |\n| v14.0 (2010)   | ProjectStdVL                                                        | 4DTT4-D4MKX-23KFH-JKR6T-YKG2J          | MAK      |\n| v14.0 (2010)   | ProPlusR [ProPlusAcadR,ProPlusMSDNR,Sub4R]                          | 2J9H6-H4D3G-PCXD2-96XVM-TRR73          | Retail   |\n| v14.0 (2010)   | ProPlusVL [ProPlusAcadVL]                                           | 6CD6C-9R8PB-T2D9Y-8RKKX-W7DFK          | MAK      |\n| v14.0 (2010)   | PublisherR                                                          | CTRJP-P72VV-JBF8Y-4W6WW-HXHVG          | Retail   |\n| v14.0 (2010)   | PublisherVL                                                         | 32YG9-3VX77-YXJVV-PRVFW-TT8BV          | MAK      |\n| v14.0 (2010)   | SmallBusBasicsVL                                                    | 7VKXH-9BWCG-RPTBB-JBRV3-GRHYC          | MAK      |\n| v14.0 (2010)   | SPDR                                                                | H48K6-FB4Y6-P83GH-9J7XG-HDKKX          | ByPass   |\n| v14.0 (2010)   | StandardR [StandardMSDNR][KeyisforMSDNR]                            | W3BTX-H6BW7-Q6DFW-BXFFY-8RVJP          | Retail   |\n| v14.0 (2010)   | StandardVL [StandardAcadVL]                                         | 2XTQP-GDR7C-GTXPC-6W6PV-4RXGC          | MAK      |\n| v14.0 (2010)   | StarterR                                                            | VXHHB-W7HBD-7M342-RJ7P8-CHBD6          | ByPass   |\n| v14.0 (2010)   | VisioSIR Prem[Pro,Std]                                              | 2RDPT-WPYQM-C2WXF-BTPDW-2J2HM          | Retail   |\n| v14.0 (2010)   | VisioSIVL Prem[Pro,Std]                                             | 7PKFT-X2MKQ-GT6X2-8CB2W-CHC9K          | MAK      |\n| v14.0 (2010)   | WordVL                                                              | 6J3XK-DFKGK-X373V-QJHYM-V3FC2          | MAK      |\n\nWe couldn't find any keys (blocked/generic doesn't matter) for these Office 2010 products. If you have them, please share with us.\n\n```\n4eaff0d0-c6cb-4187-94f3-c7656d49a0aa    Retail      ExcelR_[HSExcelR]\n7004b7f0-6407-4f45-8eac-966e5f868bde    Retail      GrooveR\nfbf4ac36-31c8-4340-8666-79873129cf40    Retail      OutlookR\n133c8359-4e93-4241-8118-30bb18737ea0    Retail      PowerPointR_[HSPowerPointR]\ndb3bbc9c-ce52-41d1-a46f-1a1d68059119    Retail      WordR_[HSWordR]\ndbe3aee0-5183-4ff7-8142-66050173cb01    Retail      SmallBusBasicsR_[SmallBusBasicsMSDNR]\n```\n\nThese installers are not publicly available, so it doesn't matter if we don't have their keys.\n\n```\n19316117-30a8-4773-8fd9-7f7231f4e060    SubPrepid   HomeBusinessSubR\n4d06f72e-fd50-4bc2-a24b-d448d7f17ef2    SubPrepid   ProjectProSubR\ne98ef0c0-71c4-42ce-8305-287d8721e26c    SubPrepid   ProPlusSubR\n14f5946a-debc-4716-babc-7e2c240fec08    Retail      MondoR\n533b656a-4425-480b-8e30-1a2358898350    MAK         MondoVL\n```\n\n<br/>\n\n### Office 2013 (15.0)\n\n| Office Version | Office Product           | Generated Generic Key         | Key Type     |\n|----------------|--------------------------|-------------------------------|--------------|\n| v15.0 (2013)   | AccessRetail             | B7RFY-7NXPK-Q4342-Y9X2H-3JX4X | Retail       |\n| v15.0 (2013)   | AccessRuntimeRetail      | X3XNB-HJB7K-66THH-8DWQ3-XHGJP | Bypass       |\n| v15.0 (2013)   | AccessVolume             | 9MF9G-CN32B-HV7XT-9XJ8T-9KVF4 | MAK          |\n| v15.0 (2013)   | ExcelRetail              | NT889-MBH4X-8MD4H-X8R2D-WQHF8 | Retail       |\n| v15.0 (2013)   | ExcelVolume              | Y3N36-YCHDK-XYWBG-KYQVV-BDTJ2 | MAK          |\n| v15.0 (2013)   | GrooveRetail             | BMK4W-6N88B-BP9QR-PHFCK-MG7GF | Retail       |\n| v15.0 (2013)   | GrooveVolume             | RN84D-7HCWY-FTCBK-JMXWM-HT7GJ | MAK          |\n| v15.0 (2013)   | HomeBusinessPipcRetail   | 2WQNF-GBK4B-XVG6F-BBMX7-M4F2Y | OEM-Perp     |\n| v15.0 (2013)   | HomeBusinessRetail       | YWD4R-CNKVT-VG8VJ-9333B-RCW9F | Subscription |\n| v15.0 (2013)   | HomeStudentARMRetail     | B92QY-NKYFQ-6KTKH-VWW2Q-3PB3B | OEM-ARM      |\n| v15.0 (2013)   | HomeStudentPlusARMRetail | QPG96-CNT7M-KH36K-KY4HQ-M7TBR | OEM-ARM      |\n| v15.0 (2013)   | HomeStudentRetail        | 6WW3N-BDGM9-PCCHD-9QPP9-P34QG | Subscription |\n| v15.0 (2013)   | InfoPathRetail           | RV7NQ-HY3WW-7CKWH-QTVMW-29VHC | Retail       |\n| v15.0 (2013)   | InfoPathVolume           | C4TGN-QQW6Y-FYKXC-6WJW7-X73VG | MAK          |\n| v15.0 (2013)   | LyncAcademicRetail       | 6MDN4-WF3FV-4WH3Q-W699V-RGCMY | PrepidBypass |\n| v15.0 (2013)   | LyncEntryRetail          | N42BF-CBY9F-W2C7R-X397X-DYFQW | PrepidBypass |\n| v15.0 (2013)   | LyncRetail               | 89P23-2NK2R-JXM2M-3Q8R8-BWM3Y | Retail       |\n| v15.0 (2013)   | LyncVolume               | 3WKCD-RN489-4M7XJ-GJ2GQ-YBFQ6 | MAK          |\n| v15.0 (2013)   | MondoRetail              | VNWHF-FKFBW-Q2RGD-HYHWF-R3HH2 | Subscription |\n| v15.0 (2013)   | MondoVolume              | 2YNYQ-FQMVG-CB8KW-6XKYD-M7RRJ | MAK          |\n| v15.0 (2013)   | OneNoteFreeRetail        | 4TGWV-6N9P6-G2H8Y-2HWKB-B4FF4 | Bypass       |\n| v15.0 (2013)   | OneNoteRetail            | 3KXXQ-PVN2C-8P7YY-HCV88-GVGQ6 | Retail       |\n| v15.0 (2013)   | OneNoteVolume            | JDMWF-NJC7B-HRCHY-WFT8G-BPXD9 | MAK          |\n| v15.0 (2013)   | OutlookRetail            | 9N4RQ-CF8R2-HBVCB-J3C9V-94P4D | Retail       |\n| v15.0 (2013)   | OutlookVolume            | HNG29-GGWRG-RFC8C-JTFP4-2J9FH | MAK          |\n| v15.0 (2013)   | PersonalPipcRetail       | 9CYB3-NFMRW-YFDG6-XC7TF-BY36J | OEM-Perp     |\n| v15.0 (2013)   | PersonalRetail           | 2NCQJ-MFRMH-TXV83-J7V4C-RVRWC | Retail       |\n| v15.0 (2013)   | PowerPointRetail         | HVMN2-KPHQH-DVQMK-7B3CM-FGBFC | Retail       |\n| v15.0 (2013)   | PowerPointVolume         | 47DKN-HPJP7-RF9M3-VCYT2-TMQ4G | MAK          |\n| v15.0 (2013)   | ProPlusRetail            | N3QMM-GKDT3-JQGX6-7X3MQ-4GBG3 | Retail       |\n| v15.0 (2013)   | ProPlusVolume            | QKHNX-M9GGH-T3QMW-YPK4Q-QRP9V | MAK          |\n| v15.0 (2013)   | ProfessionalPipcRetail   | CF9DD-6CNW2-BJWJQ-CVCFX-Y7TXD | OEM-Perp     |\n| v15.0 (2013)   | ProfessionalRetail       | MBQBN-CQPT6-PXRMC-TYJFR-3C8MY | Retail       |\n| v15.0 (2013)   | ProjectProRetail         | WPY8N-PDPY4-FC7TF-KMP7P-KWYFY | Subscription |\n| v15.0 (2013)   | ProjectProVolume         | WFCT2-NBFQ7-JD7VV-MFJX6-6F2CM | MAK          |\n| v15.0 (2013)   | ProjectStdRetail         | NTHQT-VKK6W-BRB87-HV346-Y96W8 | Subscription |\n| v15.0 (2013)   | ProjectStdVolume         | 3CNQX-T34TY-99RH4-C4YD2-KWYGV | MAK          |\n| v15.0 (2013)   | PublisherRetail          | TWNCJ-YR84W-X7PPF-6DPRP-D67VC | Retail       |\n| v15.0 (2013)   | PublisherVolume          | DJPHV-NCJV6-GWPT6-K26JX-C7GX6 | MAK          |\n| v15.0 (2013)   | SPDRetail                | 3NY6J-WHT3F-47BDV-JHF36-2343W | PrepidBypass |\n| v15.0 (2013)   | StandardRetail           | V6VWN-KC2HR-YYDD6-9V7HQ-7T7VP | Retail       |\n| v15.0 (2013)   | StandardVolume           | 9TN6B-PCYH4-MCVDQ-KT83C-TMQ7T | MAK          |\n| v15.0 (2013)   | VisioProRetail           | NVK2G-2MY4G-7JX2P-7D6F2-VFQBR | Subscription |\n| v15.0 (2013)   | VisioProVolume           | YN7CF-XRH6R-CGKRY-GKPV3-BG7WF | MAK          |\n| v15.0 (2013)   | VisioStdRetail           | NCRB7-VP48F-43FYY-62P3R-367WK | Subscription |\n| v15.0 (2013)   | VisioStdVolume           | RX63Y-4NFK2-XTYC8-C6B3W-YPXPJ | MAK          |\n| v15.0 (2013)   | WordRetail               | NB77V-RPFQ6-PMMKQ-T87DV-M4D84 | Retail       |\n| v15.0 (2013)   | WordVolume               | RPHPB-Y7NC4-3VYFM-DW7VD-G8YJ8 | MAK          |\n\n<br/>\n\n### Office 365 (15.0)\n\n| Office Version | Office Product         | Generated Generic Key         | Key Type      |\n|----------------|------------------------|-------------------------------|---------------|\n| v15.0 (O365)   | O365BusinessRetail     | Y9NF9-M2QWD-FF6RJ-QJW36-RRF2T | SubTest       |\n| v15.0 (O365)   | O365HomePremRetail     | 3NMDC-G7C3W-68RGP-CB4MH-4CXCH | SubTest1      |\n| v15.0 (O365)   | O365ProPlusRetail      | H8DN8-Y2YP3-CR9JT-DHDR9-C7GP3 | Subscription2 |\n| v15.0 (O365)   | O365SmallBusPremRetail | 2QCNB-RMDKJ-GC8PB-7QGQV-7QTQJ | Subscription2 |\n\n<br/>\n\n### Office 365 (16.0)\n\n| Office Version | Office Product         | Generated Generic Key         | Key Type      |\n|----------------|------------------------|-------------------------------|---------------|\n| v16.0 (O365)   | O365AppsBasicRetail    | 3HYJN-9KG99-F8VG9-V3DT8-JFMHV | Subscription  |\n| v16.0 (O365)   | O365BusinessRetail     | Y9NF9-M2QWD-FF6RJ-QJW36-RRF2T | SubTest       |\n| v16.0 (O365)   | O365EduCloudRetail     | W62NQ-267QR-RTF74-PF2MH-JQMTH | Subscription  |\n| v16.0 (O365)   | O365HomePremRetail     | 3NMDC-G7C3W-68RGP-CB4MH-4CXCH | SubTest1      |\n| v16.0 (O365)   | O365ProPlusRetail      | H8DN8-Y2YP3-CR9JT-DHDR9-C7GP3 | Subscription2 |\n| v16.0 (O365)   | O365SmallBusPremRetail | 2QCNB-RMDKJ-GC8PB-7QGQV-7QTQJ | Subscription2 |\n\n<br/>\n\n### Office 2016 (16.0)\n\n| Office Version | Office Product              | Generated Generic Key         | Key Type     |\n|----------------|-----------------------------|-------------------------------|--------------|\n| v16.0 (2016)   | AccessRetail                | WHK4N-YQGHB-XWXCC-G3HYC-6JF94 | Retail       |\n| v16.0 (2016)   | AccessRuntimeRetail         | RNB7V-P48F4-3FYY6-2P3R3-63BQV | PrepidBypass |\n| v16.0 (2016)   | AccessVolume                | JJ2Y4-N8KM3-Y8KY3-Y22FR-R3KVK | MAK          |\n| v16.0 (2016)   | ExcelRetail                 | RKJBN-VWTM2-BDKXX-RKQFD-JTYQ2 | Retail       |\n| v16.0 (2016)   | ExcelVolume                 | FVGNR-X82B2-6PRJM-YT4W7-8HV36 | MAK          |\n| v16.0 (2016)   | HomeBusinessPipcRetail      | 2WQNF-GBK4B-XVG6F-BBMX7-M4F2Y | OEM-Perp     |\n| v16.0 (2016)   | HomeBusinessRetail          | HM6FM-NVF78-KV9PM-F36B8-D9MXD | Retail       |\n| v16.0 (2016)   | HomeStudentARMRetail        | PBQPJ-NC22K-69MXD-KWMRF-WFG77 | OEM-ARM      |\n| v16.0 (2016)   | HomeStudentPlusARMRetail    | 6F2NY-7RTX4-MD9KM-TJ43H-94TBT | OEM-ARM      |\n| v16.0 (2016)   | HomeStudentRetail           | PNPRV-F2627-Q8JVC-3DGR9-WTYRK | Retail       |\n| v16.0 (2016)   | HomeStudentVNextRetail      | YWD4R-CNKVT-VG8VJ-9333B-RC3B8 | Retail       |\n| v16.0 (2016)   | MondoRetail                 | VNWHF-FKFBW-Q2RGD-HYHWF-R3HH2 | Subscription |\n| v16.0 (2016)   | MondoVolume                 | FMTQQ-84NR8-2744R-MXF4P-PGYR3 | MAK          |\n| v16.0 (2016)   | OneNoteFreeRetail           | XYNTG-R96FY-369HX-YFPHY-F9CPM | Bypass       |\n| v16.0 (2016)   | OneNoteRetail               | FXF6F-CNC26-W643C-K6KB7-6XXW3 | Retail       |\n| v16.0 (2016)   | OneNoteVolume               | 9TYVN-D76HK-BVMWT-Y7G88-9TPPV | MAK          |\n| v16.0 (2016)   | OutlookRetail               | 7N4KG-P2QDH-86V9C-DJFVF-369W9 | Retail       |\n| v16.0 (2016)   | OutlookVolume               | 7QPNR-3HFDG-YP6T9-JQCKQ-KKXXC | MAK          |\n| v16.0 (2016)   | PersonalPipcRetail          | 9CYB3-NFMRW-YFDG6-XC7TF-BY36J | OEM-Perp     |\n| v16.0 (2016)   | PersonalRetail              | FT7VF-XBN92-HPDJV-RHMBY-6VKBF | Retail       |\n| v16.0 (2016)   | PowerPointRetail            | N7GCB-WQT7K-QRHWG-TTPYD-7T9XF | Retail       |\n| v16.0 (2016)   | PowerPointVolume            | X3RT9-NDG64-VMK2M-KQ6XY-DPFGV | MAK          |\n| v16.0 (2016)   | ProPlusRetail               | GM43N-F742Q-6JDDK-M622J-J8GDV | Retail       |\n| v16.0 (2016)   | ProPlusVolume               | FNVK8-8DVCJ-F7X3J-KGVQB-RC2QY | MAK          |\n| v16.0 (2016)   | ProfessionalPipcRetail      | CF9DD-6CNW2-BJWJQ-CVCFX-Y7TXD | OEM-Perp     |\n| v16.0 (2016)   | ProfessionalRetail          | NXFTK-YD9Y7-X9MMJ-9BWM6-J2QVH | Retail       |\n| v16.0 (2016)   | ProjectProRetail            | WPY8N-PDPY4-FC7TF-KMP7P-KWYFY | Subscription |\n| v16.0 (2016)   | ProjectProVolume            | PKC3N-8F99H-28MVY-J4RYY-CWGDH | MAK          |\n| v16.0 (2016)   | ProjectProXVolume           | JBNPH-YF2F7-Q9Y29-86CTG-C9YGV | MAKC2R       |\n| v16.0 (2016)   | ProjectStdRetail            | NTHQT-VKK6W-BRB87-HV346-Y96W8 | Subscription |\n| v16.0 (2016)   | ProjectStdVolume            | 4TGWV-6N9P6-G2H8Y-2HWKB-B4G93 | MAK          |\n| v16.0 (2016)   | ProjectStdXVolume           | N3W2Q-69MBT-27RD9-BH8V3-JT2C8 | MAKC2R       |\n| v16.0 (2016)   | PublisherRetail             | WKWND-X6G9G-CDMTV-CPGYJ-6MVBF | Retail       |\n| v16.0 (2016)   | PublisherVolume             | 9QVN2-PXXRX-8V4W8-Q7926-TJGD8 | MAK          |\n| v16.0 (2016)   | SkypeServiceBypassRetail    | 6MDN4-WF3FV-4WH3Q-W699V-RGCMY | PrepidBypass |\n| v16.0 (2016)   | SkypeforBusinessEntryRetail | 4N4D8-3J7Y3-YYW7C-73HD2-V8RHY | PrepidBypass |\n| v16.0 (2016)   | SkypeforBusinessRetail      | PBJ79-77NY4-VRGFG-Y8WYC-CKCRC | Retail       |\n| v16.0 (2016)   | SkypeforBusinessVolume      | DMTCJ-KNRKR-JV8TQ-V2CR2-VFTFH | MAK          |\n| v16.0 (2016)   | StandardRetail              | 2FPWN-4H6CM-KD8QQ-8HCHC-P9XYW | Retail       |\n| v16.0 (2016)   | StandardVolume              | WHGMQ-JNMGT-MDQVF-WDR69-KQBWC | MAK          |\n| v16.0 (2016)   | VisioProRetail              | NVK2G-2MY4G-7JX2P-7D6F2-VFQBR | Subscription |\n| v16.0 (2016)   | VisioProVolume              | NRKT9-C8GP2-XDYXQ-YW72K-MG92B | MAK          |\n| v16.0 (2016)   | VisioProXVolume             | G98Q2-B6N77-CFH9J-K824G-XQCC4 | MAKC2R       |\n| v16.0 (2016)   | VisioStdRetail              | NCRB7-VP48F-43FYY-62P3R-367WK | Subscription |\n| v16.0 (2016)   | VisioStdVolume              | XNCJB-YY883-JRW64-DPXMX-JXCR6 | MAK          |\n| v16.0 (2016)   | VisioStdXVolume             | B2HTN-JPH8C-J6Y6V-HCHKB-43MGT | MAKC2R       |\n| v16.0 (2016)   | WordRetail                  | P8K82-NQ7GG-JKY8T-6VHVY-88GGD | Retail       |\n| v16.0 (2016)   | WordVolume                  | YHMWC-YN6V9-WJPXD-3WQKP-TMVCV | MAK          |\n\n<br/>\n\n### Office 2019 (16.0)\n\n| Office Version | Office Product                  | Generated Generic Key         | Key Type     |\n|----------------|---------------------------------|-------------------------------|--------------|\n| v16.0 (2019)   | Access2019Retail                | WRYJ6-G3NP7-7VH94-8X7KP-JB7HC | Retail       |\n| v16.0 (2019)   | Access2019Volume                | 6FWHX-NKYXK-BW34Q-7XC9F-Q9PX7 | MAK-AE       |\n| v16.0 (2019)   | AccessRuntime2019Retail         | FGQNJ-JWJCG-7Q8MG-RMRGJ-9TQVF | PrepidBypass |\n| v16.0 (2019)   | Excel2019Retail                 | KBPNW-64CMM-8KWCB-23F44-8B7HM | Retail       |\n| v16.0 (2019)   | Excel2019Volume                 | 8NT4X-GQMCK-62X4P-TW6QP-YKPYF | MAK-AE       |\n| v16.0 (2019)   | HomeBusiness2019Retail          | QBN2Y-9B284-9KW78-K48PB-R62YT | Retail       |\n| v16.0 (2019)   | HomeStudentARM2019Retail        | DJTNY-4HDWM-TDWB2-8PWC2-W2RRT | OEM-ARM      |\n| v16.0 (2019)   | HomeStudentPlusARM2019Retail    | NM8WT-CFHB2-QBGXK-J8W6J-GVK8F | OEM-ARM      |\n| v16.0 (2019)   | HomeStudent2019Retail           | XNWPM-32XQC-Y7QJC-QGGBV-YY7JK | Retail       |\n| v16.0 (2019)   | Outlook2019Retail               | WR43D-NMWQQ-HCQR2-VKXDR-37B7H | Retail       |\n| v16.0 (2019)   | Outlook2019Volume               | RN3QB-GT6D7-YB3VH-F3RPB-3GQYB | MAK-AE       |\n| v16.0 (2019)   | Personal2019Retail              | NMBY8-V3CV7-BX6K6-2922Y-43M7T | Retail       |\n| v16.0 (2019)   | PowerPoint2019Retail            | HN27K-JHJ8R-7T7KK-WJYC3-FM7MM | Retail       |\n| v16.0 (2019)   | PowerPoint2019Volume            | 29GNM-VM33V-WR23K-HG2DT-KTQYR | MAK-AE       |\n| v16.0 (2019)   | ProPlus2019Retail               | BN4XJ-R9DYY-96W48-YK8DM-MY7PY | Retail       |\n| v16.0 (2019)   | ProPlus2019Volume               | T8YBN-4YV3X-KK24Q-QXBD7-T3C63 | MAK-AE       |\n| v16.0 (2019)   | Professional2019Retail          | 9NXDK-MRY98-2VJV8-GF73J-TQ9FK | Retail       |\n| v16.0 (2019)   | ProjectPro2019Retail            | JDTNC-PP77T-T9H2W-G4J2J-VH8JK | Retail       |\n| v16.0 (2019)   | ProjectPro2019Volume            | TBXBD-FNWKJ-WRHBD-KBPHH-XD9F2 | MAK-AE       |\n| v16.0 (2019)   | ProjectStd2019Retail            | R3JNT-8PBDP-MTWCK-VD2V8-HMKF9 | Retail       |\n| v16.0 (2019)   | ProjectStd2019Volume            | RBRFX-MQNDJ-4XFHF-7QVDR-JHXGC | MAK-AE       |\n| v16.0 (2019)   | Publisher2019Retail             | 4QC36-NW3YH-D2Y9D-RJPC7-VVB9D | Retail       |\n| v16.0 (2019)   | Publisher2019Volume             | K8F2D-NBM32-BF26V-YCKFJ-29Y9W | MAK-AE       |\n| v16.0 (2019)   | SkypeforBusiness2019Retail      | JBDKF-6NCD6-49K3G-2TV79-BKP73 | Retail       |\n| v16.0 (2019)   | SkypeforBusiness2019Volume      | 9MNQ7-YPQ3B-6WJXM-G83T3-CBBDK | MAK-AE       |\n| v16.0 (2019)   | SkypeforBusinessEntry2019Retail | N9722-BV9H6-WTJTT-FPB93-978MK | PrepidBypass |\n| v16.0 (2019)   | Standard2019Retail              | NDGVM-MD27H-2XHVC-KDDX2-YKP74 | Retail       |\n| v16.0 (2019)   | Standard2019Volume              | NT3V6-XMBK7-Q66MF-VMKR4-FC33M | MAK-AE       |\n| v16.0 (2019)   | VisioPro2019Retail              | 2NWVW-QGF4T-9CPMB-WYDQ9-7XP79 | Retail       |\n| v16.0 (2019)   | VisioPro2019Volume              | 33YF4-GNCQ3-J6GDM-J67P3-FM7QP | MAK-AE       |\n| v16.0 (2019)   | VisioStd2019Retail              | 263WK-3N797-7R437-28BKG-3V8M8 | Retail       |\n| v16.0 (2019)   | VisioStd2019Volume              | BGNHX-QTPRJ-F9C9G-R8QQG-8T27F | MAK-AE       |\n| v16.0 (2019)   | Word2019Retail                  | JXR8H-NJ3MK-X66W8-78CWD-QRVR2 | Retail       |\n| v16.0 (2019)   | Word2019Volume                  | 9F36R-PNVHH-3DXGQ-7CD2H-R9D3V | MAK-AE       |\n\n<br/>\n\n### Office 2021 (16.0)\n\n| Office Version | Office Product             | Generated Generic Key         | Key Type     |\n|----------------|----------------------------|-------------------------------|--------------|\n| v16.0 (2021)   | Access2021Retail           | P286B-N3XYP-36QRQ-29CMP-RVX9M | Retail       |\n| v16.0 (2021)   | AccessRuntime2021Retail    | MNX9D-PB834-VCGY2-K2RW2-2DP3D | Bypass       |\n| v16.0 (2021)   | Access2021Volume           | JBH3N-P97FP-FRTJD-MGK2C-VFWG6 | MAK-AE       |\n| v16.0 (2021)   | Excel2021Retail            | V6QFB-7N7G9-PF7W9-M8FQM-MY8G9 | Retail       |\n| v16.0 (2021)   | Excel2021Volume            | WNYR4-KMR9H-KVC8W-7HJ8B-K79DQ | MAK-AE       |\n| v16.0 (2021)   | HomeBusiness2021Retail     | JM99N-4MMD8-DQCGJ-VMYFY-R63YK | Subscription |\n| v16.0 (2021)   | HomeStudent2021Retail      | N3CWD-38XVH-KRX2Y-YRP74-6RBB2 | Subscription |\n| v16.0 (2021)   | OneNoteFree2021Retail      | CNM3W-V94GB-QJQHH-BDQ3J-33Y8H | Bypass       |\n| v16.0 (2021)   | OneNote2021Retail          | NB2TQ-3Y79C-77C6M-QMY7H-7QY8P | Retail       |\n| v16.0 (2021)   | OneNote2021Volume          | THNKC-KFR6C-Y86Q9-W8CB3-GF7PD | MAK-AE       |\n| v16.0 (2021)   | Outlook2021Retail          | 4NCWR-9V92Y-34VB2-RPTHR-YTGR7 | Retail       |\n| v16.0 (2021)   | Outlook2021Volume          | JQ9MJ-QYN6B-67PX9-GYFVY-QJ6TB | MAK-AE       |\n| v16.0 (2021)   | Personal2021Retail         | RRRYB-DN749-GCPW4-9H6VK-HCHPT | Retail       |\n| v16.0 (2021)   | PowerPoint2021Retail       | 3KXXQ-PVN2C-8P7YY-HCV88-GVM96 | Retail1      |\n| v16.0 (2021)   | PowerPoint2021Volume       | 39G2N-3BD9C-C4XCM-BD4QG-FVYDY | MAK-AE       |\n| v16.0 (2021)   | ProPlus2021Retail          | 8WXTP-MN628-KY44G-VJWCK-C7PCF | Retail       |\n| v16.0 (2021)   | ProPlus2021Volume          | RNHJY-DTFXW-HW9F8-4982D-MD2CW | MAK-AE1      |\n| v16.0 (2021)   | ProPlusSPLA2021Volume      | JRJNJ-33M7C-R73X3-P9XF7-R9F6M | MAK-AE       |\n| v16.0 (2021)   | Professional2021Retail     | DJPHV-NCJV6-GWPT6-K26JX-C7PBG | Retail       |\n| v16.0 (2021)   | ProjectPro2021Retail       | QKHNX-M9GGH-T3QMW-YPK4Q-QRWMV | Retail       |\n| v16.0 (2021)   | ProjectPro2021Volume       | HVC34-CVNPG-RVCMT-X2JRF-CR7RK | MAK-AE1      |\n| v16.0 (2021)   | ProjectStd2021Retail       | 2B96V-X9NJY-WFBRC-Q8MP2-7CHRR | Retail       |\n| v16.0 (2021)   | ProjectStd2021Volume       | 3CNQX-T34TY-99RH4-C4YD2-KW6WH | MAK-AE       |\n| v16.0 (2021)   | Publisher2021Retail        | CDNFG-77T8D-VKQJX-B7KT3-KK28V | Retail1      |\n| v16.0 (2021)   | Publisher2021Volume        | 2KXJH-3NHTW-RDBPX-QFRXJ-MTGXF | MAK-AE       |\n| v16.0 (2021)   | SkypeforBusiness2021Retail | DVBXN-HFT43-CVPRQ-J89TF-VMMHG | Retail       |\n| v16.0 (2021)   | SkypeforBusiness2021Volume | R3FCY-NHGC7-CBPVP-8Q934-YTGXG | MAK-AE       |\n| v16.0 (2021)   | Standard2021Retail         | HXNXB-J4JGM-TCF44-2X2CV-FJVVH | Retail       |\n| v16.0 (2021)   | Standard2021Volume         | 2CJN4-C9XK2-HFPQ6-YH498-82TXH | MAK-AE       |\n| v16.0 (2021)   | StandardSPLA2021Volume     | BQWDW-NJ9YF-P7Y79-H6DCT-MKQ9C | MAK-AE       |\n| v16.0 (2021)   | VisioPro2021Retail         | T6P26-NJVBR-76BK8-WBCDY-TX3BC | Retail       |\n| v16.0 (2021)   | VisioPro2021Volume         | JNKBX-MH9P4-K8YYV-8CG2Y-VQ2C8 | MAK-AE       |\n| v16.0 (2021)   | VisioStd2021Retail         | 89NYY-KB93R-7X22F-93QDF-DJ6YM | Retail       |\n| v16.0 (2021)   | VisioStd2021Volume         | BW43B-4PNFP-V637F-23TR2-J47TX | MAK-AE       |\n| v16.0 (2021)   | Word2021Retail             | VNCC4-CJQVK-BKX34-77Y8H-CYXMR | Retail       |\n| v16.0 (2021)   | Word2021Volume             | BJG97-NW3GM-8QQQ7-FH76G-686XM | MAK-AE       |\n\n<br/>\n\n### Office 2024 (16.0)\n\n| Office Version | Office Product             | Generated Generic Key         | Key Type |\n|----------------|----------------------------|-------------------------------|----------|\n| v16.0 (2024)   | Access2024Retail           | P6NMW-JMTRC-R6MQ6-HH3F2-BTHKB | Retail   |\n| v16.0 (2024)   | Access2024Volume           | CXNJT-98HPP-92HX7-MX6GY-2PVFR | MAK-AE   |\n| v16.0 (2024)   | Excel2024Retail            | 82CNJ-W82TW-BY23W-BVJ6W-W48GP | Retail   |\n| v16.0 (2024)   | Excel2024Volume            | 7Y287-9N2KC-8MRR3-BKY82-2DQRV | MAK-AE   |\n| v16.0 (2024)   | Home2024Retail             | N69X7-73KPT-899FD-P8HQ4-QGTP4 | Retail   |\n| v16.0 (2024)   | HomeBusiness2024Retail     | PRKQM-YNPQR-77QT6-328D7-BD223 | Retail   |\n| v16.0 (2024)   | Outlook2024Retail          | 2CFK4-N44KG-7XG89-CWDG6-P7P27 | Retail   |\n| v16.0 (2024)   | Outlook2024Volume          | NQPXP-WVB87-H3MMB-FYBW2-9QFPB | MAK-AE   |\n| v16.0 (2024)   | PowerPoint2024Retail       | CT2KT-GTNWH-9HFGW-J2PWJ-XW7KJ | Retail   |\n| v16.0 (2024)   | PowerPoint2024Volume       | RRXFN-JJ26R-RVWD2-V7WMP-27PWQ | MAK-AE   |\n| v16.0 (2024)   | ProjectPro2024Retail       | GNJ6P-Y4RBM-C32WW-2VJKJ-MTHKK | Retail   |\n| v16.0 (2024)   | ProjectPro2024Volume       | WNFMR-HK4R7-7FJVM-VQ3JC-76HF6 | MAK-AE1  |\n| v16.0 (2024)   | ProjectStd2024Retail       | C2PNM-2GQFC-CY3XR-WXCP4-GX3XM | Retail   |\n| v16.0 (2024)   | ProjectStd2024Volume       | F2VNW-MW8TT-K622Q-4D96H-PWJ8X | MAK-AE   |\n| v16.0 (2024)   | ProPlus2024Retail          | VWCNX-7FKBD-FHJYG-XBR4B-88KC6 | Retail   |\n| v16.0 (2024)   | ProPlus2024Volume          | 4YV2J-VNG7W-YGTP3-443TK-TF8CP | MAK-AE1  |\n| v16.0 (2024)   | SkypeforBusiness2024Volume | XKRBW-KN2FF-G8CKY-HXVG6-FVY2V | MAK-AE   |\n| v16.0 (2024)   | Standard2024Volume         | GVG6N-6WCHH-K2MVP-RQ78V-3J7GJ | MAK-AE1  |\n| v16.0 (2024)   | VisioPro2024Retail         | HGRBX-N68QF-6DY8J-CGX4W-XW7KP | Retail   |\n| v16.0 (2024)   | VisioPro2024Volume         | GBNHB-B2G3Q-G42YB-3MFC2-7CJCX | MAK-AE   |\n| v16.0 (2024)   | VisioStd2024Retail         | VBXPJ-38NR3-C4DKF-C8RT7-RGHKQ | Retail   |\n| v16.0 (2024)   | VisioStd2024Volume         | YNFTY-63K7P-FKHXK-28YYT-D32XB | MAK-AE   |\n| v16.0 (2024)   | Word2024Retail             | XN33R-RP676-GMY2F-T3MH7-GCVKR | Retail   |\n| v16.0 (2024)   | Word2024Volume             | WD8CQ-6KNQM-8W2CX-2RT63-KK3TP | MAK-AE   |\n\n<br/>\n\n::: info Info\n\n- For the O365 subscription version, you can't get server side O365 specific features such as 1TB storage in Onedrive. However, almost all other features and 5GB storage in free onedrive account would work fine.\n- Script doesn't convert any product to Volume or vice-versa. All products are activated with their own licence.\n- For Office 2013 and later, key preference is given in this order, Retail:TB:Sub > Retail > OEM:NONSLP > Volume:MAK > Volume:GVLK\n- For Office 2010, key preference is given in this order, Retail > Volume:MAK\n\n:::\n\n## How to remove Ohook?\n\n::: tip In MAS\n\n- goto Ohook Activation and apply Uninstall option.\n- After that, In MAS, goto Troubleshoot and apply Fix Licensing option. (Optional)\n- Done ✔️\n\n:::\n\n## Unsupported Products\n\n- Office UWP (Store apps)\n  Use TSforge activation option for this.\n\n## Custom sppc.dll Info {#custom}\n\n- Custom sppc.dll source code (Ohook 0.5) is available [here][2].\n- SHA-256 checksums:\n```\n09865ea5993215965e8f27a74b8a41d15fd0f60f5f404cb7a8b3c7757acdab02 *sppc32.dll\n393a1fa26deb3663854e41f2b687c188a9eacd87b23f17ea09422c4715cb5a9f *sppc64.dll\n```\n- In MAS AIO version, these 2 files are encoded in base64 to make MAS AIO version. In AIO script, [instructions][3] are mentioned on how to decode files from Base64 format.\n**How to create identical sppc.dll files from scratch?**\n- Download ohook 0.5 source code file from [here][4]\n-   Extract this zip file to a folder named `C:\\ohook`\n-   Now download these two compiler archives, [mingw32][5] and [mingw64][5]\n-   Extract both archives with 7-zip in C drive, so that path would look like this,\n    `C:\\mingw32`\n    `C:\\mingw64`\n-   Open Powershell as admin and enter below command to set the time and date,\n    `Set-TimeZone -Id 'UTC'; $date=[datetime]'2023/8/7 12:00';while($true){set-date $date; start-sleep -milliseconds 10;}`\n-   Now open another window for Powershell and enter below commands to create sppc.dll files,\n    `Set-Location -Path C:\\ohook`\n    `C:\\mingw64\\bin\\mingw32-make.exe`\n-   Calculate the SHA-256 of the created sppc64.dll and sppc32.dll files using 7-zip or Powershell, it would be same as mentioned above.\n-   Done, you can now close Powershell windows and correct the date now.\n\n### Manual Activation\n\n- Check [here](./manual_ohook_activation)\n\n\n### Command line Switches\n\n- Check [here](./command_line_switches).\n\n\n### Setup Preactivate\n\n- Check the Extract OEM option in the MAS `Extras` section if you want pre-activated Windows installation.\n- Further read [here](./oem-folder).\n\n## Troubleshoot  \n\n::: danger Troubleshoot\n\n- If you need any help regarding this, first review the [**FAQ section**](./faq) — your answer will most likely be there.  \n\n- If your issue persists — You can [**Contact Us**](./troubleshoot).\n\n:::\n\n\n[1]: https://github.com/asdcorp/ohook\n[2]: https://stackoverflow.com/a/35335273\n[3]: https://github.com/asdcorp/ohook/archive/refs/tags/0.5.zip\n[4]: https://github.com/brechtsanders/winlibs_mingw/releases/download/11.4.0-11.0.0-ucrt-r1/winlibs-i686-posix-dwarf-gcc-11.4.0-mingw-w64ucrt-11.0.0-r1.7z\n[5]: https://github.com/brechtsanders/winlibs_mingw/releases/download/11.4.0-11.0.0-ucrt-r1/winlibs-x86_64-posix-seh-gcc-11.4.0-mingw-w64ucrt-11.0.0-r1.7z\n"
  },
  {
    "path": "docs/wa/online_kms.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'Online KMS Activation'\ndescription: 'KMS activates Windows – Office for 180 Days, For Windows Core – ProWMC editions it is 30 – 45 Days'\ndate: 2025-05-05\neditLink: true\n---\n\n# Online KMS Activation\n\n## Overview\n\n- How to use it? Please find the instructions [intro](./index#step2).\n- KMS activates Windows / Office for 180 Days. For Windows Core / ProWMC editions it is 30 / 45 Days.\n- This script can activate both Retail and Volume Windows installation.\n- This script can activate C2R Retail and VL Office, UWP Office, but not 2010 / 2013 MSI Retail Office.\n- This script skips the activation if Windows is permanently / KMS38 activated.\n- As mentioned, KMS activates only for a limited period and it's not permanent, read below on how to achieve lifetime activation.\n\n## Activation Renewal\n\nBy design in the genuine [KMS][1] activation method, the system contacts the registered server every 7 days, and if contacted successfully it will automatically renew and reset the activation for the full period of 180 days again, starting from the day of successful contact. If the system cannot contact the server, it will be deactivated after 180 days and it will remain deactivated until contact can be restored.\n\nTo get the lifetime activation, script by default creates auto renewal task.  \nIt creates the following two files,  \n`C:\\Program Files\\Activation-Renewal\\Activation_task.cmd`  \n`C:\\Program Files\\Activation-Renewal\\Info.txt`\n\nAnd creates a scheduled task `\\Activation-Renewal` to run the script every 7 days. This task registers the working KMS server and triggers activation commands only for the installed Volume products. The scheduled task runs only if the system is connected to the Internet.\n\nIf you don't want to install this renewal task, you can turn off the \"Renewal Task With Activation\" option in script menu <br/>\n\n## Remarks\n\n- With KMS Activation, you can update Windows/Office without any issues.\n- What is left in the system in the activation process?\n  - **If Renewal Task is installed:** After activation, it leaves the KMS Server IP in the registry, which helps you to get the global activation feature whereby the system auto-renews the activation. About files and scheduled tasks, it has been mentioned above.\n  - **If Renewal Task is NOT installed:** It leaves a non-existent IP 10.0.0.10 to avoid the Office Not Genuine Banner issue.\n- This script includes the most-stable KMS servers (16) list from all over the world. The server selection process is fully automatic. Script randomly selects a server, tests if it's online, if yes then apply the activation command, if fails, then retry this process maximum of total 3 times for a product. Such redundancy makes sure that we get the working KMS server at any time.\n- If your system date is incorrect (beyond 180 days) and you are offline, the system will be deactivated, but will automatically reactivate when you correct the system date.\n- The advantage of Online KMS activation is that it doesn't need any KMS binary file and the system can be activated using some manual commands or transparent batch script files. So this is for those who don't like/have difficulties/trust issues in offline KMS because of its binary files and antivirus detections.\n  But if you prefer offline KMS then checkout an open-source activator, abbodi1406's [KMS_VL_ALL][2].\n\n<hr/><br/>\n\n## Supported Products\n\n### Windows 10 / 11\n\n| Product Names                                         | EditionID                | Generic Volume License Key    |\n| ----------------------------------------------------- | ------------------------ | ----------------------------- |\n| Education                                             | Education                | NW6C2-QMPVW-D7KKK-3GKT6-VCFB2 |\n| Education N                                           | EducationN               | 2WH4N-8QGBV-H22JP-CT43Q-MDWWJ |\n| Enterprise                                            | Enterprise               | NPPR9-FWDCX-D2C8J-H872K-2YT43 |\n| Enterprise N                                          | EnterpriseN              | DPH2V-TTNVB-4X9Q3-TJR4H-KHJW4 |\n| Enterprise G                                          | EnterpriseG              | YYVX9-NTFWV-6MDM3-9PT4T-4M68B |\n| Enterprise G N                                        | EnterpriseGN             | 44RPN-FTY23-9VTTB-MP9BX-T84FV |\n| Enterprise LTSB 2016                                  | EnterpriseS              | DCPHK-NFMTC-H88MJ-PFHPY-QJ4BJ |\n| Enterprise LTSC 2019                                  | EnterpriseS              | M7XTQ-FN8P6-TTKYV-9D4CC-J462D |\n| Enterprise LTSC 2021                                  | EnterpriseS              | M7XTQ-FN8P6-TTKYV-9D4CC-J462D |\n| Enterprise LTSC 2024                                  | EnterpriseS              | M7XTQ-FN8P6-TTKYV-9D4CC-J462D |\n| Enterprise N LTSB 2016                                | EnterpriseSN             | QFFDN-GRT3P-VKWWX-X7T3R-8B639 |\n| Enterprise N LTSC 2019                                | EnterpriseSN             | 92NFX-8DJQP-P6BBQ-THF9C-7CG2H |\n| Enterprise N LTSC 2021                                | EnterpriseSN             | 92NFX-8DJQP-P6BBQ-THF9C-7CG2H |\n| Enterprise N LTSC 2024                                | EnterpriseSN             | 92NFX-8DJQP-P6BBQ-THF9C-7CG2H |\n| IoT Enterprise LTSC 2021 <br/> (19044.2788 and later) | IoTEnterpriseS           | KBN8V-HFGQ4-MGXVD-347P6-PDQGT |\n| IoT Enterprise LTSC 2024                              | IoTEnterpriseS           | KBN8V-HFGQ4-MGXVD-347P6-PDQGT |\n| Home                                                  | Core                     | TX9XD-98N7V-6WMQ6-BX7FG-H8Q99 |\n| Home N                                                | CoreN                    | 3KHY7-WNT83-DGQKR-F7HPR-844BM |\n| Home China                                            | CoreCountrySpecific      | PVMJN-6DFY6-9CCP6-7BKTT-D3WVR |\n| Home Single Language                                  | CoreSingleLanguage       | 7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH |\n| Lean                                                  | CloudE                   | NBTWJ-3DR69-3C4V8-C26MC-GQ9M6 |\n| Enterprise multi-session <br/> (17763 and later)      | ServerRdsh               | CPWHC-NT2C7-VYW78-DHDB2-PG3GK |\n| Enterprise multi-session <br/> (17134 and before)     | ServerRdsh               | 7NBT4-WGBQX-MP4H7-QXFF8-YP3KX |\n| Pro                                                   | Professional             | W269N-WFGWX-YVC9B-4J6C9-T83GX |\n| Pro N                                                 | ProfessionalN            | MH37W-N47XK-V7XM9-C7227-GCQG9 |\n| Pro Education                                         | ProfessionalEducation    | 6TP4R-GNPTD-KYYHQ-7B7DP-J447Y |\n| Pro Education N                                       | ProfessionalEducationN   | YVWGF-BXNMC-HTQYQ-CPQ99-66QFC |\n| Pro for Workstations                                  | ProfessionalWorkstation  | NRG8B-VKK3Q-CXVCJ-9G2XF-6Q84J |\n| Pro N for Workstations                                | ProfessionalWorkstationN | 9FNHH-K3HBT-3W4TD-6383H-6XYWF |\n| SE                                                    | CloudEdition             | 37D7F-N49CB-WQR8W-TBJ73-FM8RX |\n| SE N                                                  | CloudEditionN            | 6XN7V-PCBDC-BDBRH-8DQY7-G6R44 |\n\n<br/>\n\n### Windows Server 2025 (LTSC)\n\n| Product Names                        | EditionID        | Generic Volume License Key    |\n| ------------------------------------ | ---------------- | ----------------------------- |\n| Windows Server 2025 Standard         | ServerStandard   | TVRH6-WHNXV-R9WG3-9XRFY-MY832 |\n| Windows Server 2025 Datacenter       | ServerDatacenter | D764K-2NDRG-47T6Q-P8T8W-YP6DF |\n| Windows Server 2025 Azure Core       | ServerAzureCor   | FCNV3-279Q9-BQB46-FTKXX-9HPRH |\n| Windows Server 2025 Azure Datacenter | ServerTurbine    | XGN3F-F394H-FD2MY-PP6FD-8MCRC |\n\n<br/>\n\n### Windows Server 2022 (LTSC)\n\n| Product Names                        | EditionID        | Generic Volume License Key    |\n| ------------------------------------ | ---------------- | ----------------------------- |\n| Windows Server 2022 Datacenter       | ServerDatacenter | WX4NM-KYWYW-QJJR4-XV3QB-6VM33 |\n| Windows Server 2022 Standard         | ServerStandard   | VDYBN-27WPP-V4HQT-9VMD4-VMK7H |\n| Windows Server 2022 Azure Core       | ServerAzureCor   | 6N379-GGTMK-23C6M-XVVTC-CKFRQ |\n| Windows Server 2022 Azure Datacenter | ServerTurbine    | NTBV8-9K7Q8-V27C6-M2BTV-KHMXV |\n\n<br/>\n\n### Windows Server 2019 (LTSC)\n\n| Product Names                  | EditionID        | Generic Volume License Key    |\n| ------------------------------ | ---------------- | ----------------------------- |\n| Windows Server 2019 Datacenter | ServerDatacenter | WMDGN-G9PQG-XVVXX-R3X43-63DFG |\n| Windows Server 2019 Standard   | ServerStandard   | N69G4-B89J2-4G8F4-WWYCC-J464C |\n| Windows Server 2019 Essentials | ServerSolution   | WVDHN-86M7X-466P6-VHXV7-YY726 |\n| Windows Server 2019 Azure Core | ServerAzureCor   | FDNH6-VW9RW-BXPJ7-4XTYG-239TB |\n| Windows Server 2019 ARM64      | ServerARM64      | GRFBW-QNDC4-6QBHG-CCK3B-2PR88 |\n\n<br/>\n\n### Windows Server 2016 (LTSC)\n\n| Product Names                     | EditionID          | Generic Volume License Key    |\n| --------------------------------- | ------------------ | ----------------------------- |\n| Windows Server 2016 ARM64         | ServerARM64        | K9FYF-G6NCK-73M32-XMVPY-F9DRR |\n| Windows Server 2016 Datacenter    | ServerDatacenter   | CB7KF-BWN84-R7R2Y-793K2-8XDDG |\n| Windows Server 2016 Standard      | ServerStandard     | WC2BQ-8NRM3-FDDYY-2BFGV-KHKQY |\n| Windows Server 2016 Essentials    | ServerSolution     | JCKRF-N37P4-C2D82-9YXRT-4M63B |\n| Windows Server 2016 Cloud Storage | ServerCloudStorage | QN4C6-GBJD2-FB422-GHWJK-GJG2R |\n| Windows Server 2016 Azure Core    | ServerAzureCor     | VP34G-4NPPG-79JTQ-864T4-R3MQX |\n\n<br/>\n\n### Windows Server 23H2 (Annual Channel)\n\n| Product Names             | EditionID        | Generic Volume License Key    |\n| ------------------------- | ---------------- | ----------------------------- |\n| Windows Server Datacenter | ServerDatacenter | WX4NM-KYWYW-QJJR4-XV3QB-6VM33 |\n\n<br/>\n\n### Windows Server 20H2, 2004, 1909, 1903, and 1809 (Semi-Annual Channel)\n\n| Product Names             | EditionID            | Generic Volume License Key    |\n| ------------------------- | -------------------- | ----------------------------- |\n| Windows Server Datacenter | ServerDatacenterACor | 6NMRW-2C8FM-D24W7-TQWMY-CWH2D |\n| Windows Server Standard   | ServerStandardACor   | N2KJX-J94YW-TQVFB-DG9YT-724CC |\n\n<br/>\n\n### Windows Server 1803 (Semi-Annual Channel)\n\n| Product Names             | EditionID            | Generic Volume License Key    |\n| ------------------------- | -------------------- | ----------------------------- |\n| Windows Server Datacenter | ServerDatacenterACor | 2HXDN-KRXHB-GPYC7-YCKFJ-7FVDG |\n| Windows Server Standard   | ServerStandardACor   | PTXN8-JFHJM-4WC78-MPCBR-9W4KR |\n\n<br/>\n\n### Windows Server 1709 (Semi-Annual Channel)\n\n| Product Names             | EditionID            | Generic Volume License Key    |\n| ------------------------- | -------------------- | ----------------------------- |\n| Windows Server Datacenter | ServerDatacenterACor | 6Y6KB-N82V8-D8CQV-23MJW-BWTG6 |\n| Windows Server Standard   | ServerStandardACor   | DPCNP-XQFKJ-BJF7R-FRC8D-GF6G4 |\n\n<br/>\n\n### Windows 8.1\n\n| EditionID                    | Generic Volume License Key    |\n| ---------------------------- | ----------------------------- |\n| Enterprise                   | MHF9N-XY6XB-WVXMC-BTDCT-MKKG7 |\n| EnterpriseN                  | TT4HM-HN7YT-62K67-RGRQJ-JFFXW |\n| Professional                 | GCRJD-8NW9H-F2CDX-CCM8D-9D6T9 |\n| ProfessionalN                | HMCNV-VVBFX-7HMBH-CTY9B-B4FXY |\n| EmbeddedIndustryA            | VHXM3-NR6FT-RY6RT-CK882-KW2CJ |\n| EmbeddedIndustry             | NMMPB-38DD4-R2823-62W8D-VXKJB |\n| EmbeddedIndustryE            | FNFKF-PWTVT-9RC8H-32HB2-JB34X |\n| CoreARM                      | XYTND-K6QKT-K2MRH-66RTM-43JKP |\n| CoreN                        | 7B9N3-D94CG-YTVHR-QBPX3-RJP64 |\n| CoreCountrySpecific          | NCTT7-2RGK8-WMHRF-RY7YQ-JTXG3 |\n| CoreSingleLanguage           | BB6NG-PQ82V-VRDPW-8XVD2-V8P66 |\n| Core                         | M9Q9P-WNJJT-6PXPY-DWX8H-6XWKK |\n| ProfessionalWMC              | 789NJ-TQK6T-6XTH8-J39CJ-J8D3P |\n| CoreConnected                | 3PY8R-QHNP9-W7XQD-G6DPH-3J2C9 |\n| CoreConnectedN               | Q6HTR-N24GM-PMJFP-69CD8-2GXKR |\n| CoreConnectedSingleLanguage  | KF37N-VDV38-GRRTV-XH8X6-6F3BB |\n| CoreConnectedCountrySpecific | R962J-37N87-9VVK2-WJ74P-XTMHR |\n| ProfessionalStudent          | MX3RK-9HNGX-K3QKC-6PJ3F-W8D7B |\n| ProfessionalStudentN         | TNFGH-2R6PB-8XM3K-QYHX2-J4296 |\n\n<br/>\n\n### Windows Server 2012 R2\n\n| EditionID          | Generic Volume License Key    |\n| ------------------ | ----------------------------- |\n| ServerStandard     | D2N9P-3P6X9-2R39C-7RTCD-MDVJX |\n| ServerDatacenter   | W3GGN-FT8W3-Y4M27-J84CP-Q3VJ9 |\n| ServerSolution     | KNC87-3J2TX-XB4WP-VCPJV-M4FWM |\n| ServerCloudStorage | 3NPTF-33KPT-GGBPR-YX76B-39KDD |\n\n<br/>\n\n### Windows 8\n\n| EditionID           | Generic Volume License Key    |\n| ------------------- | ----------------------------- |\n| Enterprise          | 32JNW-9KQ84-P47T8-D8GGY-CWCK7 |\n| EnterpriseN         | JMNMF-RHW7P-DMY6X-RF3DR-X2BQT |\n| Professional        | NG4HW-VH26C-733KW-K6F98-J8CK4 |\n| ProfessionalN       | XCVCF-2NXM9-723PB-MHCB7-2RYQQ |\n| EmbeddedIndustry    | RYXVT-BNQG7-VD29F-DBMRY-HT73M |\n| EmbeddedIndustryE   | NKB3R-R2F8T-3XCDP-7Q2KW-XWYQ2 |\n| CoreARM             | DXHJF-N9KQX-MFPVR-GHGQK-Y7RKV |\n| CoreN               | 8N2M2-HWPGY-7PGT9-HGDD8-GVGGY |\n| CoreCountrySpecific | 4K36P-JN4VD-GDC6V-KDT89-DYFKP |\n| CoreSingleLanguage  | 2WN2H-YGCQR-KFX6K-CD6TF-84YXQ |\n| Core                | BN3D2-R7TKB-3YPBD-8DRP2-27GG4 |\n| ProfessionalWMC     | GNBB8-YVD74-QJHX6-27H4K-8QHDG |\n\n<br/>\n\n### Windows Server 2012\n\n| EditionID                | Generic Volume License Key    |\n| ------------------------ | ----------------------------- |\n| ServerStandard           | XC9B7-NBPP2-83J2H-RHMBY-92BT4 |\n| ServerDatacenter         | 48HP8-DN98B-MYWDG-T2DCC-8W83P |\n| ServerSolution           | HTDQM-NBMMG-KGYDT-2DTKT-J2MPV |\n| ServerMultiPointStandard | HM7DN-YVMH3-46JC3-XYTG7-CYQJJ |\n| ServerMultiPointPremium  | XNH6W-2V9GX-RGJ4K-Y8X6F-QGJ2G |\n\n<br/>\n\n### Windows 7\n\n| EditionID         | Generic Volume License Key    |\n| ----------------- | ----------------------------- |\n| Enterprise        | 33PXH-7Y6KF-2VJC9-XBBR8-HVTHH |\n| EnterpriseN       | YDRBP-3D83W-TY26F-D46B2-XCKRJ |\n| Professional      | FJ82H-XT6CR-J8D7P-XQJJ2-GPDD4 |\n| ProfessionalN     | MRPKT-YTG23-K7D7T-X2JMM-QY7MG |\n| Embedded_POSReady | YBYF6-BHCR3-JPKRB-CDW7B-F9BK4 |\n| Embedded_ThinPC   | 73KQT-CD9G6-K7TQG-66MRP-CQ22C |\n| ProfessionalE     | W82YF-2Q76Y-63HXB-FGJG9-GF7QX |\n| EnterpriseE       | C29WB-22CC8-VJ326-GHFJW-H9DH4 |\n\n<br/>\n\n### Windows Server 2008 R2\n\n| EditionID              | Generic Volume License Key    |\n| ---------------------- | ----------------------------- |\n| ServerStandard         | YC6KT-GKW9T-YTKYR-T4X34-R7VHC |\n| ServerDatacenter       | 74YFP-3QFB3-KQT8W-PMXWJ-7M648 |\n| ServerEnterprise       | 489J6-VHDMP-X63PK-3K798-CPX3Y |\n| ServerDatacenterCore   | 74YFP-3QFB3-KQT8W-PMXWJ-7M648 |\n| ServerStandardCore     | YC6KT-GKW9T-YTKYR-T4X34-R7VHC |\n| ServerEnterpriseCore   | 489J6-VHDMP-X63PK-3K798-CPX3Y |\n| ServerEnterpriseIA64   | GT63C-RJFQ3-4GMB6-BRFB9-CB83V |\n| ServerWeb              | 6TPJF-RBVHG-WBW2R-86QPH-6RTM4 |\n| ServerHPC              | TT8MH-CG224-D3D7Q-498W2-9QCTX |\n| ServerWebCore          | 6TPJF-RBVHG-WBW2R-86QPH-6RTM4 |\n| ServerEmbeddedSolution | 736RG-XDKJK-V34PF-BHK87-J6X3K |\n\n<br/>\n\n### Windows Vista\n\n| EditionID   | Generic Volume License Key    |\n| ----------- | ----------------------------- |\n| Enterprise  | VKK3X-68KWM-X2YGT-QR4M6-4BWMV |\n| Business    | YFKBB-PQJJV-G996G-VWGXY-2V3X8 |\n| BusinessN   | HMBQG-8H2RH-C77VX-27R82-VMQBT |\n| EnterpriseN | VTC42-BM838-43QHV-84HX6-XJXKV |\n\n<br/>\n\n### Windows Server 2008\n\n| EditionID            | Generic Volume License Key    |\n| -------------------- | ----------------------------- |\n| ServerStandard       | TM24T-X9RMF-VWXK6-X8JC9-BFGM2 |\n| ServerDatacenter     | 7M67G-PC374-GR742-YH8V4-TCBY3 |\n| ServerEnterprise     | YQGMW-MPWTJ-34KDK-48M3W-X4Q6V |\n| ServerEnterpriseIA64 | 4DWFP-JF3DJ-B7DTH-78FJB-PDRHK |\n| ServerWeb            | WYR28-R7TFJ-3X2YQ-YCY4H-M249D |\n| ServerComputeCluster | RCTX3-KWVHP-BR6TB-RB6DM-6X7HP |\n| ServerStandardV      | W7VD6-7JFBR-RX26B-YKQ3Y-6FFFJ |\n| ServerDatacenterV    | 22XQ2-VRXRG-P8D42-K34TD-G3QQC |\n| ServerEnterpriseV    | 39BXF-X8Q23-P2WWT-38T2F-G3FPG |\n\n<br/>\n\n### Office 2010\n\n| EditionID        | Generic Volume License Key    |\n| ---------------- | ----------------------------- |\n| AccessVL         | V7Y44-9T38C-R2VJK-666HK-T7DDX |\n| ExcelVL          | H62QG-HXVKF-PP4HP-66KMR-CW9BM |\n| GrooveVL         | QYYW6-QP4CB-MBV6G-HYMCJ-4T3J4 |\n| InfoPathVL       | K96W8-67RPQ-62T9Y-J8FQJ-BT37T |\n| MondoVL          | YBJTT-JG6MD-V9Q7P-DBKXJ-38W9R |\n| OneNoteVL        | Q4Y4M-RHWJM-PY37F-MTKWH-D3XHX |\n| OutlookVL        | 7YDC2-CWM8M-RRTJC-8MDVC-X3DWQ |\n| PowerPointVL     | RC8FX-88JRY-3PF7C-X8P67-P4VTT |\n| ProjectProVL     | YGX6F-PGV49-PGW3J-9BTGG-VHKC6 |\n| ProjectStdVL     | 4HP3K-88W3F-W2K3D-6677X-F9PGB |\n| ProPlusVL        | VYBBJ-TRJPB-QFQRF-QFT4D-H3GVB |\n| PublisherVL      | BFK7F-9MYHM-V68C7-DRQ66-83YTP |\n| SmallBusBasicsVL | D6QFG-VBYP2-XQHM7-J97RH-VVRCK |\n| StandardVL       | V7QKV-4XVVR-XYV4D-F7DFM-8R6BM |\n| VisioSIVL        | D9DWC-HPYVV-JGF4P-BTWQB-WX8BJ |\n| WordVL           | HVHB3-C6FV7-KQX9W-YQG79-CRY7T |\n\n<br/>\n\n### Office 2013\n\n| EditionID        | Generic Volume License Key    |\n| ---------------- | ----------------------------- |\n| AccessVolume     | NG2JY-H4JBT-HQXYP-78QH9-4JM2D |\n| ExcelVolume      | VGPNG-Y7HQW-9RHP7-TKPV3-BG7GB |\n| GrooveVolume     | H7R7V-WPNXQ-WCYYC-76BGV-VT7GH |\n| InfoPathVolume   | DKT8B-N7VXH-D963P-Q4PHY-F8894 |\n| LyncVolume       | 2MG3G-3BNTT-3MFW9-KDQW3-TCK7R |\n| MondoRetail      | CWH2Y-NPYJW-3C7HD-BJQWB-G28JJ |\n| MondoVolume      | 42QTK-RN8M7-J3C4G-BBGYM-88CYV |\n| OneNoteVolume    | TGN6P-8MMBC-37P2F-XHXXK-P34VW |\n| OutlookVolume    | QPN8Q-BJBTJ-334K3-93TGY-2PMBT |\n| PowerPointVolume | 4NT99-8RJFH-Q2VDH-KYG2C-4RD4F |\n| ProjectProVolume | FN8TT-7WMH6-2D4X9-M337T-2342K |\n| ProjectStdVolume | 6NTH3-CW976-3G3Y2-JK3TX-8QHTT |\n| ProPlusVolume    | YC7DK-G2NP3-2QQC3-J6H88-GVGXT |\n| PublisherVolume  | PN2WF-29XG2-T9HJ7-JQPJR-FCXK4 |\n| StandardVolume   | KBKQT-2NMXY-JJWGP-M62JB-92CD4 |\n| VisioProVolume   | C2FG9-N6J68-H8BTJ-BW3QX-RM3B3 |\n| VisioStdVolume   | J484Y-4NKBF-W2HMG-DBMJC-PGWR7 |\n| WordVolume       | 6Q7VD-NX8JD-WJ2VH-88V73-4GBJ7 |\n\n<br/>\n\n### Office 2016\n\n| EditionID              | Generic Volume License Key    |\n| ---------------------- | ----------------------------- |\n| AccessVolume           | GNH9Y-D2J4T-FJHGG-QRVH7-QPFDW |\n| ExcelVolume            | 9C2PK-NWTVB-JMPW8-BFT28-7FTBF |\n| MondoRetail            | DMTCJ-KNRKX-26982-JYCKT-P7KB6 |\n| MondoVolume            | HFTND-W9MK4-8B7MJ-B6C4G-XQBR2 |\n| OneNoteVolume          | DR92N-9HTF2-97XKM-XW2WJ-XW3J6 |\n| OutlookVolume          | R69KK-NTPKF-7M3Q4-QYBHW-6MT9B |\n| PowerPointVolume       | J7MQP-HNJ4Y-WJ7YM-PFYGF-BY6C6 |\n| ProjectProVolume       | YG9NW-3K39V-2T3HJ-93F3Q-G83KT |\n| ProjectProXVolume      | WGT24-HCNMF-FQ7XH-6M8K7-DRTW9 |\n| ProjectStdVolume       | GNFHQ-F6YQM-KQDGJ-327XX-KQBVC |\n| ProjectStdXVolume      | D8NRQ-JTYM3-7J2DX-646CT-6836M |\n| ProPlusVolume          | XQNVK-8JYDB-WJ9W3-YJ8YR-WFG99 |\n| PublisherVolume        | F47MM-N3XJP-TQXJ9-BP99D-8K837 |\n| SkypeforBusinessVolume | 869NQ-FJ69K-466HW-QYCP2-DDBV6 |\n| StandardVolume         | JNRGM-WHDWX-FJJG3-K47QV-DRTFM |\n| VisioProVolume         | PD3PC-RHNGV-FXJ29-8JK7D-RJRJK |\n| VisioProXVolume        | 69WXN-MBYV6-22PQG-3WGHK-RM6XC |\n| VisioStdVolume         | 7WHWN-4T7MP-G96JF-G33KR-W8GF4 |\n| VisioStdXVolume        | NY48V-PPYYH-3F4PX-XJRKJ-W4423 |\n| WordVolume             | WXY84-JN2Q9-RBCCQ-3Q3J3-3PFJ6 |\n\n<br/>\n\n### Office 2019\n\n| EditionID                  | Generic Volume License Key    |\n| -------------------------- | ----------------------------- |\n| Access2019Volume           | 9N9PT-27V4Y-VJ2PD-YXFMF-YTFQT |\n| Excel2019Volume            | TMJWT-YYNMB-3BKTF-644FC-RVXBD |\n| Outlook2019Volume          | 7HD7K-N4PVK-BHBCQ-YWQRW-XW4VK |\n| PowerPoint2019Volume       | RRNCX-C64HY-W2MM7-MCH9G-TJHMQ |\n| ProjectPro2019Volume       | B4NPR-3FKK7-T2MBV-FRQ4W-PKD2B |\n| ProjectStd2019Volume       | C4F7P-NCP8C-6CQPT-MQHV9-JXD2M |\n| ProPlus2019Volume          | NMMKJ-6RK4F-KMJVX-8D9MJ-6MWKP |\n| Publisher2019Volume        | G2KWX-3NW6P-PY93R-JXK2T-C9Y9V |\n| SkypeforBusiness2019Volume | NCJ33-JHBBY-HTK98-MYCV8-HMKHJ |\n| Standard2019Volume         | 6NWWJ-YQWMR-QKGCB-6TMB3-9D9HK |\n| VisioPro2019Volume         | 9BGNQ-K37YR-RQHF2-38RQ3-7VCBB |\n| VisioStd2019Volume         | 7TQNQ-K3YQQ-3PFH7-CCPPM-X4VQ2 |\n| Word2019Volume             | PBX3G-NWMT6-Q7XBW-PYJGG-WXD33 |\n\n<br/>\n\n### Office 2021\n\n| EditionID                  | Generic Volume License Key    |\n| -------------------------- | ----------------------------- |\n| Access2021Volume           | WM8YG-YNGDD-4JHDC-PG3F4-FC4T4 |\n| Excel2021Volume            | NWG3X-87C9K-TC7YY-BC2G7-G6RVC |\n| Outlook2021Volume          | C9FM6-3N72F-HFJXB-TM3V9-T86R9 |\n| PowerPoint2021Volume       | TY7XF-NFRBR-KJ44C-G83KF-GX27K |\n| ProjectPro2021Volume       | FTNWT-C6WBT-8HMGF-K9PRX-QV9H8 |\n| ProjectStd2021Volume       | J2JDC-NJCYY-9RGQ4-YXWMH-T3D4T |\n| ProPlus2021Volume          | FXYTK-NJJ8C-GB6DW-3DYQT-6F7TH |\n| Publisher2021Volume        | 2MW9D-N4BXM-9VBPG-Q7W6M-KFBGQ |\n| SkypeforBusiness2021Volume | HWCXN-K3WBT-WJBKY-R8BD9-XK29P |\n| Standard2021Volume         | KDX7X-BNVR8-TXXGX-4Q7Y8-78VT3 |\n| VisioPro2021Volume         | KNH8D-FGHT4-T8RK3-CTDYJ-K2HT4 |\n| VisioStd2021Volume         | MJVNY-BYWPY-CWV6J-2RKRT-4M8QG |\n| Word2021Volume             | TN8H9-M34D3-Y64V9-TR72V-X79KV |\n\n<br/>\n\n### Office 2024\n\n| EditionID                    | Generic Volume License Key    |\n| ---------------------------- | ----------------------------- |\n| ProPlus2024Volume-Preview    | 2TDPW-NDQ7G-FMG99-DXQ7M-TX3T2 |\n| ProjectPro2024Volume-Preview | D9GTG-NP7DV-T6JP3-B6B62-JB89R |\n| VisioPro2024Volume-Preview   | YW66X-NH62M-G6YFP-B7KCT-WXGKQ |\n| Access2024Volume             | 82FTR-NCHR7-W3944-MGRHM-JMCWD |\n| Excel2024Volume              | F4DYN-89BP2-WQTWJ-GR8YC-CKGJG |\n| Outlook2024Volume            | D2F8D-N3Q3B-J28PV-X27HD-RJWB9 |\n| PowerPoint2024Volume         | CW94N-K6GJH-9CTXY-MG2VC-FYCWP |\n| ProjectPro2024Volume         | FQQ23-N4YCY-73HQ3-FM9WC-76HF4 |\n| ProjectStd2024Volume         | PD3TT-NTHQQ-VC7CY-MFXK3-G87F8 |\n| ProPlus2024Volume            | XJ2XN-FW8RK-P4HMP-DKDBV-GCVGB |\n| SkypeforBusiness2024Volume   | 4NKHF-9HBQF-Q3B6C-7YV34-F64P3 |\n| Standard2024Volume           | V28N4-JG22K-W66P8-VTMGK-H6HGR |\n| VisioPro2024Volume           | B7TN8-FJ8V3-7QYCP-HQPMV-YY89G |\n| VisioStd2024Volume           | JMMVY-XFNQC-KK4HK-9H7R3-WQQTV |\n| Word2024Volume               | MQ84N-7VYDM-FXV7C-6K7CC-VFW9J |\n\n<hr/>\n\n::: tip INFO\n\n- Systems in all architectures (x86, x64 and arm64) are supported.\n- Office C2R retail products are converted to thier corresponding Volume products to enable KMS activation.\n- These editions are only KMS-activatable for _45_ days at max:\n  - Windows 10/11 Home edition variants\n  - Windows 8.1 Core edition variants, Pro with Media Center, Pro for Students  \n    These editions are only KMS-activatable for _30_ days at max:\n  - Windows 8 Core edition variants, Pro with Media Center\n\n:::\n\n## Unsupported Products\n\n- Office MSI Retail 2010/2013, Office 2010 C2R Retail\n- Any Evaluation version of Windows (i.e. 'EVAL' LTSB/C) [cannot be activated](./evaluation_editions) beyond the evaluation period. You can use TSforge option in MAS to reset the activation any given time.\n- Server Azure Datacenter (ServerTurbine) edition does not support activation on non-azure systems.\n- KMS activation on Windows 7 has a limitation related to OEM Activation 2.0 and Windows marker. For more info, see [support.microsoft.com][3] and here [technet.microsoft.com/activation-of-windows-oem-computers][4]\n- Windows editions that do not support KMS activation by design:  \n  Windows Evaluation Editions  \n  Windows 7 (Starter, HomeBasic, HomePremium, Ultimate)  \n  Windows 10 (Cloud \"S\", IoTEnterprise, ProfessionalSingleLanguage... etc)  \n  Windows Server (Server Foundation, Storage Server, Home Server 2011... etc)\n\n## How does it work?\n\n::: tip What is KMS activation?\n\nKey Management Service (KMS) is a genuine activation method provided by Microsoft for volume licensing customers (organizations, schools, or governments). The machines in those environments (called KMS clients) are activated via the Environment KMS Host Server (authorized Microsoft's licensing key), instead of Microsoft activation servers. By design, the KMS activation period lasts up to 180 Days (6 Months) at max, with the ability to renew and reinstate the period at any time. Activation renewal automatically happens every 7 days if the client can connect to the KMS host server. For more info, see [microsoft.com/licensing][5] and [technet.microsoft.com/kms-overview][6].\n\n:::\n\n::: tip How are we getting it for free\n\nDevelopers reverse-engineered the KMS Host Server setup, so now anyone can host a KMS server and activate the systems without any limitations. KMS activators such as KMSpico, MTK, KMS_VL_ALL, etc., locally create an emulated KMS Host Server and activate Windows and Office.\n\nThis locally-emulated KMS server requires you to run binary files which often cause anti-virus alerts (false positives).\n\nAnother method of KMS activation is a publicly-available Online KMS Host Server. In this method, the site hosts the emulated KMS server, and anyone can simply use this server to activate their systems, there is no requirement for running any software on your system.\n\n:::\n\n## Is Online KMS activation safe\n\nYes.\nLet's go into the details. In the KMS protocol, there is a relationship between host and client. The client system asks the host system to grant the activation, and the host system grants the activation if it's eligible. In this process, the client system shares some of the system's data, which is not sensitive in nature. According to the [technet.microsoft.com/aspx#kms-overview][7], the client system shares the following data with the host system: Client FQDN, CMID, time-stamp, Product license state, expiration time, and IP address\n  In this shared info, the important part is your IP address. Below are some things regarding it which you should know.\n  - Sharing your IP while going online is not a security concern. You can not go online to visit any website without having to share your IP address.\n  - IP addresses do not necessarily represent a specific person. Internet Service Providers (ISPs) mostly use dynamic IP, which means the same IP address can be used by many different persons, and a dynamic IP address is periodically reassigned to different people all the time. But a static IP address is permanently assigned to a unique subscriber. The Internet Service Provider (ISP) won't reveal that information unless there is a legal reason to do so.\n  - Microsoft has never tried to go after Home users in legal cases for using a few pirated activations (not talking about stolen legal keys) simply because the cost of legal actions would be much higher than the amount of money gained by forcing a few people to purchase activations.\n  - No law enforcement is going to take action based on IPs from all over the world without the consent of Microsoft itself.\n\nFeel free to contact us in case you have a contradictory point of view.\n\n<br/>\n\n## How to remove Online KMS?\n\n- In MAS, goto Online KMS activation and apply Uninstall option.\n- After that, In MAS, goto Troubleshoot and apply Fix Licensing option.\n- Done. <br/>\n\n### Office 'Non-genuine' Banner\n\n- Office Click-to-Run builds (since February 2021) that are activated with KMS check the existence of the KMS server name in the registry.\n- If KMS server is not present, a banner is shown in Office programs notifying that \"Office isn't licensed properly\".\n- Therefore in manual mode, `KeyManagementServiceName` value containing a non-existent IP address 10.0.0.10 will be kept in the below registry keys:\n\n```\nHKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\SoftwareProtectionPlatform\nHKLM\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows NT\\CurrentVersion\\SoftwareProtectionPlatform\n```\n\n- This is perfectly fine to keep, and it does not affect Windows or Office activation. For more explanation, visit [Office license is not genuine](./office-license-is-not-genuine).\n\n### Office Retail to Volume\n\nOffice Retail must be converted to Volume first before it can be activated with KMS.  \nBy default, this activation script will convert Office C2R Retail to Volume.\n\n- Supported Click-to-Run products: Office 365 (Microsoft 365 Apps), Office 2024 / 2021 / 2019 / 2016, Office 2013\n- Office 365 itself does not have volume licenses, therefore it will be converted to Office Mondo licenses\n- Office Professional suite will be converted with Office Professional Plus licenses\n- Office HomeBusiness/HomeStudent suites will be converted with Office Standard licenses\n- Office 2013 products follow the same logic\n\nIf you don't want the script to convert the Retail Office to Volume, you can turn off \"Change Edition If Needed\" option in the script. <br/>\n\n### Command line Switches\n\n- Check [Command line switches](./command_line_switches).\n\n### Setup Preactivate\n\n- Check the Extract OEM option in the MAS `Extras` section if you want pre-activated Windows installation.\n- Further read [OEM Folder](./oem-folder).\n\n## Troubleshoot  \n\n::: danger Troubleshoot\n\n- If you need any help regarding this, first review the [**FAQ section**](./faq) — your answer will most likely be there.  \n\n- If your issue persists — You can [**Contact Us**](./troubleshoot).\n\n:::\n\n[1]: https://docs.microsoft.com/en-us/previous-versions/tn-archive/ee939272(v=technet.10)?redirectedfrom=MSDN#kms-overview\n[2]: https://github.com/abbodi1406/KMS_VL_ALL_AIO/\n[3]: https://support.microsoft.com/en-us/help/942962\n[4]: https://technet.microsoft.com/en-us/library/ff793426(v=ws.10).aspx#activation-of-windows-oem-computers\n[5]: https://www.microsoft.com/en-us/Licensing/servicecenter/Help/FAQDetails.aspx?id=201#215\n[6]: https://technet.microsoft.com/en-us/library/ee939272(v=ws.10).aspx#kms-overview\n[7]: https://technet.microsoft.com/en-us/library/ee939272(v=ws.10).aspx#kms-overview\n"
  },
  {
    "path": "docs/wa/remove_malware.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'Remove Malware'\ndescription: 'Guide on how to remove malware'\ndate: 2023-05-01\neditLink: true\n---\n\n# Remove Malware\n\n> - Guide on how to remove malware\n\n- Download and install [Malwarebytes][1] to scan malware. \n    - If you have file infector malware, [use Dr.Web][2] to scan it. \n- Quarantine the detected malware.\n- Removing malware **won't fix the damage done by the malware**.\n- To fix your system, **[clean install Windows](./clean_install_windows)** as per guides.\n\n::: tip After you remove malware\n\n- After you remove malware and reinstall Windows, change your passwords for all your accounts.\n- If you want to find safe software and games and avoid malware, check out [fmhy.net][3].\n\n- Antimalware can remove most of the malware but can not undo all the damage done by the malware in the system.   \n  - For example, malware can infect system files, damage Windows updates and security and important registries, or even hide the malware somewhere antimalware can not find.  \n- Due to this reason, in the event of a malware infection, you must perform a [clean installation of the system](./clean_install_windows) using a bootable USB drive and formatting the C drive and EFI/System partitions. (Do not use the reset option, malware can persist in that case).\n\n:::\n\n[1]: https://downloads.malwarebytes.com/file/mb5-windows\n[2]: https://free.drweb.com/download+cureit/gr\n[3]: https://fmhy.net/beginners-guide\n"
  },
  {
    "path": "docs/wa/troubleshoot.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'Troubleshooting'\ndescription: 'If you run into any issues, feel free to ask'\ndate: 2024-02-02\neditLink: true\nhead:\n  - - meta\n    - name: description\n      content: troubleshoot, discussion, errors\n---\n\n## Troubleshooting\n\n**Please make sure you are using the latest version.**\n\n**Need Help?** If you run into any issues, Feel free to ask in the [GitHub Discussions][1] Or [Email Me][2] directly.\n\nReach out to us on [Discord][3]  \n> - signup not required\n> - with an error screenshot\n\n[1]: https://github.com/NiREvil/windows-activation/discussions\n[2]: mailto:dianashariati.cl@gmail.com\n[3]: https://discord.gg/yJ8phEmbw9\n"
  },
  {
    "path": "docs/wa/tsforge.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'TSforge'\ndescription: 'A comparison of activation methods for Microsoft Corporation like windows and office.'\ndate: 2025-05-04\neditLink: true\nhead:\n  - - meta\n    - name: keywords\n      content: windows activation, office 2013, windows 10, windows 11, hwid or kms, kms, hwid, tsforge\n---\n\n# TSforge Activation  \n\n> Welcome to the `tsforge` document. This has some details about the TSForge activation method.\n\n::: tip Notes\n\n> How to use it?  \n> Please find the instructions [Intro](./index#step2)\n\n## Overview  \n-   This activation is permanent until a Windows reinstall or a major feature upgrade (not to be confused with small enablement upgrades or monthly cumulative updates).  \n-   This activation method **Doesn't modify any Windows components and doesn't install any new files.**   \n-   Once the system is activated, hardware can be changed arbitrarily without triggering de-activation.  \n-   Internet is not required for ZeroCID or KMS4k, but it is required for StaticCID. The script uses the StaticCID method from Windows 10 20H1 (19041) and later versions.   \n-   This activation method can activate any of the following products if a phone license is available and licensing is managed by the system's SPP. For example,   \n    *   Windows Vista and later\n    *   Windows Server 2008 and later\n    *   Office 2013 and later (requires Windows 8 or later)\n    *   Windows addons (ESU, APPXLOB, etc.)\n    *   Windows and Office KMS Hosts (CSVLK)\n-   Online validation (WAT) is bypassed on Windows 7.  \n-   In addition to the permanent activation of Windows and Office KMS Hosts, it also charges the KMS server with 25 clients (required for KMS client activation) for 30 days (maximum).\n-\tIn addition to activation, it can reset the rearm count and evaluation period, clear the tamper state, and remove the evaluation key lock.\n\n:::\n\n## How does it work?   \n\n### ZeroCID\n\n**Process on Windows Vista and 7**\n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/bda35f60-d1ba-4318-a65e-6843fdd11e41\" width=\"540px\">\n</p>   \n\n**Process on Windows 8 and later** \n\n<p align=\"center\">\n  <img src=\"https://github.com/user-attachments/assets/770e6df6-74bc-40e0-b790-6f8e9273d000\" width=\"540px\">\n</p><\n\n- Windows activation is managed by a subsystem called the Software Protection Platform (SPP).\n- SPP stores information about the activation state in files called the \"physical store\" and \"token store\".\n- The physical store's contents are cryptographically protected and integrity-checked by SPPSvc/SPSys, preventing users from easily modifying it.\n- The physical store is usually found at these locations:\n  - Windows Vista - `C:\\Windows\\System32\\7B296FB0-376B-497e-B012-9C450E1B7327-2P-0.C7483456-A289-439d-8115-601632D005A0` and `C:\\Windows\\System32\\7B296FB0-376B-497e-B012-9C450E1B7327-2P-1.C7483456-A289-439d-8115-601632D005A0`\n  - Windows 7 - `C:\\Windows\\System32\\7B296FB0-376B-497e-B012-9C450E1B7327-5P-0.C7483456-A289-439d-8115-601632D005A0` and `C:\\Windows\\System32\\7B296FB0-376B-497e-B012-9C450E1B7327-5P-1.C7483456-A289-439d-8115-601632D005A0`\n  - Windows 8 - `C:\\Windows\\System32\\spp\\store\\data.dat`\n  - Windows 8.1/10/11 - `C:\\Windows\\System32\\spp\\store\\2.0\\data.dat`\n- The token store is usually found at these locations:\n  - Windows Vista - `C:\\Windows\\ServiceProfiles\\NetworkService\\AppData\\Roaming\\Microsoft\\SoftwareLicensing\\tokens.dat`\n  - Windows 7 - `C:\\Windows\\ServiceProfiles\\NetworkService\\AppData\\Roaming\\Microsoft\\SoftwareProtectionPlatform\\tokens.dat`\n  - Windows 8 - `C:\\Windows\\System32\\spp\\store\\tokens.dat`\n  - Windows 8.1/10/11 - `C:\\Windows\\System32\\spp\\store\\2.0\\tokens.dat`\n- In normal product key installation and phone activation, associated cache data is written to the physical store and token store. Said phone activation data is [cryptographically checked][1] against the Installation ID before being written. When SPP relaunches, it is only given a very basic check against the current Hardware ID.\n- By writing forged cache data directly to the physical store and token store, we can bypass both checks, causing SPP to believe it installed a fake product key and/or confirmation ID.\n- To bypass checks for hardware changes, a [Hardware ID](./Hwid#hardware-id) with a threshold of 0 is included in this forged data.\n- On Windows 7, the fake product key data does not contain a value known as the \"Key Unique ID\". This value is required for both WAT and online activation, so removing it causes both to be non-functional, preventing WAT from triggering de-activation.\n- The presence of valid product key and confirmation ID data causes SPP to activate the specified product as long as it is capable of phone activation.\n- This process is implemented as the ZeroCID option in [TSforge][2]\n\n### StaticCID\n\n- In [Windows 11 build 27802][3], Microsoft introduced a bug that causes Confirmation ID cache validation to always fail, forcing validation directly from the stored Confirmation ID each time the license status is checked.\n- Because of this, ZeroCID does not work in any Windows 11/Server 2025 Insider Canary builds released afterwards, or any Windows 11/Server 2025 retail/release preview builds newer than 26100.4188.\n- To circumvent this bug, TSforge is used to set the current Installation ID to that of a known key that can be used to generate valid Confirmation IDs.\n- Confirmation IDs are then obtained over the internet using [a client][4] for the [VAMT][5] API.\n- Depositing this CID causes activation, since the CID matches the IID and SPP never checks if the IID matches the installed product key.\n- The following product keys are used in StaticCID:\n  - RTM Licenses - `744NM-C4FXY-YGM8B-7MVJC-BBFB9`\n  - Test Licenses - `PCPHN-JH4DV-KW84V-JTWT3-VXHBC`\n\n### KMS4k\n\n- In KMS4k, fake cached KMS server response data is written to the trusted store.\n- Unlike via normal KMS emulators, this method can arbitrarily set the activation expiration up to a maximum of 2147483640 (2^31 - 8) minutes, or 4083 years.\n- This allows for offline KMS activation that is effectively infinite for all practical purposes.\n\n## Supported Products\n\nThis activation method can activate any of the following products if a phone license is available and licensing is managed by the system's SPP.\n\n- **Windows**\n  - Windows Vista\n  - Windows 7\n  - Windows 8\n  - Windows 8.1\n  - Windows 10\n  - Windows 11 (Does not support ZeroCID since 26100.4188)\n- **Windows Server**\n  - Windows Server 2008\n  - Windows Server 2008 R2\n  - Windows Server 2012\n  - Windows Server 2012 R2\n  - Windows Server 2016\n  - Windows Server 2019\n  - Windows Server 2022\n  - Windows Server 2025 (Does not support ZeroCID since 26100.4188)\n- **Microsoft Office** (Requires Windows 8 or later) (Also supports UWP version of Office)\n  - Office 2013\n  - Office 2016\n  - Office 2019\n  - Office 2021\n  - Office 2024\n- **Windows Addons**\n  - **Commercial Extended Security Updates (ESU)**\n    - **Windows 7** (Enterprise, Professional, Ultimate and their E/N variants)\n    - **Windows Embedded POSReady 7** (Embedded)\n    - **Windows Embedded Standard 7** (Embedded)\n    - **Windows Server 2008** (ServerDatacenter, ServerStandard, ServerEnterprise and their V/Core/VCore variants)\n    - **Windows Server 2008 R2** (ServerDatacenter, ServerStandard, ServerEnterprise and their V/Core/VCore variants)\n    - **Windows Server 2012** (ServerDatacenter, ServerStandard and their Core variants)\n\t- **Windows 8.1** (Enterprise, Professional, EmbeddedIndustry and their E/N variants)\n    - **Windows Server 2012 R2** (ServerDatacenter, ServerStandard and their Core variants)\n    - **Windows 10** (Education, Enterprise, IoTEnterprise, Professional, ProfessionalEducation, ProfessionalWorkstation and their N variants)\n  - **8/8.1 APPXLOB**\n\t- Client\n\t- Embedded Industry\n\t- Embedded Standard\n\t- Server 2012\n  - **Others** (Can be selected from the manual option)\n    - OCUR\n- **KMS Hosts** (CSVLK)\n  - Windows Vista and later\n  - Windows Server 2008 and later\n  - Office 2010 and later\n\n::: tip Note\n\n- All architectures (x86, x64 and arm64) are supported.\n- For Windows, the script's key preference is: OEM_DM > OEM_COA_SLP > OEM_COA_NSLP > MAK > RETAIL\n- For Office, the script's key preference is: OEM_COA_NSLP > MAK > RETAIL\n\n:::\n\n### Keys\n\nTSforge activation generates keys for PKey2009-based products and sets product key data for PKey2005-based products.  \nHowever, it cannot handle keys for Windows Vista and Windows Server 2008. That is why only the keys for these products are listed here.  \n\nKeys aren't available for these editions, but since the editions themselves aren't publicly available, it doesn't matter.  \n\n```reg\na797d61e-1475-470b-86c8-f737a72c188d   StarterN\n5e9f548a-c8a9-44e6-a6c2-3f8d0a7a99dd   ServerComputeClusterV\n```\n\n<br/>\n\n### Windows Vista \n| Edition      | Generic Key                   | Key Type |\n|--------------|-------------------------------|----------|\n| Business     | 4D2XH-PRBMM-8Q22B-K8BM3-MRW4W | Retail   |\n| BusinessN    | 76884-QXFY2-6Q2WX-2QTQ8-QXX44 | Retail   |\n| Enterprise   | YQPQV-RW8R3-XMPFG-RXG9R-JGTVF | Retail   |\n| EnterpriseN  | Q7J9R-G63R4-BFMHF-FWM9R-RWDMV | Retail   |\n| HomeBasic    | RCG7P-TX42D-HM8FM-TCFCW-3V4VD | Retail   |\n| HomeBasicN   | HY2VV-XC6FF-MD6WV-FPYBQ-GFJBT | Retail   |\n| HomePremium  | X9HTF-MKJQQ-XK376-TJ7T4-76PKF | Retail   |\n| HomePremiumN | KJ6TP-PF9W2-23T3Q-XTV7M-PXDT2 | Retail   |\n| Starter      | X9PYV-YBQRV-9BXWV-TQDMK-QDWK4 | Retail   |\n| Ultimate     | VMCB9-FDRV6-6CDQM-RV23K-RP8F7 | Retail   |\n| UltimateN    | CVX38-P27B4-2X8BT-RXD4J-V7CKX | Retail   |\n\n<br/>\n\n### Windows Server 2008\n| Edition                        | Generic Key                   | Key Type   |\n|--------------------------------|-------------------------------|------------|\n| ServerComputeCluster           | 24FV9-H7JW8-C8Q6X-BQKMK-K977J | Retail     |\n| ServerDatacenter               | 6QBHY-DXTPJ-T9W3P-DTJXX-4VQMB | Retail     |\n| ServerDatacenterV              | 83TWG-TD3TC-HRDP2-K93FJ-Y34YC | OEM:NONSLP |\n| ServerEnterprise               | MRB7H-QJRHG-FXTBR-B2Q2M-8WMTJ | Retail     |\n| ServerEnterpriseIA64           | H4VB6-QPRWH-VDCYM-996P8-MHKFY | OEM:NONSLP |\n| ServerEnterpriseV              | H8H7M-HDPQT-PJHQF-M7B83-9CVGV | Retail     |\n| ServerHomePremium              | RGBMC-PQBVF-94Q9K-HD63B-VY6MP | Retail     |\n| ServerHomeStandard             | 6C8KR-MD3QK-9GWFW-44CY2-W9CBM | Retail     |\n| ServerMediumBusinessManagement | 7XRBY-6MP2K-VQPT8-F37JV-YYQ83 | Retail     |\n| ServerMediumBusinessMessaging  | 6PDTD-JK48J-662TF-8J2QV-R4CRB | Retail     |\n| ServerMediumBusinessSecurity   | D694V-CMWKH-PY92X-PFQKQ-JCB69 | Retail     |\n| ServerSBSPremium               | MRDK3-YYQF3-88BQJ-D6FJG-69YJY | Retail     |\n| ServerSBSPrime                 | 2KB23-GJRBD-W3T9C-6CH2W-39B7V | Retail     |\n| ServerSBSStandard              | H4XDD-B27GY-667P6-XWVV7-GYG8J | Retail     |\n| ServerStandard                 | 8YVM4-YQBDH-7WDQM-R27WR-WVCWG | Retail     |\n| ServerStandardV                | H9MW3-6V7GK-94P9G-7FTPJ-VKCKF | Retail     |\n| ServerStorageEnterprise        | 2264C-TD9T8-P8HPW-CC9GH-MHM2V | Retail     |\n| ServerStorageExpress           | RCYMT-YX342-8T6YY-XYHYC-3DD7X | Retail     |\n| ServerStorageStandard          | FKFT2-WXYY9-WBPY7-6YMY4-X48JF | Retail     |\n| ServerStorageWorkgroup         | 8X9J7-HCJ7J-3WDJT-QM7D8-464YH | Retail     |\n| ServerWeb                      | BGT39-9FYH7-X2CYD-T628F-QPQPW | Retail     |\n| ServerWinSB                    | HPH76-FHFPP-DRW9D-7W2V4-HWGKT | Retail     |\n| ServerWinSBV                   | 2V8G6-KRXYR-MMGXJ-6RWM3-GXCCG | Retail     |\n\n<br/>\n\n### Windows Server 2008 ESU\n| ESU Version   | Blocked key sourced from the Internet | Key Type   |\n|---------------|---------------------------------------|------------|\n| Server-ESU-PA | 9FPV7-MWGT8-7XPDF-JC23W-WT7TW         | Volume:MAK |\n\n<br/>\n\n### KMS Host - Windows Vista\n| Editions                                  | Blocked keys sourced from the Internet | Key Type     |\n|-------------------------------------------|----------------------------------------|--------------|\n| Business, Enterprise and their N editions | TWVG3-9Q4P8-W9XJF-Y76FJ-DWQ4R          | Volume:CSVLK |\n\n<br/>\n\n### KMS Host - Windows Server 2008\n| Editions                                                                                                                                            | Blocked keys sourced from the Internet | Key Type     |\n|-----------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------|--------------|\n| ServerComputeCluster, ServerDatacenter, <br /> ServerEnterprise, ServerEnterpriseIA64, <br /> ServerStandard, ServerWeb <br /> and their V editions | BHC4Q-6D7B7-QMVH7-4MKQH-Y9VK7          | Volume:CSVLK |\n| ServerComputeCluster, ServerEnterprise, <br /> ServerStandard, ServerWeb <br /> and their V editions                                                | PVGKG-2R7XQ-7WTFD-FXTJR-DQBQ3          | Volume:CSVLK |\n| ServerComputeCluster, ServerWeb                                                                                                                     | KH4PC-KJFX6-XFVHQ-GDK2G-JCJY9          | Volume:CSVLK |\n\n<br/>\n\n::: danger Important\n\n- **Unsupported Products**\n- This activation method does not work if a phone license is not available or if licensing is not managed by the system's SPP.\n\n- **Office on Windows 7**\n  - Its licensing is based on OSPP, not SPP.\n  - You can use Ohook option in MAS to activate it.\n- **Office 2010**\n  - Its licensing is based on OSPP, not SPP.\n  - You can use Ohook option in MAS to activate it.\n- **Office 365**\n  - Phone activation license is not available. TSforge option will install Mondo 2016 license (feature-wise equivalent to 365) instead to activate Office.\n  - You can use Ohook option in MAS to activate it.\n- **Windows Evaluation editions** (Windows 8 / Server 2012 and later)\n  - Permanent activation license is not available. TSforge option will reset the evaluation period instead.\n- **Windows Evaluation editions** (Windows 7 / Server 2008 R2)\n  - WLMS service protects the SPPSVC service and prevents it from stopping. Although permanent activation license is available, its officially not supported.\n- **Server Azure Datacenter (ServerTurbine) edition**\n  - It does not support activation on non-azure systems.\n- **Windows 10 Consumer ESU (1 Year)**\n  - Its licensing is based on CLIP, not SPP.\n  - You can activate commercial ESU for 3 years on Pro and higher level editions with TSforge.\n \n:::\n\n::: info Note\n\n**OSPP based Office:** Physical store is stored in the registry in a format that has not yet been reverse engineered.\n\n:::\n\n\n## ZeroCID / KMS4k / AVMA4k\n\n- TSforge is included in MAS and it also has its own [standalone release][6].\n- TSforge includes the ZeroCID / KMS4k / AVMA4k activation methods.\n- AVMA4k is a proof-of-concept method with many limitations, so we do not recommend using it.\n- MAS only uses the ZeroCID and KMS4k method and does not include AVMA4k, as ZeroCID can already activate all available products permanently.\n\n| Methods | Info                                                                                                 |\n|---------|------------------------------------------------------------------------------------------------------|\n| ZeroCID | Offline permanent activation / until reinstall/feature upgrade                                       |\n| KMS4k   | Offline KMS activation for over 4000 years / until reinstall/feature upgrade                         |\n| AVMA4k  | Offline AVMA activation for over 4000 years (Server 2012 R2+ only) / until reinstall/feature upgrade |\n\n<br/>\n\n## Windows ESU\n\n- Microsoft offers paid [Extended Security Updates][7] (ESU) for several Windows versions after their product lifecycle ends.\n- You can activate the Windows ESU / Premium Assurance license using the TSforge option in MAS.\n\n| Windows Version              | Supported Editions List                                                                                                                           | ESU Period                                                                                                                                                                                                                                                   | Minimum Required Updates                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |\n|------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Windows Server 2008          | ServerDatacenter, ServerStandard, ServerEnterprise <br /> and their V/Core/VCore variants                                                         | [6 Years](https://web.archive.org/web/20170331081347/https://blogs.technet.microsoft.com/hybridcloud/2017/03/01/now-available-windows-server-premium-assurance-and-sql-server-premium-assurance/) with Premium Assurance License <br /> Jan 2020 to Jan 2026 | Windows Server 2008 SP2 <br /> + <br /> KB4493730 [x64](https://catalog.s.download.windowsupdate.com/d/msdownload/update/software/secu/2019/04/windows6.0-kb4493730-x64_5cb91f4e9000383f061b80f88feffdf228c2443c.msu)-[x86](https://catalog.s.download.windowsupdate.com/d/msdownload/update/software/secu/2019/04/windows6.0-kb4493730-x86_ab4368f19db796680ff445a7769886c4cdc009a0.msu) <br /> KB4474419 [x64](https://catalog.s.download.windowsupdate.com/d/msdownload/update/software/secu/2019/09/windows6.0-kb4474419-v4-x64_09cb148f6ef10779d7352b7269d66a7f23019207.msu)-[x86](https://catalog.s.download.windowsupdate.com/d/msdownload/update/software/secu/2019/09/windows6.0-kb4474419-v4-x86_fd568cb47870cd8ed5ba10e1dd3c49061894030e.msu) <br /> **Reboot**  <br /> KB5016891 [x64](https://catalog.s.download.windowsupdate.com/c/msdownload/update/software/secu/2022/08/windows6.0-kb5016891-x64_1b5f7e1030f5d229a7618c09f1617fd1ed00e90f.msu)-[x86](https://catalog.s.download.windowsupdate.com/c/msdownload/update/software/secu/2022/08/windows6.0-kb5016891-x86_cf3aef17f12a6dc85dd20a06e5ba9f4c882e286f.msu)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |\n| Windows 7                    | Enterprise, Professional, Ultimate <br /> and their E/N variants                                                                                  | [3 Years](https://learn.microsoft.com/en-us/lifecycle/products/windows-7) <br /> Jan 2020 to Jan 2023 <br /><br /> 4-6 Years ESU is not officially supported, <br /> but you can manually install Server 2008 R2 x64 updates until Jan 2026                  | Windows 7 SP1 <br /> + <br /> KB4490628 [x64](https://catalog.s.download.windowsupdate.com/c/msdownload/update/software/secu/2019/03/windows6.1-kb4490628-x64_d3de52d6987f7c8bdc2c015dca69eac96047c76e.msu)-[x86](https://catalog.s.download.windowsupdate.com/c/msdownload/update/software/secu/2019/03/windows6.1-kb4490628-x86_3cdb3df55b9cd7ef7fcb24fc4e237ea287ad0992.msu) <br /> KB4474419-v3 [x64](https://catalog.s.download.windowsupdate.com/c/msdownload/update/software/secu/2019/09/windows6.1-kb4474419-v3-x64_b5614c6cea5cb4e198717789633dca16308ef79c.msu)-[x86](https://catalog.s.download.windowsupdate.com/c/msdownload/update/software/secu/2019/09/windows6.1-kb4474419-v3-x86_0f687d50402790f340087c576886501b3223bec6.msu) <br /> **Reboot**  <br /> KB5039339 [x64](https://catalog.s.download.windowsupdate.com/d/msdownload/update/software/secu/2024/06/windows6.1-kb5039339-x64_f62846508976a6e5325ab1dca0783f9b3a60a564.msu)-[x86](https://catalog.s.download.windowsupdate.com/d/msdownload/update/software/secu/2024/06/windows6.1-kb5039339-x86_fa942048bba2a167242451236f9daf00940588aa.msu) <br /> KB4575903 [x64](https://catalog.s.download.windowsupdate.com/d/msdownload/update/software/secu/2020/07/windows6.1-kb4575903-x64_b4d5cf045a03034201ff108c2802fa6ac79459a1.msu)-[x86](https://catalog.s.download.windowsupdate.com/d/msdownload/update/software/secu/2020/07/windows6.1-kb4575903-x86_5905c774f806205b5d25b04523bb716e1966306d.msu) <br /> KB3138612 [x64](https://catalog.s.download.windowsupdate.com/d/msdownload/update/software/updt/2016/02/windows6.1-kb3138612-x64_f7b1de8ea7cf8faf57b0138c4068d2e899e2b266.msu)-[x86](https://catalog.s.download.windowsupdate.com/d/msdownload/update/software/updt/2016/02/windows6.1-kb3138612-x86_6e90531daffc13bc4e92ecea890e501e807c621f.msu) <br /> KB5016892 [x64](https://catalog.s.download.windowsupdate.com/c/msdownload/update/software/secu/2022/08/windows6.1-kb5016892-x64_52b68ba8744cb47ddfcecd19238087625e1a5fbd.msu)-[x86](https://catalog.s.download.windowsupdate.com/c/msdownload/update/software/secu/2022/08/windows6.1-kb5016892-x86_ffb5b83149833e7f969f69e4f152fee5c1fdbc68.msu) |\n| Windows 7 Embedded POSReady7 | Embedded                                                                                                                                          | [3 Years](https://learn.microsoft.com/en-us/lifecycle/products/windows-embedded-posready-7) <br /> Oct 2021 to Oct 2024                                                                                                                                      | Same as Windows 7 minus KB5016892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |\n| Windows 7 Embedded Standard  | Embedded                                                                                                                                          | [3 years](https://learn.microsoft.com/en-us/lifecycle/products/windows-embedded-standard-7) <br /> Oct 2020 to Oct 2023                                                                                                                                      | Same as Windows 7 minus KB5016892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |\n| Windows Server 2008 R2       | ServerDatacenter, ServerStandard, ServerEnterprise <br /> and their V/Core/VCore variants                                                         | [6 Years](https://web.archive.org/web/20170331081347/https://blogs.technet.microsoft.com/hybridcloud/2017/03/01/now-available-windows-server-premium-assurance-and-sql-server-premium-assurance/) with Premium Assurance License <br /> Jan 2020 to Jan 2026 | Same as Windows 7                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |\n| Windows Server 2012          | ServerDatacenter, ServerStandard and their Core variants                                                                                          | [3 Years](https://learn.microsoft.com/en-us/lifecycle/products/windows-server-2012) <br /> Oct 2023 to Oct 2026                                                                                                                                              | KB5017221 [x64](https://catalog.s.download.windowsupdate.com/c/msdownload/update/software/secu/2022/08/windows8-rt-kb5017221-x64_d01e9b9b910f5f1e374bc1b89a8d00c1a97e215f.msu) <br /> KB2937636 [x64](https://catalog.s.download.windowsupdate.com/c/msdownload/update/software/crup/2014/07/windows8-rt-kb2937636-x64_29e0b587c8f09bcf635c1b79d09c00eef33113ec.msu)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |\n| Windows 8.1                  | Enterprise, Professional, EmbeddedIndustry and their E/N variants                                                                                 | ESU is not officially supported, <br /> but you can manually install Server 2012 R2 (for x64) updates until Jan 2024, <br /> and Embedded 8.1 (for x86) updates until July 2023                                                                              | Build 9600.17415 <br /> + <br /> KB3021910 [x64](https://catalog.s.download.windowsupdate.com/c/msdownload/update/software/updt/2015/04/windows8.1-kb3021910-x64_e291c0c339586e79c36ebfc0211678df91656c3d.msu)-[x86](https://catalog.s.download.windowsupdate.com/c/msdownload/update/software/updt/2015/04/windows8.1-kb3021910-x86_7e70173bec00c3d4fe3b0b8cba17b095b4ed2d20.msu) <br /> KB3172614 [x64](https://catalog.s.download.windowsupdate.com/c/msdownload/update/software/updt/2016/07/windows8.1-kb3172614-x64_e41365e643b98ab745c21dba17d1d3b6bb73cfcc.msu)-[x86](https://catalog.s.download.windowsupdate.com/c/msdownload/update/software/updt/2016/07/windows8.1-kb3172614-x86_d11c233c8598b734de72665e0d0a3f2ef007b91f.msu) <br /> KB5017220 [x64](https://catalog.s.download.windowsupdate.com/c/msdownload/update/software/secu/2022/08/windows8.1-kb5017220-x64_d771111b22ec71560b207a6735d5ecebd47c4f38.msu)-[x86](https://catalog.s.download.windowsupdate.com/d/msdownload/update/software/secu/2022/08/windows8.1-kb5017220-x86_3134a18dac1b1fe4f656c9e25d0e4aaa75619d16.msu)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |\n| Windows Server 2012 R2       | ServerDatacenter, ServerStandard and their Core variants                                                                                          | [3 Years](https://learn.microsoft.com/en-us/lifecycle/products/windows-server-2012-r2) <br /> Oct 2023 to Oct 2026                                                                                                                                           | Same as Windows 8.1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |\n| Windows 10                   | Education, Enterprise, IoTEnterprise, <br /> Professional, ProfessionalEducation, <br /> ProfessionalWorkstation, ServerRdsh and their N variants | [3 Years](https://learn.microsoft.com/en-us/windows/whats-new/extended-security-updates) <br /> Oct 2025 to Oct 2028                                                                                                                                         | Windows 10 22H2 (19045.4957) <br /> Just run Windows Update                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |\n\n----\n\n## Windows KMS Host\n\n- You can activate the Windows KMS host license using the TSforge option in MAS.\n- Script will auto-select the available CSVLK with most KMS Counted IDs.\n- Along with activation it will also charge the host with 25 clients which is a minimum required threshold for a working KMS host.\n- With Windows KMS host, you can activate the KMS client in your network.\n- This option is for the advanced users, you can [check the guides][8] to understand more about it.  \n\n\n::: warning Notes\n\n- **Use this activation only when necessary.**\n- On Windows 10/11, the system may randomly change the Windows edition later. This is a Windows issue and can be safely ignored.\n- KMS host license causes the sppsvc service to run continuously.\n\n:::\n\n\n## Office KMS Host\n\n- You can activate the Office KMS host license using the TSforge option in MAS.  \n- To activate an Office KMS host, you will need to download and run the installer for the appropriate license pack.\n- Along with activation it will also charge the host with 25 clients for a working KMS host.  \n- With Office KMS host, you can activate the Office KMS client in your network. \n- This option is for the advanced users, you can [check the guides][9] to understand more about it.  \n\n::: danger Note\n\n- **Use this activation only when necessary.**\n- KMS host license causes the sppsvc service to run continuously.\n\n:::\n\n::: details Office KMS Host Links\n\nAll links given below are official links hosted by Microsoft.\n\n| Version              | Link                                                                                                                                     |\n|----------------------|------------------------------------------------------------------------------------------------------------------------------------------|\n| Office 2010 KMS host | `https://download.microsoft.com/download/E/4/E/E4EF2B72-9F16-4D5F-9A1D-D9BE39A1C127/KeyManagementServiceHost_en-us.exe`                  |\n| Office 2013 KMS host | `https://download.microsoft.com/download/3/4/2/342F1FEA-CCB2-4F68-A6DE-041934383C18/office2013volumelicensepack_4701-1000_en-us_x86.exe` |\n| Office 2016 KMS host | `https://download.microsoft.com/download/5/E/3/5E329B97-6DC5-4AA7-9AA7-A5B5D46AF82F/office2016volumelicensepack_4324-1002_en-us_x86.exe` |\n| Office 2019 KMS host | `https://download.microsoft.com/download/F/6/0/F60CA746-5F03-482D-A331-15F38FB4AACA/office2019volumelicensepack_x86.exe`                 |\n| Office 2021 KMS host | `https://download.microsoft.com/download/8/e/e/8eef6160-396a-4c26-830d-9e2a24c00309/Office2021VolumeLicensePack_x86.exe`                 |\n| Office 2024 KMS host | `https://download.microsoft.com/download/1/4/0/140c97ae-7360-4dfc-9ba0-5f509600a06e/Office2024VolumeLicensePack_x86.exe`                 |\n\n - When prompted for a KMS host product key during installation, select \"No\".\n - On Windows 11 24H2/Server 2025 and newer, the VBScript FoD must be enabled for these installers to work.\n - Office 2019-2024 packs are only supported on Windows 8/Server 2012 and newer. \n - If installing multiple license packs on the same machine, make sure to install older versions before newer versions (ex. Install Office 2016 before Office 2024).\n\n:::\n\n::: details  Office 2010 KMS Host Installer Workaround\n\n - Office 2010 license installer requires a workaround to install on Windows 10/11/Server 2016-2025:\n   - Run the installer, and dismiss the resulting error message.\n   - Launch Command Prompt as Administrator.\n   - If you are using 32-bit Windows, run `notepad \"%programfiles%\\MSECache\\OfficeKMS\\kms_host.vbs\"`.\n   - If you are using 64-bit or ARM64 Windows, run `notepad \"%programfiles(x86)%\\MSECache\\OfficeKMS\\kms_host.vbs\"`\n   - Click `Edit > Replace`.\n   - In the \"Find\" textbox type `>= \"7\"`, in the \"Replace\" textbox type `>= 1`.\n   - Click \"Replace All\".\n   - Save the file and close Notepad.\n   - If you are using 32-bit Windows, run `cscript \"%programfiles%\\MSECache\\OfficeKMS\\kms_host.vbs\"`.\n   - If you are using 64-bit or ARM64 Windows, run `cscript \"%programfiles(x86)%\\MSECache\\OfficeKMS\\kms_host.vbs\"`\n\n:::\n\n\n::: details Workaround to install on Non-Volume licensed Windows\n\n - All installers normally require volume-licensed Windows, but this can be worked around as well:\n   - Follow the same procedure as for the above Office 2010 workaround, but replace `If isVL = False` with `If False`.\n   - For Office 2019-2024 packs, the installer script to edit is named after the Office version (ex. `kms_host19.vbs` for Office 2019).\n  \n:::\n\n## Reset of Rearm / Timers / Tamper / Lock\n\n- You can use this feature in TSforge option in MAS.\n\n| Features                   | Info                                                               |\n|----------------------------|--------------------------------------------------------------------|\n| Reset Rearm Count          | Reset rearm counter for infinite evaluation                        |\n| Reset Eval Period          | Reset evaluation period for infinite evaluation                    |\n| Clear Tamper State         | Clear the tamper state set due to store corruption or deletion     |\n| Remove Evaluation Key Lock | Remove the product key change lock set for evaluation product keys |\n\n\n## How to remove TSforge\n\n- This activation method doesn't modify any Windows components and doesn't install any new files.\n- Instead, it appends data to one of data files used by Software Protection Platform.\n- If you want to reset the activation status,\n- In MAS script, goto Troubleshoot and apply Fix Licensing option.\n- Done ✔️\n\n## Manual Activation\n\nSee the [TSforge README][2] for information on manually using TSforge.\n\n## Setup Preactivation\n\n-   Check the Extract OEM option in the MAS Extras section if you want pre-activated Windows installation.\n-   Read more [here](./oem-folder).\n\n## Troubleshoot  \n\n::: danger Troubleshoot\n\n- If you need any help regarding this, first review the [**FAQ section**](./faq) — your answer will most likely be there.  \n\n- If your issue persists — You can [**Contact Us**](./troubleshoot).\n\n:::\n\n[N]: https://github.com/NiREvil/windows-activation/\n[1]: https://github.com/UMSKT/writeups/blob/main/PKEY2005.md\n[2]: https://github.com/massgravel/TSforge\n[3]: https://betawiki.net/wiki/Windows_11_build_27802\n[4]: https://github.com/dadorner-msft/activationws\n[5]: https://learn.microsoft.com/en-us/windows/deployment/volume-activation/introduction-vamt\n[6]: https://github.com/massgravel/massgrave.dev/blob/main/blog/2025-02-14-TSforge/index.md\n[7]: https://learn.microsoft.com/en-us/lifecycle/faq/extended-security-updates\n[8]: https://learn.microsoft.com/en-us/windows-server/get-started/kms-create-host\n[9]: https://learn.microsoft.com/en-us/office/volume-license-activation/plan-volume-activation-of-office#key-management-service-kms-activation-of-office\n"
  },
  {
    "path": "docs/wa/unsupported_products_activation.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'Unsupported Products Activation'\ndescription: 'only those product activation methods are mentioned that are -not supported- by MAS script'\ndate: 2024-04-19\neditLink: true\n---\n\n# Unsupported Products Activation\n\n::: info\n\n- On this page, only those product activation methods are mentioned that are not supported by **MAS script**.\n- If you are unsure, run [**MAS**](./index#step2) script activation options first.\n\n:::\n\n## MS Office For Mac\n\n- Check [here][1].\n\n## Windows XP Pro VL\n\n- Download Windows XP Pro VL - [Link](./windows_xp_links)\n\n- 32-bit (x86) Windows XP Pro VL SP3 ISO Activation key:\n\n```shell\nXCYBK-2B3KV-G8T8F-WXJM7-WCTYT\n```\n  \n- 64-bit (x64) Windows XP Pro VL SP2 ISO Activation key:\n\n```shell\nVCFQD-V9FX9-46WVH-K3CD4-4J3JM\n```\n\n<hr/><br/>\n\n## Office 2010 on Windows XP / Server 2003\n\n- [Office 2010 Installer][2]\n\n- [Ohook Script for Office 2010 by abbodi1406.](https://gitlab.com/-/project/11037551/uploads/bbdc7aae987d08f8e2bf6533942e623a/office2010_ohook.7z) *(Password: `2010`)*\n\n1. Extract the Ohook archive.\n2. Run \t`_install.cmd` as Administrator.\n3. Get a key from [here](ohook#office-2010-140) for the installed Office 2010 product.\n4. Open an Office app > `File > Help > Activate/Change Product Key`.\n5. Enter the key and finish activation.\n\nOffice 2010 should now be permanently activated.  \n\n::: info NOTE\n\nMAS supports Office on Windows Vista and later.\n\n:::\n\n## Office 2007 Enterprise\n\n- Download Office 2007 Enterprise - [**Link**][5]\n- Activation key:  \n  \n```shell\nBQDQB-KRRY9-43DBR-4P9J4-DH7D8\n```\n\n## Remote Desktop Services — Client Access Licenses (RDS CALs)\n\n**Installation**  \n\n::: details Click here to see info\n\n- Sign into the server you want to use as the license server using an administrator account.\n- In Server Manager, select Manage > Add Roles and Features.\n- On the Select installation type page, select Role-based or feature-based installation.\n- Specify the server on which you install the licensing role.\n- On the Server Roles page, check the box for Remote Desktop Services, then select Next until you see the Remote Desktop Services page.\n- Select the roles you want to install. Make sure you include the Remote Desktop Licensing role.\n- In the Add Roles and Features Wizard dialog box, select Add Features.\n- Select Next until you see the Confirmation page, then select Install.\n\n::: \n\n**Activation**\n\nThere is no validation during the activation of RDS licenses.\n\n- Open \"Remote Desktop Licensing Manager\"\n- Right-click the server and click \"Activate Server\"\n- Select the connection method of choice and click next (default is fine)\n- Fill the first company information with garbage and click next\n- Leave the next page blank and click next\n- The wizard should complete and say \"The license server has been successfully activated\"\n- Keep \"Start Install Licenses Wizard\" checked and click next until it asks you to select a \"License program\"\n- Change the License Program to \"Service Provider License Agreement\" in the dropdown and click next\n- Set the agreement number to `1234567` and click next\n- Fill out the next page with your chosen values and click next\n- The license wizard should report \"The requested licenses have been successfully installed\"\n\nAlternatively, you can generate a key on the page below. Use web browser option in activation process to get Product ID. It works on old Server versions as well.  \n\nWebsite:  \n[thecatontheceiling.github.io/Lyssa][6] \n\nSource code and details:  \n\n[LyssaRDSGen][7]\n\n[gist.github.com/WitherOrNot][8]\n\n## HEVC Video Extensions\n\n- It's a [paid Microsoft extension][9] to play High Efficiency Video Coding (HEVC) videos in any video app on your Windows 10/11 device.\n- Microsoft provides digitally signed installers to M365 Admin Center subscribers, you can download them below.\n\nDownload link: [**app.box.com/s/rozw**][10] \nAlternatively, you can download AppxBundle installer from [**store.rg-adguard.net**][11] search `9nmzlz57r3t7` in ProductId.\n\n## Visual Studio\n\n- Download - [visualstudio.microsoft.com/downloads/][12]\n- Activation keys:\n\n| Editions        | Activation Key |\n|-----------------|----------------|\n| Visual Studio 2022 Professional | `TD244-P4NB7-YQ6XK-Y8MMM-YWV2J` |\n| Visual Studio 2022 Enterprise   | `VHF9H-NXBBB-638P6-6JHCY-88JWH` |\n| Visual Studio 2019 Professional | `NYWVH-HT4XC-R2WYW-9Y3CM-X4V3Y` |\n| Visual Studio 2019 Enterprise   | `BF8Y8-GN2QH-T84XB-QVY3B-RC4DF` |\n\n## Microsoft DaRT\n\nMicrosoft DaRT (Diagnostics and Recovery Toolset, formerly ERD Commander) is an official bootable WinPE-based recovery image from Microsoft that contains diagnostic and troubleshooting tools for Windows recovery.\n\nThis product is no longer under active development.\n\n**Download Link:** Microsoft Desktop Optimization Pack 2015  \n[mu_microsoft_desktop_optimization_pack_2015_x86_x64.iso][13]\n\n**Guide:** [woshub.com/create-dart-10-recovery-image/][14]\n\n## SQL Server\n\n- Download - [microsoft.com/evaluate-sql-server-2022][15]\n- Activation keys:\n\n| Editions        | Activation Key |\n|-----------------|----------------|\n| SQL Server 2022 Enterprise      | `J4V48-P8MM4-9N3J9-HD97X-DYMRM` |\n| SQL Server 2022 Enterprise Core | `2Q48Q-PB48J-DRCVN-GB844-X2H4Q` |\n| SQL Server 2022 Standard        | `FG86G-CHH2T-CB7NJ-XT7D2-V8V4X` |\n| SQL Server 2022 Web             | `2R97W-F4XNT-T6MYV-3TKB7-6X3JM` |\n| SQL Server 2022 Developer       | `22222-00000-00000-00000-00000` |\n| SQL Server 2019 Enterprise      | `HMWJ3-KY3J2-NMVD7-KG4JR-X2G8G` |\n| SQL Server 2019 Standard        | `PMBDC-FXVM3-T777P-N4FY8-PKFF4` |\n\n## Microsoft Configuration Manager\n\nAlso known as ConfigMgr, Microsoft Endpoint Configuration Manager (MECM).  \nFormerly known as Systems Management Server (SMS), System Center Configuration Manager (SCCM). [More info][16] on name changes.  \n\n**Microsoft Configuration Manager (Current Branch)**\n\nDownload - [microsoft.com/evaluate-endpoint-config-manager][17]   \nActivation Key:  \n\n```shell\nBXH69-M62YX-QQD6R-3GPWX-8WMFY\n```\n\n## Troubleshoot  \n\n::: danger Troubleshoot\n\n- If you need any help regarding this, first review the [**FAQ**](./faq) — your answer will most likely be there.  \n\n- If your issue persists — You can [**Contact Us**](./troubleshoot).\n\n:::\n\n[1]: https://massgrave.dev/office_for_mac\n[2]: https://massgrave.dev/office_msi_links#office-2010\n[3]: https://gitlab.com/-/project/11037551/uploads/bbdc7aae987d08f8e2bf6533942e623a/office2010_ohook.7z\n[4]: https://app.box.com/s/q0nyib6bfylosvbbm5x8ztg87vy0kl8a\n[5]: https://massgrave.dev/office_msi_links#office-2007\n[6]: https://thecatontheceiling.github.io/LyssaRDSGen/\n[7]: https://github.com/thecatontheceiling/LyssaRDSGen\n[8]: https://gist.github.com/WitherOrNot/c34c4c7b893e89ab849ce04e007d89a9\n[9]: https://apps.microsoft.com/detail/9nmzlz57r3t7\n[10]: https://app.box.com/s/rozwl3zsx6o90xw2568by61fhp3z3icw \n[11]: https://store.rg-adguard.net/\n[12]: https://visualstudio.microsoft.com/downloads/\n[13]: https://drive.massgrave.dev/mu_microsoft_desktop_optimization_pack_2015_x86_x64_dvd_5975282.iso\n[14]: https://woshub.com/create-dart-10-recovery-image/\n[15]: https://www.microsoft.com/en-us/evalcenter/evaluate-sql-server-2022\n[16]: https://craigtwall.com/how-sccm-became-memcm-or-just-configmgr/\n[17]: https://www.microsoft.com/en-us/evalcenter/evaluate-microsoft-endpoint-configuration-manager  \n"
  },
  {
    "path": "docs/wa/windows10_eol.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'Windows 10 Updates ——After End Of Life——'\ndescription: 'This document explains how users can receive official updates after the retirement date of Windows 10 on October 14, 2025'\ndate: 2025-07-30\neditLink: true\n---\n\n# Windows 10 Updates After End-Of-Life\n\n::: info INFO\n\nThis document explains how users can receive official updates after the retirement date of Windows 10 on October 14, 2025.\n\n**For many people,**\nThe most obvious solution would be to just upgrade to Windows 11, but they can not because the **hardware is not supported** for Windows 11. Some users might also not like Windows 11\nand would like to stay on Windows 10 as long as they can.\n\n> - Here are several solutions for you to choose from; feel free to select the one you prefer the most.\n\n:::\n\n## Windows 10 ESU updates 🤍\n\nMicrosoft announced [**Extended Security Updates (ESU)**][1] where users can buy the ESU subscription to receive Windows updates. These updates will begin to roll out in November 2025.\n\n### Commercial ESU Program (3 Years) 🤍\n\n- You can use [**TSforge option in MAS**](./index#step2) to activate [**3 Years ESU**][13] (Oct 2025 to Oct 2028).\n\n### Consumer ESU Program (1 Year)\n\n- Microsoft is offering free consumer ESU Program (1 Year) for Windows 10 Home, Professional, Pro Education, or Workstation editions.\n- To get this free ESU, you need to login your Microsoft account and [**sync your PC settings**][15]. \n— [**More info**][16].\n\n\n## Windows 10 (IoT) Enterprise LTSC 2021\n\n### Microsoft releases Windows 10/11 in two servicing channels.\n\n1. **GAC — General Availability Channel**, (i.e. Home, Pro, Enterprise).   \nIt will reach the end of support on [**October 14, 2025**][2].\n\n2. **LTSC — Long-Term Servicing Channel**, (i.e. Enterprise LTSC, IoT Enterprise LTSC).   \nWindows 10 Enterprise LTSC 2021 will reach the end of support on [**Jan 12, 2027**][3]\nand Windows 10 Io Enterprise LTSC 2021 will reach the end of support on [**Jan 13, 2032**][4]\n\nThe solution is simple. You can just use the Official Windows 10 IoT Enterprise LTSC 2021 edition to get updates till Jan 13, 2032.\n\n::: details Clean install Windows 10 (IoT) Enterprise LTSC 2021\n\nThe IoT edition ISO is available in English language only, but don't worry.\n\n- Download [**Enterprise LTSC 2021**](./windows_ltsc_links) ISO in your desired language.\n- Install Windows using this [**clean installation guide**](./clean_install_windows).\n- After installing Windows, to change the edition, enter the IoT LTSC 2021 key `QPM6N-7J2WJ-P88HH-P3YRH-YY74H` on the activation page in the Windows settings.\n\n:::\n\n::: details Upgrade Windows 10 Home, Pro, etc editions to Windows 10 IoT Enterprise LTSC 2021 while keeping files and apps\n\nThe IoT edition is available in English language only, but don't worry.\n\n- Download Windows 10 Enterprise LTSC ISO from [**here**](./windows_ltsc_links) in the **same Windows language and architecture**.\n  - To check the installed Windows architecture, open Powershell as admin and enter,\n\n```powershell\nGet-WmiObject -Class Win32_OperatingSystem | Format-List OSArchitecture\n```\n\n**x64 means 64 Bit**, **x86 means 32 Bit**  \n- To check the installed Windows Language, open Powershell as admin and enter,\n\n```powershell\ndism /english /online /get-intl | find /i \"Default system UI language\"\n```\n\n- Right-click on the downloaded ISO file, Open With → Windows Explorer\n- A new DVD drive will appear in Windows Explorer, which means the installation image has been mounted successfully.\n- Now open the command prompt as admin and enter:\n\n```reg\nreg add \"HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\" /v EditionID /d IoTEnterpriseS /f\n```\n\n- Now quickly go into that DVD drive and run setup.exe, and continue until you reach the final confirmation screen. (Don't delay at this step, otherwise it won't show an option to keep files and apps)\n- Make sure it says \"**Keep personal files and apps**\" on the final screen. Then you can continue the process and wait until it is done.\n\nThat's all.\n\n:::\n\n::: details NOTES\n\n- LTSC editions do not have Store apps installed by default. However, if you upgrade from GAC to LTSC, all your Store apps will be retained.\n  In contrast, if you perform a clean installation of Windows LTSC, Store apps will not be installed. For instructions on how to install them manually, please refer to this [**page**][6]\n\n- IoT editions are [**binary identical**][7] to Enterprise editions. The difference is in licensing. You can use it just fine on a general-purpose device.\n- To learn about the advantages and disadvantages of LTSC, click [here](./windows_ltsc_links#microsoft-store-app-installation-on-ltsc)\n\n:::\n\n## Windows 11 IoT Enterprise Editions\n\n**Applies to:**    \n- Windows 11 IoT Enterprise, beginning with version 24H2 (Build 26100 and newer)\n- Windows 11 IoT Enterprise LTSC 2024 (Build 26100)\n\n<hr/><br/>\n\nMany users choose not to use Windows 11 due to hardware limitations, such as a lack of TPM, Secure Boot, or UEFI support. While it is possible to bypass these limitations, doing so is officially unsupported and may lead to issues with future updates.\n\nHowever, a promising alternative is available.\n\nIn 2024, Microsoft released Windows 11 IoT Enterprise 24H2 (GAC) / IoT Enterprise LTSC 2024 (LTSC) which has [**Relaxed Hardware Requirements**][9].\n\nYou can officially install these Windows 11 editions without meeting the usual hardware requirements, such as TPM, Secure Boot, and UEFI, while still receiving continued support in the future.\n\n::: details Clean install Windows\n\n**Clean install Windows 11 IoT Enterprise (GAC/LTSC) 2024**\n\nThe IoT edition ISO is available in English language only, but don't worry.\n\n- Download any [**Windows 11 24H2**](./windows_11_links) (For GAC) OR [**Enterprise LTSC 2024**](./windows_ltsc_links) (For LTSC) ISO in your desired language.\n- Follow [**Normal clean installation guide**](./clean_install_windows) if you are using IoT edition English language ISO.\n- Follow [**PID.txt method**](./clean_install_windows#windows-11-on-unsupported-hardware) to install IoT edition from scratch if you are using Non-IoT ISO.\n\nAlternatively, you can install any Windows 11 24H2 (For GAC) or Enterprise LTSC 2024 (For LTSC) ISO file with [**Rufus**](./clean_install_windows#create-a-bootable-usb-with-rufus) and once the installation is done, you can use the change edition option in MAS to switch the edition to IoT Enterprise and enjoy official support on unsupported hardware.\n\n:::\n\n::: details Upgrade Windows 10 Home, Pro, etc editions to Windows 11 IoT Enterprise (GAC/LTSC) 2024 while keeping files and apps\n\nThe IoT edition is available in English language only, but don't worry.\n\n- Download any [**Windows 11 24H2**](./windows_11_links) (For GAC) OR [**Enterprise LTSC 2024**](./windows_ltsc_links) (For LTSC) ISO in the **same Windows language and architecture**.\n\n- To check the installed Windows architecture, open Powershell as admin and enter:\n\n```shell\nGet-WmiObject -Class Win32_OperatingSystem | Format-List OSArchitecture\n```\n\n**x64 means 64 Bit, x86 means 32 Bit**  \n- To check the installed Windows Language, open Powershell as admin and enter,\n\n```shell\ndism /english /online /get-intl | find /i \"Default system UI language\"\n```\n\n- Right-click on the downloaded ISO file, Open With → Windows Explorer\n- A new DVD drive will appear in Windows Explorer, which means the installation image has been mounted successfully.\n- Now open the command prompt as admin and enter:\n\n**For GAC**\n\n```shell\nreg add \"HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\" /v EditionID /d IoTEnterprise /f\n```\n\n**For LTSC**\n\n```shell\nreg add \"HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\" /v EditionID /d IoTEnterpriseS /f\n```\n\n- Now quickly go into that DVD drive and run setup.exe, and continue until you reach the final confirmation screen. (Don't delay at this step, otherwise it won't show an option to keep files and apps)\n- Make sure it says \"**Keep personal files and apps**\" on the final screen. Then you can continue the process and wait until it is done.\n\nThat's all.\n\n:::\n\n::: details NOTES\n\n- Many tools can let you install Windows 11 if the hardware is not supported and monthly updates would work fine. However yearly feature updates will fail to install if hardware requirements are not met.\n\n- This is why IoT (24H2/2024) editions are mentioned so that you can get official support on future feature upgrades.\n\n- LTSC editions do not have Store apps installed by default. However, if you upgrade from GAC to LTSC, all your Store apps will be retained. In contrast, if you perform a clean installation of Windows LTSC, Store apps will not be installed. For instructions on how to install them manually, please refer to this [**page**][6]\n\n- Windows 11 24H2 / 2024 requires CPUs that support SSE4.2 and POPCNT instructions.\n- IoT editions are [**binary identical**][12] to Enterprise editions. The difference is in licensing. You can use it just fine on a general-purpose device.\n\n- To learn about the advantages and disadvantages of LTSC, click [here][8]\n- You can install the [officially supported][13] Windows 11 24H2 IoT editions on a system without TPM; however, some games may not allow you to play if your system lacks TPM on Windows 11. In that case, you will need to stick with Windows 10.\n\n:::\n\n::: danger TROUBLESHOOT\n\n- If you need any help regarding this, first review the [**FAQ**](./faq) — your answer will most likely be there.\n\n- If your issue persists — You can [**Contact us**](./troubleshoot).\n\n:::\n\n[1]: https://learn.microsoft.com/en-us/windows/whats-new/extended-security-updates\n[2]: https://learn.microsoft.com/en-us/lifecycle/products/windows-10-home-and-pro\n[3]: https://learn.microsoft.com/en-us/lifecycle/products/windows-10-enterprise-ltsc-2021\n[4]: https://learn.microsoft.com/en-us/lifecycle/products/windows-10-iot-enterprise-ltsc-2021\n[5]: https://massgrave.dev/windows_ltsc_links\n[6]: https://massgrave.dev/windows_ltsc_links#microsoft-store-app-installation-on-ltsc\n[7]: https://learn.microsoft.com/en-us/windows/iot/iot-enterprise/Overview\n[8]: https://massgrave.dev/windows_ltsc_links#what-is-ltsc-and-is-it-the-right-choice-for-you\n[9]: https://learn.microsoft.com/en-us/windows/iot/iot-enterprise/Hardware/System_Requirements?tabs=Windows11LTSC#optional-minimum-requirements\n[10]: https://massgrave.dev/windows_11_links\n[11]: https://massgrave.dev/windows_ltsc_links\n[12]: https://learn.microsoft.com/en-us/windows/iot/iot-enterprise/Overview\n[13]: https://learn.microsoft.com/en-us/windows/iot/iot-enterprise/Hardware/System_Requirements?tabs=Windows11LTSC#optional-minimum-requirements\n[14]: https://learn.microsoft.com/en-us/windows/whats-new/extended-security-updates\n[15]: https://support.microsoft.com/windows/deebcba2-5bc0-4e63-279a-329926955708#id0ebd=windows_10\n[16]: https://support.microsoft.com/en-us/windows/windows-10-consumer-extended-security-updates-esu-program-33e17de9-36b3-43bb-874d-6c53d2e4bf42\n"
  },
  {
    "path": "docs/wa/windows_10_links.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'Windows 10 Download'\ndescription: 'All download links lead to genuine files only'\ndate: 2025-05-19\neditLink: true\n---\n\n# Windows 10 Download\n\n<br/>\n\n::: info All download links lead to **`genuine files`**\n\n- [**FAQ**](./genuine-installation-media#faq)\n\n- [**Windows 10 Updates after —End Of Life—**](./windows10_eol)\n\n- [**How to ensure that these files are genuine?**][genuine]\n\nThe Consumer ISO includes all editions, such as Home, Pro, and Education, but excludes the Enterprise edition. In contrast, the Business ISO includes all editions except for the Home versions.\n\n:::\n\n<br/>\n\n# Download Links\n\n:::tabs\n\n== Windows 10 Consumer 22H2 🤍\n\n<details>\n<summary>Info on Official links</summary>\n\nMicrosoft provides Official public links for Windows 10 22H2 (Build 19045.2965) and that build is old and has an issue where Windows update may fail to install [KB5028997][1].  \nThat is why we recommend getting the latest Windows 10 ISO file from the table below, those ISOs are taken from the Official MVS site.\n\nHowever, if you want direct Official links only then check\n[MSDL] It provides Official links straight from Microsoft and works even if Microsoft is blocking the download to Russian/VPN users.\nWindows 10 download from [microsoft.com/en-us/software-download][8] isn't recommended because it uses an ESD file to generate ISO and that process sometimes may generate corrupt ISO which can not be verified with known checksums.\n\n</details>\n\n<br/>\n\n**Windows 10 Consumer 22H2**\n\n> - Build 19045.6093 (July 2025)\n\n| Language               | Arch | Link                                                                                                                                                                                                                     |\n|:-----------------------|:-----|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Arabic                 | x64  | [ar-sa_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/ar-sa_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| Arabic                 | x86  | [ar-sa_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/ar-sa_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| Bulgarian              | x64  | [bg-bg_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/bg-bg_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| Bulgarian              | x86  | [bg-bg_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/bg-bg_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| Czech                  | x64  | [cs-cz_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/cs-cz_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| Czech                  | x86  | [cs-cz_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/cs-cz_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| Danish                 | x64  | [da-dk_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/da-dk_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| Danish                 | x86  | [da-dk_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/da-dk_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| German                 | x64  | [de-de_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/de-de_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| German                 | x86  | [de-de_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/de-de_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| Greek                  | x64  | [el-gr_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/el-gr_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| Greek                  | x86  | [el-gr_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/el-gr_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| English-United Kingdom | x64  | [en-gb_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/en-gb_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| English-United Kingdom | x86  | [en-gb_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/en-gb_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| English                | x64  | [en-us_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/en-us_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| English                | x86  | [en-us_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/en-us_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| Spanish                | x64  | [es-es_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/es-es_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| Spanish                | x86  | [es-es_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/es-es_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| Spanish-Mexico         | x64  | [es-mx_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/es-mx_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| Spanish-Mexico         | x86  | [es-mx_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/es-mx_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| Estonian               | x64  | [et-ee_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/et-ee_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| Estonian               | x86  | [et-ee_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/et-ee_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| Finnish                | x64  | [fi-fi_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/fi-fi_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| Finnish                | x86  | [fi-fi_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/fi-fi_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| French-Canada          | x64  | [fr-ca_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/fr-ca_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| French-Canada          | x86  | [fr-ca_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/fr-ca_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| French                 | x64  | [fr-fr_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/fr-fr_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| French                 | x86  | [fr-fr_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/fr-fr_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| Hebrew                 | x64  | [he-il_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/he-il_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| Hebrew                 | x86  | [he-il_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/he-il_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| Croatian               | x64  | [hr-hr_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/hr-hr_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| Croatian               | x86  | [hr-hr_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/hr-hr_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| Hungarian              | x64  | [hu-hu_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/hu-hu_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| Hungarian              | x86  | [hu-hu_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/hu-hu_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| Italian                | x64  | [it-it_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/it-it_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| Italian                | x86  | [it-it_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/it-it_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| Japanese               | x64  | [ja-jp_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/ja-jp_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| Japanese               | x86  | [ja-jp_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/ja-jp_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| Korean                 | x64  | [ko-kr_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/ko-kr_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| Korean                 | x86  | [ko-kr_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/ko-kr_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| Lithuanian             | x64  | [lt-lt_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/lt-lt_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| Lithuanian             | x86  | [lt-lt_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/lt-lt_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| Latvian                | x64  | [lv-lv_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/lv-lv_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| Latvian                | x86  | [lv-lv_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/lv-lv_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| Norwegian-Bokmal       | x64  | [nb-no_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/nb-no_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| Norwegian-Bokmal       | x86  | [nb-no_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/nb-no_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| Dutch-Netherlands      | x64  | [nl-nl_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/nl-nl_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| Dutch-Netherlands      | x86  | [nl-nl_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/nl-nl_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| Polish                 | x64  | [pl-pl_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/pl-pl_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| Polish                 | x86  | [pl-pl_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/pl-pl_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| Portuguese-Brazil      | x64  | [pt-br_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/pt-br_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| Portuguese-Brazil      | x86  | [pt-br_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/pt-br_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| Portuguese-Portugal    | x64  | [pt-pt_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/pt-pt_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| Portuguese-Portugal    | x86  | [pt-pt_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/pt-pt_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| Romanian               | x64  | [ro-ro_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/ro-ro_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| Romanian               | x86  | [ro-ro_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/ro-ro_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| Russian                | x64  | [ru-ru_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/ru-ru_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| Russian                | x86  | [ru-ru_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/ru-ru_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| Slovak                 | x64  | [sk-sk_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/sk-sk_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| Slovak                 | x86  | [sk-sk_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/sk-sk_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| Slovenian              | x64  | [sl-si_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/sl-si_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| Slovenian              | x86  | [sl-si_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/sl-si_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| Serbian-Latin          | x64  | [sr-latn-rs_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/sr-latn-rs_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| Serbian-Latin          | x86  | [sr-latn-rs_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/sr-latn-rs_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| Swedish                | x64  | [sv-se_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/sv-se_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| Swedish                | x86  | [sv-se_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/sv-se_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| Thai                   | x64  | [th-th_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/th-th_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| Thai                   | x86  | [th-th_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/th-th_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| Turkish                | x64  | [tr-tr_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/tr-tr_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| Turkish                | x86  | [tr-tr_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/tr-tr_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| Ukranian               | x64  | [uk-ua_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/uk-ua_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| Ukranian               | x86  | [uk-ua_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/uk-ua_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| Chinese-Simplified     | x64  | [zh-cn_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/zh-cn_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| Chinese-Simplified     | x86  | [zh-cn_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/zh-cn_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n| Chinese-Traditional    | x64  | [zh-tw_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso](https://drive.massgrave.dev/zh-tw_windows_10_consumer_editions_version_22h2_updated_july_2025_x64_dvd_f841fba5.iso) |\n| Chinese-Traditional    | x86  | [zh-tw_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso](https://drive.massgrave.dev/zh-tw_windows_10_consumer_editions_version_22h2_updated_july_2025_x86_dvd_f841fba5.iso) |\n\n\n== Windows 10 Business 22H2\n\n**Windows 10 Business 22H2**\n\n> - Build 19045.6093 (July 2025)\n\n| Language               | Arch | Link                                                                                                                                                                                                                     |\n|:-----------------------|:-----|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Arabic                 | x64  | [ar-sa_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_9ff53440.iso](https://drive.massgrave.dev/ar-sa_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_9ff53440.iso) |\n| Arabic                 | x86  | [ar-sa_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_eaf8ff91.iso](https://drive.massgrave.dev/ar-sa_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_eaf8ff91.iso) |\n| Bulgarian              | x64  | [bg-bg_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_93375e94.iso](https://drive.massgrave.dev/bg-bg_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_93375e94.iso) |\n| Bulgarian              | x86  | [bg-bg_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_ce19e713.iso](https://drive.massgrave.dev/bg-bg_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_ce19e713.iso) |\n| Czech                  | x64  | [cs-cz_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_064b3df0.iso](https://drive.massgrave.dev/cs-cz_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_064b3df0.iso) |\n| Czech                  | x86  | [cs-cz_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_3e8b17f5.iso](https://drive.massgrave.dev/cs-cz_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_3e8b17f5.iso) |\n| Danish                 | x64  | [da-dk_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_e2e46109.iso](https://drive.massgrave.dev/da-dk_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_e2e46109.iso) |\n| Danish                 | x86  | [da-dk_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_7a2dbdbf.iso](https://drive.massgrave.dev/da-dk_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_7a2dbdbf.iso) |\n| German                 | x64  | [de-de_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_e239971d.iso](https://drive.massgrave.dev/de-de_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_e239971d.iso) |\n| German                 | x86  | [de-de_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_232e3276.iso](https://drive.massgrave.dev/de-de_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_232e3276.iso) |\n| Greek                  | x64  | [el-gr_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_c8306420.iso](https://drive.massgrave.dev/el-gr_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_c8306420.iso) |\n| Greek                  | x86  | [el-gr_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_c480f5e6.iso](https://drive.massgrave.dev/el-gr_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_c480f5e6.iso) |\n| English-United Kingdom | x64  | [en-gb_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_26b1839e.iso](https://drive.massgrave.dev/en-gb_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_26b1839e.iso) |\n| English-United Kingdom | x86  | [en-gb_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_3a7bc827.iso](https://drive.massgrave.dev/en-gb_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_3a7bc827.iso) |\n| English                | x64  | [en-us_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_9528639e.iso](https://drive.massgrave.dev/en-us_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_9528639e.iso) |\n| English                | x86  | [en-us_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_a8c993a0.iso](https://drive.massgrave.dev/en-us_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_a8c993a0.iso) |\n| Spanish                | x64  | [es-es_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_65a3bf4c.iso](https://drive.massgrave.dev/es-es_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_65a3bf4c.iso) |\n| Spanish                | x86  | [es-es_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_6d7c222d.iso](https://drive.massgrave.dev/es-es_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_6d7c222d.iso) |\n| Spanish-Mexico         | x64  | [es-mx_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_c154ce4e.iso](https://drive.massgrave.dev/es-mx_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_c154ce4e.iso) |\n| Spanish-Mexico         | x86  | [es-mx_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_fc874b58.iso](https://drive.massgrave.dev/es-mx_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_fc874b58.iso) |\n| Estonian               | x64  | [et-ee_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_6ed54329.iso](https://drive.massgrave.dev/et-ee_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_6ed54329.iso) |\n| Estonian               | x86  | [et-ee_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_84bfa4ff.iso](https://drive.massgrave.dev/et-ee_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_84bfa4ff.iso) |\n| Finnish                | x64  | [fi-fi_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_56d5c0f1.iso](https://drive.massgrave.dev/fi-fi_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_56d5c0f1.iso) |\n| Finnish                | x86  | [fi-fi_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_59495388.iso](https://drive.massgrave.dev/fi-fi_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_59495388.iso) |\n| French-Canada          | x64  | [fr-ca_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_50613eda.iso](https://drive.massgrave.dev/fr-ca_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_50613eda.iso) |\n| French-Canada          | x86  | [fr-ca_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_26f23663.iso](https://drive.massgrave.dev/fr-ca_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_26f23663.iso) |\n| French                 | x64  | [fr-fr_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_b6a08000.iso](https://drive.massgrave.dev/fr-fr_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_b6a08000.iso) |\n| French                 | x86  | [fr-fr_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_44f358ae.iso](https://drive.massgrave.dev/fr-fr_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_44f358ae.iso) |\n| Hebrew                 | x64  | [he-il_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_b7757a64.iso](https://drive.massgrave.dev/he-il_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_b7757a64.iso) |\n| Hebrew                 | x86  | [he-il_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_0bc35d32.iso](https://drive.massgrave.dev/he-il_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_0bc35d32.iso) |\n| Croatian               | x64  | [hr-hr_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_f628be05.iso](https://drive.massgrave.dev/hr-hr_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_f628be05.iso) |\n| Croatian               | x86  | [hr-hr_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_c80f4574.iso](https://drive.massgrave.dev/hr-hr_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_c80f4574.iso) |\n| Hungarian              | x64  | [hu-hu_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_05e5bd4b.iso](https://drive.massgrave.dev/hu-hu_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_05e5bd4b.iso) |\n| Hungarian              | x86  | [hu-hu_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_4eecf204.iso](https://drive.massgrave.dev/hu-hu_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_4eecf204.iso) |\n| Italian                | x64  | [it-it_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_4c46f798.iso](https://drive.massgrave.dev/it-it_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_4c46f798.iso) |\n| Italian                | x86  | [it-it_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_cbacbda0.iso](https://drive.massgrave.dev/it-it_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_cbacbda0.iso) |\n| Japanese               | x64  | [ja-jp_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_3f86bb4f.iso](https://drive.massgrave.dev/ja-jp_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_3f86bb4f.iso) |\n| Japanese               | x86  | [ja-jp_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_2918ab65.iso](https://drive.massgrave.dev/ja-jp_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_2918ab65.iso) |\n| Korean                 | x64  | [ko-kr_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_a18f3ced.iso](https://drive.massgrave.dev/ko-kr_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_a18f3ced.iso) |\n| Korean                 | x86  | [ko-kr_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_e13eaf3c.iso](https://drive.massgrave.dev/ko-kr_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_e13eaf3c.iso) |\n| Lithuanian             | x64  | [lt-lt_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_83bc05f9.iso](https://drive.massgrave.dev/lt-lt_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_83bc05f9.iso) |\n| Lithuanian             | x86  | [lt-lt_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_ef710add.iso](https://drive.massgrave.dev/lt-lt_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_ef710add.iso) |\n| Latvian                | x64  | [lv-lv_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_8a84a649.iso](https://drive.massgrave.dev/lv-lv_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_8a84a649.iso) |\n| Latvian                | x86  | [lv-lv_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_20785672.iso](https://drive.massgrave.dev/lv-lv_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_20785672.iso) |\n| Norwegian-Bokmal       | x64  | [nb-no_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_ab547635.iso](https://drive.massgrave.dev/nb-no_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_ab547635.iso) |\n| Norwegian-Bokmal       | x86  | [nb-no_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_0cfdb100.iso](https://drive.massgrave.dev/nb-no_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_0cfdb100.iso) |\n| Dutch-Netherlands      | x64  | [nl-nl_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_a44ad94e.iso](https://drive.massgrave.dev/nl-nl_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_a44ad94e.iso) |\n| Dutch-Netherlands      | x86  | [nl-nl_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_5a672ffd.iso](https://drive.massgrave.dev/nl-nl_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_5a672ffd.iso) |\n| Polish                 | x64  | [pl-pl_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_31a4fae8.iso](https://drive.massgrave.dev/pl-pl_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_31a4fae8.iso) |\n| Polish                 | x86  | [pl-pl_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_caa770b4.iso](https://drive.massgrave.dev/pl-pl_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_caa770b4.iso) |\n| Portuguese-Brazil      | x64  | [pt-br_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_b8ea5f19.iso](https://drive.massgrave.dev/pt-br_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_b8ea5f19.iso) |\n| Portuguese-Brazil      | x86  | [pt-br_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_bdba8b1e.iso](https://drive.massgrave.dev/pt-br_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_bdba8b1e.iso) |\n| Portuguese-Portugal    | x64  | [pt-pt_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_201d1577.iso](https://drive.massgrave.dev/pt-pt_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_201d1577.iso) |\n| Portuguese-Portugal    | x86  | [pt-pt_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_0623fe5c.iso](https://drive.massgrave.dev/pt-pt_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_0623fe5c.iso) |\n| Romanian               | x64  | [ro-ro_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_1c09e112.iso](https://drive.massgrave.dev/ro-ro_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_1c09e112.iso) |\n| Romanian               | x86  | [ro-ro_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_c0379a0d.iso](https://drive.massgrave.dev/ro-ro_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_c0379a0d.iso) |\n| Russian                | x64  | [ru-ru_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_7f4a7be6.iso](https://drive.massgrave.dev/ru-ru_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_7f4a7be6.iso) |\n| Russian                | x86  | [ru-ru_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_c8da2269.iso](https://drive.massgrave.dev/ru-ru_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_c8da2269.iso) |\n| Slovak                 | x64  | [sk-sk_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_74671853.iso](https://drive.massgrave.dev/sk-sk_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_74671853.iso) |\n| Slovak                 | x86  | [sk-sk_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_aeeff18d.iso](https://drive.massgrave.dev/sk-sk_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_aeeff18d.iso) |\n| Slovenian              | x64  | [sl-si_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_b2e87da5.iso](https://drive.massgrave.dev/sl-si_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_b2e87da5.iso) |\n| Slovenian              | x86  | [sl-si_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_13c039a7.iso](https://drive.massgrave.dev/sl-si_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_13c039a7.iso) |\n| Serbian-Latin          | x64  | [sr-latn-rs_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_e088ede7.iso](https://drive.massgrave.dev/sr-latn-rs_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_e088ede7.iso) |\n| Serbian-Latin          | x86  | [sr-latn-rs_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_02fee63a.iso](https://drive.massgrave.dev/sr-latn-rs_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_02fee63a.iso) |\n| Swedish                | x64  | [sv-se_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_f057124e.iso](https://drive.massgrave.dev/sv-se_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_f057124e.iso) |\n| Swedish                | x86  | [sv-se_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_5f1e7d95.iso](https://drive.massgrave.dev/sv-se_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_5f1e7d95.iso) |\n| Thai                   | x64  | [th-th_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_6760ba98.iso](https://drive.massgrave.dev/th-th_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_6760ba98.iso) |\n| Thai                   | x86  | [th-th_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_550fc8fe.iso](https://drive.massgrave.dev/th-th_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_550fc8fe.iso) |\n| Turkish                | x64  | [tr-tr_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_56190279.iso](https://drive.massgrave.dev/tr-tr_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_56190279.iso) |\n| Turkish                | x86  | [tr-tr_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_b7aa976e.iso](https://drive.massgrave.dev/tr-tr_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_b7aa976e.iso) |\n| Ukranian               | x64  | [uk-ua_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_55333ce6.iso](https://drive.massgrave.dev/uk-ua_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_55333ce6.iso) |\n| Ukranian               | x86  | [uk-ua_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_59f7ba23.iso](https://drive.massgrave.dev/uk-ua_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_59f7ba23.iso) |\n| Chinese-Simplified     | x64  | [zh-cn_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_7a96a427.iso](https://drive.massgrave.dev/zh-cn_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_7a96a427.iso) |\n| Chinese-Simplified     | x86  | [zh-cn_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_5648cb96.iso](https://drive.massgrave.dev/zh-cn_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_5648cb96.iso) |\n| Chinese-Traditional    | x64  | [zh-tw_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_3bcee6f7.iso](https://drive.massgrave.dev/zh-tw_windows_10_business_editions_version_22h2_updated_july_2025_x64_dvd_3bcee6f7.iso) |\n| Chinese-Traditional    | x86  | [zh-tw_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_4c18674b.iso](https://drive.massgrave.dev/zh-tw_windows_10_business_editions_version_22h2_updated_july_2025_x86_dvd_4c18674b.iso) |\n\n== Windows 10 IoT Enterprise 22H2\n\n**Windows 10 IoT Enterprise 22H2**\n\n> **Not LTSC**\n> \n> - Updated Oct 2022 (Build - 19045.2006)\n> - Only English RTM ISO is available\n\n| Language | Arch | Link                                                                                                                                                               |\n|:---------|:-----|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| English  | x64  | [en-us_windows_10_iot_enterprise_version_22h2_x64_dvd_51cc370f.iso](https://drive.massgrave.dev/en-us_windows_10_iot_enterprise_version_22h2_x64_dvd_51cc370f.iso) |\n\n<br/>\n\n## Note for IoT Enterprise \n\n::: danger **`(GAC) Not  LTSC`**\n\n### When installing Windows IoT Enterprise (GAC):  \n- If your system has an **OEM license** in the motherboard (Pro or higher),\n- And the key used in Setup is **OEM**\n- then Windows Setup will apply the OEM key from the motherboard during the final stage.\n\n### What this means?  \n- You can install **IoT Enterprise** with its features (including relaxed hardware requirements on Windows 11 24H2, etc.).\n- After installation, the system will show Pro edition, not IoT Enterprise.\n- This happens because IoT Enterprise (GAC) is distributed only with an OEM key.\n- This behavior is normal and cannot be avoided.\n\n### Fix  \nAfter installation, switch the edition by running the following in command prompt as admin.\n\n```shell\nslmgr.vbs /ipk XQQYW-NFFMW-XJPBH-K8732-CKFFD\n```\n\n== Windows 10 ARM64 22H2\n\n**Windows 10 ARM 22H2**\n\nCheck here for [**Windows arm links**](./windows_arm_links)\n\n== Windows 10 Enterprise LTSC\n\n**Windows 10 Enterprise LTSC**\n\nCheck here for [**Windows ltsc links**](./windows_ltsc_links)\n\n== Other Versions\n\n**Other Versions**\n\n- [MVS Bot][2]\n- [os.click/][3]\n- [files.rg-adguard.net/version/][4]\n- Download the [Microsoft ESD file][5]\n- And [ESD>ISO Converter][6] by [abbodi][7],\n  - Put the ESD file beside `decrypt.cmd` and run that script.\n  - It will create the ISO file.\n  - This process is same as how Official MCT tool creates Windows 10 and 11 ISOs.\n\n:::\n\n[1]: https://support.microsoft.com/topic/kb5028997-instructions-to-manually-resize-your-partition-to-install-the-winre-update-400faa27-9343-461c-ada9-24c8229763bf\n[2]: https://discord.gg/FajfGaH3nD\n[3]: https://os.click/\n[4]: https://files.rg-adguard.net/version/f0bd8307-d897-ef77-dbd6-216fefbe94c5\n[5]: https://worproject.com/esd\n[6]: https://github.com/abbodi1406/WHD/raw/master/scripts/esd-decrypter-wimlib-65.7z\n[7]: https://forums.mydigitallife.net/threads/abbodi1406s-batch-scripts-repo.74197/\n[8]: https://www.microsoft.com/en-us/software-download\n[MSDL]: https://msdl.gravesoft.dev/#2618\n[genuine]: https://nirevil.github.io/windows-activation/wa/genuine-installation-media#verify-authenticity-of-files\n"
  },
  {
    "path": "docs/wa/windows_11_links.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'Windows 11 Download'\ndescription: 'All download links lead to genuine files only'\ndate: 2025-05-21\neditLink: true\n---\n\n# Windows 11 Download\n\n<br/>\n\n::: info All download links lead to **`genuine files`**\n\n- [**FAQ**](./genuine-installation-media#faq)\n\n- [**How to ensure that these files are genuine?**][genuine]\n\nThe Consumer ISO includes all editions, such as Home, Pro, and Education, but excludes the Enterprise edition. In contrast, the Business ISO includes all editions except for the Home versions.\n\n:::\n\n<br/>\n\n## Download Links\n\n### Windows 11 24H2\n\n:::tabs\n\n== Windows 11 Consumer 24H2 🤍\n\n**Windows 11 Consumer 24H2**\n\n> - Build 26100.1742 (RTM)\n\n**Download Links:** [MSDL 🤍][MSDL] / [Microsoft][1]\n\n== Windows 11 Consumer 24H2\n\n**Windows 11 Consumer 24H2**\n\n> - Build 26100.4652 (July 2025)\n\n| Language | Arch | Link |\n|:---|:---|:---|\n| Arabic | x64 | [ar-sa_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/ar-sa_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| Bulgarian | x64 | [bg-bg_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/bg-bg_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| Czech | x64 | [cs-cz_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/cs-cz_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| Danish | x64 | [da-dk_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/da-dk_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| German | x64 | [de-de_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/de-de_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| Greek | x64 | [el-gr_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/el-gr_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| English-United Kingdom | x64 | [en-gb_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/en-gb_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| English | x64 | [en-us_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/en-us_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| Spanish | x64 | [es-es_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/es-es_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| Spanish-Mexico | x64 | [es-mx_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/es-mx_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| Estonian | x64 | [et-ee_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/et-ee_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| Finnish | x64 | [fi-fi_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/fi-fi_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| French-Canada | x64 | [fr-ca_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/fr-ca_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| French | x64 | [fr-fr_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/fr-fr_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| Hebrew | x64 | [he-il_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/he-il_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| Croatian | x64 | [hr-hr_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/hr-hr_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| Hungarian | x64 | [hu-hu_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/hu-hu_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| Italian | x64 | [it-it_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/it-it_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| Japanese | x64 | [ja-jp_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/ja-jp_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| Korean | x64 | [ko-kr_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/ko-kr_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| Lithuanian | x64 | [lt-lt_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/lt-lt_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| Latvian | x64 | [lv-lv_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/lv-lv_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| Norwegian-Bokmal | x64 | [nb-no_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/nb-no_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| Dutch-Netherlands | x64 | [nl-nl_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/nl-nl_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| Polish | x64 | [pl-pl_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/pl-pl_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| Portuguese-Brazil | x64 | [pt-br_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/pt-br_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| Portuguese-Portugal | x64 | [pt-pt_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/pt-pt_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| Romanian | x64 | [ro-ro_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/ro-ro_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| Russian | x64 | [ru-ru_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/ru-ru_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| Slovak | x64 | [sk-sk_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/sk-sk_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| Slovenian | x64 | [sl-si_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/sl-si_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| Serbian-Latin | x64 | [sr-latn-rs_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/sr-latn-rs_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| Swedish | x64 | [sv-se_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/sv-se_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| Thai | x64 | [th-th_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/th-th_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| Turkish | x64 | [tr-tr_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/tr-tr_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| Ukranian | x64 | [uk-ua_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/uk-ua_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| Chinese-Simplified | x64 | [zh-cn_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/zh-cn_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n| Chinese-Traditional | x64 | [zh-tw_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso](https://drive.massgrave.dev/zh-tw_windows_11_consumer_editions_version_24h2_updated_july_2025_x64_dvd_a1f0681d.iso) |\n\n== Windows 11 Business 24H2\n\n**Windows 11 Business 24H2**\n\n> - Build 26100.4652 (July 2025)\n\n| Language | Arch | Link |\n|:---|:---|:---|\n| Arabic | x64 | [ar-sa_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_0af13ec2.iso](https://drive.massgrave.dev/ar-sa_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_0af13ec2.iso) |\n| Bulgarian | x64 | [bg-bg_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_fd57752d.iso](https://drive.massgrave.dev/bg-bg_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_fd57752d.iso) |\n| Czech | x64 | [cs-cz_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_0b114ea9.iso](https://drive.massgrave.dev/cs-cz_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_0b114ea9.iso) |\n| Danish | x64 | [da-dk_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_80ec9188.iso](https://drive.massgrave.dev/da-dk_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_80ec9188.iso) |\n| German | x64 | [de-de_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_294f3ab2.iso](https://drive.massgrave.dev/de-de_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_294f3ab2.iso) |\n| Greek | x64 | [el-gr_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_ac44df73.iso](https://drive.massgrave.dev/el-gr_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_ac44df73.iso) |\n| English-United Kingdom | x64 | [en-gb_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_f3d32c03.iso](https://drive.massgrave.dev/en-gb_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_f3d32c03.iso) |\n| English | x64 | [en-us_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_d32522f0.iso](https://drive.massgrave.dev/en-us_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_d32522f0.iso) |\n| Spanish | x64 | [es-es_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_764f21b5.iso](https://drive.massgrave.dev/es-es_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_764f21b5.iso) |\n| Spanish-Mexico | x64 | [es-mx_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_bba0e40e.iso](https://drive.massgrave.dev/es-mx_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_bba0e40e.iso) |\n| Estonian | x64 | [et-ee_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_1658e819.iso](https://drive.massgrave.dev/et-ee_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_1658e819.iso) |\n| Finnish | x64 | [fi-fi_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_1933118a.iso](https://drive.massgrave.dev/fi-fi_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_1933118a.iso) |\n| French-Canada | x64 | [fr-ca_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_bc5a0c07.iso](https://drive.massgrave.dev/fr-ca_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_bc5a0c07.iso) |\n| French | x64 | [fr-fr_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_d3855cb1.iso](https://drive.massgrave.dev/fr-fr_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_d3855cb1.iso) |\n| Hebrew | x64 | [he-il_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_42d8b9ae.iso](https://drive.massgrave.dev/he-il_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_42d8b9ae.iso) |\n| Croatian | x64 | [hr-hr_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_6dc8d8b0.iso](https://drive.massgrave.dev/hr-hr_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_6dc8d8b0.iso) |\n| Hungarian | x64 | [hu-hu_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_cb51f40a.iso](https://drive.massgrave.dev/hu-hu_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_cb51f40a.iso) |\n| Italian | x64 | [it-it_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_a9cca85c.iso](https://drive.massgrave.dev/it-it_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_a9cca85c.iso) |\n| Japanese | x64 | [ja-jp_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_1c229723.iso](https://drive.massgrave.dev/ja-jp_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_1c229723.iso) |\n| Korean | x64 | [ko-kr_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_c7242852.iso](https://drive.massgrave.dev/ko-kr_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_c7242852.iso) |\n| Lithuanian | x64 | [lt-lt_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_d8e117e5.iso](https://drive.massgrave.dev/lt-lt_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_d8e117e5.iso) |\n| Latvian | x64 | [lv-lv_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_726bf584.iso](https://drive.massgrave.dev/lv-lv_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_726bf584.iso) |\n| Norwegian-Bokmal | x64 | [nb-no_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_7cdcbe2a.iso](https://drive.massgrave.dev/nb-no_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_7cdcbe2a.iso) |\n| Dutch-Netherlands | x64 | [nl-nl_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_82ad739e.iso](https://drive.massgrave.dev/nl-nl_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_82ad739e.iso) |\n| Polish | x64 | [pl-pl_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_b494aad2.iso](https://drive.massgrave.dev/pl-pl_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_b494aad2.iso) |\n| Portuguese-Brazil | x64 | [pt-br_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_b82ad142.iso](https://drive.massgrave.dev/pt-br_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_b82ad142.iso) |\n| Portuguese-Portugal | x64 | [pt-pt_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_1b939611.iso](https://drive.massgrave.dev/pt-pt_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_1b939611.iso) |\n| Romanian | x64 | [ro-ro_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_09b09214.iso](https://drive.massgrave.dev/ro-ro_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_09b09214.iso) |\n| Russian | x64 | [ru-ru_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_52b1a858.iso](https://drive.massgrave.dev/ru-ru_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_52b1a858.iso) |\n| Slovak | x64 | [sk-sk_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_bd5d106f.iso](https://drive.massgrave.dev/sk-sk_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_bd5d106f.iso) |\n| Slovenian | x64 | [sl-si_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_b2bc297c.iso](https://drive.massgrave.dev/sl-si_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_b2bc297c.iso) |\n| Serbian-Latin | x64 | [sr-latn-rs_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_da2409a9.iso](https://drive.massgrave.dev/sr-latn-rs_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_da2409a9.iso) |\n| Swedish | x64 | [sv-se_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_2fb79b0c.iso](https://drive.massgrave.dev/sv-se_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_2fb79b0c.iso) |\n| Thai | x64 | [th-th_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_137cdfa2.iso](https://drive.massgrave.dev/th-th_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_137cdfa2.iso) |\n| Turkish | x64 | [tr-tr_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_6f274429.iso](https://drive.massgrave.dev/tr-tr_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_6f274429.iso) |\n| Ukranian | x64 | [uk-ua_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_9dafad4e.iso](https://drive.massgrave.dev/uk-ua_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_9dafad4e.iso) |\n| Chinese-Simplified | x64 | [zh-cn_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_272dc7af.iso](https://drive.massgrave.dev/zh-cn_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_272dc7af.iso) |\n| Chinese-Traditional | x64 | [zh-tw_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_283d8a64.iso](https://drive.massgrave.dev/zh-tw_windows_11_business_editions_version_24h2_updated_july_2025_x64_dvd_283d8a64.iso) |\n\n== Windows 11 IoT Enterprise 24H2\n\n**Windows 11 IoT Enterprise 24H2**\n\n> **Not LTSC**\n> \n> - Build 26100.1742 (RTM)\n> - This ISO file is not updated every month.\n> - IoT Enterprise ISO is available only in English language\n\n| Language | Arch | Link |\n|:---|:---|:---|\n| English | x64 | [en-us_windows_11_iot_enterprise_version_24h2_x64_dvd_3a99b72b.iso](https://drive.massgrave.dev/en-us_windows_11_iot_enterprise_version_24h2_x64_dvd_3a99b72b.iso) |\n\n<br/>\n\n## Note for IoT Enterprise \n\n::: danger **`(GAC) Not  LTSC`**\n\n### When installing Windows IoT Enterprise (GAC):  \n- If your system has an **OEM license** in the motherboard (Pro or higher),\n- And the key used in Setup is **OEM**\n- then Windows Setup will apply the OEM key from the motherboard during the final stage.\n\n### What this means?  \n- You can install **IoT Enterprise** with its features (including relaxed hardware requirements on Windows 11 24H2, etc.).\n- After installation, the system will show Pro edition, not IoT Enterprise.\n- This happens because IoT Enterprise (GAC) is distributed only with an OEM key.\n- This behavior is normal and cannot be avoided.\n\n### Fix  \nAfter installation, switch the edition by running the following in command prompt as admin.\n\n```shell\nslmgr.vbs /ipk XQQYW-NFFMW-XJPBH-K8732-CKFFD\n```\n\n== Windows 11 ARM64 24H2\n\n**Windows 11 ARM64 24H2**\n\nCheck [**here**](./windows_arm_links)\n\n== Windows 11 (IoT) Enterprise LTSC 2024\n\n**Windows 11 (IoT) Enterprise LTSC 2024**\n\nCheck [**here**](./windows_ltsc_links)\n\n== Other Versions\n\n**Other Versions**\n\n- [MVS Bot][2]\n- [os.click/][3]\n- [files.rg-adguard.net/version/216fefbe94c5][4]\n- Download the [Official Microsoft ESD file][5] and [ESD>ISO Converter][6] by [abbodi1406][7],\n  - Put the ESD file beside `decrypt.cmd` and run that script.\n  - It will create the ISO file.\n  - This process is same as how Official MCT tool creates Windows 10 and 11 ISOs.\n\n:::\n\n## Windows 11 23H2 (Old)\n\n:::tabs\n\n== Windows 11 Consumer 23H2\n\n**Windows 11 Consumer 23H2**\n\n> - Build  22631.5624 (July 2025)\n\n| Language | Arch | Link |\n|:---|:---|:---|\n| Arabic | x64 | [ar-sa_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/ar-sa_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| Bulgarian | x64 | [bg-bg_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/bg-bg_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| Czech | x64 | [cs-cz_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/cs-cz_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| Danish | x64 | [da-dk_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/da-dk_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| German | x64 | [de-de_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/de-de_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| Greek | x64 | [el-gr_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/el-gr_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| English-United Kingdom | x64 | [en-gb_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/en-gb_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| English | x64 | [en-us_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/en-us_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| Spanish | x64 | [es-es_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/es-es_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| Spanish-Mexico | x64 | [es-mx_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/es-mx_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| Estonian | x64 | [et-ee_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/et-ee_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| Finnish | x64 | [fi-fi_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/fi-fi_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| French-Canada | x64 | [fr-ca_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/fr-ca_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| French | x64 | [fr-fr_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/fr-fr_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| Hebrew | x64 | [he-il_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/he-il_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| Croatian | x64 | [hr-hr_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/hr-hr_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| Hungarian | x64 | [hu-hu_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/hu-hu_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| Italian | x64 | [it-it_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/it-it_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| Japanese | x64 | [ja-jp_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/ja-jp_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| Korean | x64 | [ko-kr_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/ko-kr_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| Lithuanian | x64 | [lt-lt_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/lt-lt_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| Latvian | x64 | [lv-lv_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/lv-lv_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| Norwegian-Bokmal | x64 | [nb-no_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/nb-no_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| Dutch-Netherlands | x64 | [nl-nl_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/nl-nl_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| Polish | x64 | [pl-pl_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/pl-pl_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| Portuguese-Brazil | x64 | [pt-br_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/pt-br_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| Portuguese-Portugal | x64 | [pt-pt_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/pt-pt_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| Romanian | x64 | [ro-ro_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/ro-ro_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| Russian | x64 | [ru-ru_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/ru-ru_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| Slovak | x64 | [sk-sk_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/sk-sk_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| Slovenian | x64 | [sl-si_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/sl-si_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| Serbian-Latin | x64 | [sr-latn-rs_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/sr-latn-rs_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| Swedish | x64 | [sv-se_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/sv-se_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| Thai | x64 | [th-th_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/th-th_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| Turkish | x64 | [tr-tr_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/tr-tr_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| Ukranian | x64 | [uk-ua_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/uk-ua_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| Chinese-Simplified | x64 | [zh-cn_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/zh-cn_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n| Chinese-Traditional | x64 | [zh-tw_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso](https://drive.massgrave.dev/zh-tw_windows_11_consumer_editions_version_23h2_updated_july_2025_x64_dvd_ff40e38d.iso) |\n\n== Windows 11 Business 23H2\n\n**Windows 11 Business 23H2**\n\n> - Build 22631.5624 (July 2025)\n\n| Language | Arch | Link |\n|:---|:---|:---|\n| Arabic | x64 | [ar-sa_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_c2c4691f.iso](https://drive.massgrave.dev/ar-sa_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_c2c4691f.iso) |\n| Bulgarian | x64 | [bg-bg_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_c5a4fd2a.iso](https://drive.massgrave.dev/bg-bg_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_c5a4fd2a.iso) |\n| Czech | x64 | [cs-cz_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_578b0f6e.iso](https://drive.massgrave.dev/cs-cz_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_578b0f6e.iso) |\n| Danish | x64 | [da-dk_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_bb5bc9ef.iso](https://drive.massgrave.dev/da-dk_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_bb5bc9ef.iso) |\n| German | x64 | [de-de_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_39b3b0dc.iso](https://drive.massgrave.dev/de-de_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_39b3b0dc.iso) |\n| Greek | x64 | [el-gr_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_8f40cbea.iso](https://drive.massgrave.dev/el-gr_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_8f40cbea.iso) |\n| English-United Kingdom | x64 | [en-gb_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_6e2b3463.iso](https://drive.massgrave.dev/en-gb_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_6e2b3463.iso) |\n| English | x64 | [en-us_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_eaddbb3f.iso](https://drive.massgrave.dev/en-us_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_eaddbb3f.iso) |\n| Spanish | x64 | [es-es_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_6dfbdb38.iso](https://drive.massgrave.dev/es-es_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_6dfbdb38.iso) |\n| Spanish-Mexico | x64 | [es-mx_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_845ecdee.iso](https://drive.massgrave.dev/es-mx_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_845ecdee.iso) |\n| Estonian | x64 | [et-ee_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_26ef3045.iso](https://drive.massgrave.dev/et-ee_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_26ef3045.iso) |\n| Finnish | x64 | [fi-fi_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_dde04765.iso](https://drive.massgrave.dev/fi-fi_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_dde04765.iso) |\n| French-Canada | x64 | [fr-ca_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_f21592a1.iso](https://drive.massgrave.dev/fr-ca_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_f21592a1.iso) |\n| French | x64 | [fr-fr_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_e8e8bd3f.iso](https://drive.massgrave.dev/fr-fr_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_e8e8bd3f.iso) |\n| Hebrew | x64 | [he-il_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_7a3307be.iso](https://drive.massgrave.dev/he-il_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_7a3307be.iso) |\n| Croatian | x64 | [hr-hr_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_513c5e56.iso](https://drive.massgrave.dev/hr-hr_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_513c5e56.iso) |\n| Hungarian | x64 | [hu-hu_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_eb4a355a.iso](https://drive.massgrave.dev/hu-hu_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_eb4a355a.iso) |\n| Italian | x64 | [it-it_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_13e78b2c.iso](https://drive.massgrave.dev/it-it_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_13e78b2c.iso) |\n| Japanese | x64 | [ja-jp_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_0e42e1be.iso](https://drive.massgrave.dev/ja-jp_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_0e42e1be.iso) |\n| Korean | x64 | [ko-kr_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_d3a0b9aa.iso](https://drive.massgrave.dev/ko-kr_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_d3a0b9aa.iso) |\n| Lithuanian | x64 | [lt-lt_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_a947c18b.iso](https://drive.massgrave.dev/lt-lt_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_a947c18b.iso) |\n| Latvian | x64 | [lv-lv_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_470a49c6.iso](https://drive.massgrave.dev/lv-lv_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_470a49c6.iso) |\n| Norwegian-Bokmal | x64 | [nb-no_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_1b3cc06c.iso](https://drive.massgrave.dev/nb-no_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_1b3cc06c.iso) |\n| Dutch-Netherlands | x64 | [nl-nl_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_88384b5f.iso](https://drive.massgrave.dev/nl-nl_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_88384b5f.iso) |\n| Polish | x64 | [pl-pl_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_89751e26.iso](https://drive.massgrave.dev/pl-pl_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_89751e26.iso) |\n| Portuguese-Brazil | x64 | [pt-br_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_4049e0c4.iso](https://drive.massgrave.dev/pt-br_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_4049e0c4.iso) |\n| Portuguese-Portugal | x64 | [pt-pt_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_d7b70a3d.iso](https://drive.massgrave.dev/pt-pt_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_d7b70a3d.iso) |\n| Romanian | x64 | [ro-ro_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_c0acc1eb.iso](https://drive.massgrave.dev/ro-ro_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_c0acc1eb.iso) |\n| Russian | x64 | [ru-ru_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_ec767ad3.iso](https://drive.massgrave.dev/ru-ru_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_ec767ad3.iso) |\n| Slovak | x64 | [sk-sk_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_5704b0a6.iso](https://drive.massgrave.dev/sk-sk_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_5704b0a6.iso) |\n| Slovenian | x64 | [sl-si_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_ad585748.iso](https://drive.massgrave.dev/sl-si_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_ad585748.iso) |\n| Serbian-Latin | x64 | [sr-latn-rs_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_04829379.iso](https://drive.massgrave.dev/sr-latn-rs_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_04829379.iso) |\n| Swedish | x64 | [sv-se_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_b1f9eab9.iso](https://drive.massgrave.dev/sv-se_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_b1f9eab9.iso) |\n| Thai | x64 | [th-th_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_cf38f1b8.iso](https://drive.massgrave.dev/th-th_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_cf38f1b8.iso) |\n| Turkish | x64 | [tr-tr_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_45748a26.iso](https://drive.massgrave.dev/tr-tr_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_45748a26.iso) |\n| Ukranian | x64 | [uk-ua_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_922e2dfb.iso](https://drive.massgrave.dev/uk-ua_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_922e2dfb.iso) |\n| Chinese-Simplified | x64 | [zh-cn_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_34457911.iso](https://drive.massgrave.dev/zh-cn_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_34457911.iso) |\n| Chinese-Traditional | x64 | [zh-tw_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_e12e35d1.iso](https://drive.massgrave.dev/zh-tw_windows_11_business_editions_version_23h2_updated_july_2025_x64_dvd_e12e35d1.iso) |\n\n== Windows 11 IoT Enterprise 23H2\n\n**Windows 11 IoT Enterprise 23H2**\n\n> **Not LTSC**\n> \n> - Build 22631.2428 (31-Oct-2023)\n> - This ISO file is not updated every month.  \n\n| Language | Arch | Link |\n|:---|:---|:---|\n| English | x64 | [en-us_windows_11_iot_enterprise_version_23h2_x64_dvd_fb37549c.iso](https://drive.massgrave.dev/en-us_windows_11_iot_enterprise_version_23h2_x64_dvd_fb37549c.iso) |\n\n<br/>\n\n## Note for IoT Enterprise \n\n::: danger **`(GAC) Not  LTSC`**\n\n### When installing Windows IoT Enterprise (GAC):  \n- If your system has an **OEM license** in the motherboard (Pro or higher),\n- And the key used in Setup is **OEM**\n- then Windows Setup will apply the OEM key from the motherboard during the final stage.\n\n### What this means?  \n- You can install **IoT Enterprise** with its features (including relaxed hardware requirements on Windows 11 24H2, etc.).\n- After installation, the system will show Pro edition, not IoT Enterprise.\n- This happens because IoT Enterprise (GAC) is distributed only with an OEM key.\n- This behavior is normal and cannot be avoided.\n\n### Fix  \nAfter installation, switch the edition by running the following in command prompt as admin.\n\n```shell\nslmgr.vbs /ipk XQQYW-NFFMW-XJPBH-K8732-CKFFD\n```\n\n:::\n\n[MSDL]: https://msdl.gravesoft.dev/#3113\n[1]: https://www.microsoft.com/en-us/software-download/windows11\n[2]: https://discord.gg/FajfGaH3nD\n[3]: https://os.click/\n[4]: https://files.rg-adguard.net/version/f0bd8307-d897-ef77-dbd6-216fefbe94c5\n[5]: https://worproject.com/esd\n[6]: https://github.com/abbodi1406/WHD/raw/master/scripts/esd-decrypter-wimlib-65.7z\n[7]: https://forums.mydigitallife.net/threads/abbodi1406s-batch-scripts-repo.74197/\n[genuine]: https://nirevil.github.io/windows-activation/wa/genuine-installation-media#verify-authenticity-of-files\n"
  },
  {
    "path": "docs/wa/windows_7_links.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'Windows 7 Download'\ndescription: 'All download links lead to genuine files only'\ndate: 20234-01-19\neditLink: true\n---\n\n# Windows 7 Download\n\n<br/>\n\n::: info All download links lead to **`genuine files`**\n\n- [**FAQ**](./genuine-installation-media#faq)\n\n- [**How to ensure that these files are genuine?**][genuine]\n\n- You can permanently activate Windows 7 with [**TSforge option in MAS**](./index#step2)\n\n- Ultimate, Professional, Home Premium, Home Basic and Starter ISOs contain all editions except Enterprise but by default they don't appear while installing Windows. You can easily choose any of them while installing and for that you need to delete or edit `sources\\ei.cfg` file in the bootable USB or ISO.\n\n- To get latest updates on Windows 7 install, you can use [**Simplix Pack**][1] or activate ESU with TSforge option in MAS.\n\n:::\n\n<br/> \n\n## Download Links\n\n**Windows 7 SP1**  \n\n> - Build  7601.17514\n\n:::tabs\n\n== Windows 7 Ultimate SP1 🤍\n\n**Windows 7 Ultimate SP1**\n\n\n| Language              | Arch | Link                                                                                                                                       |\n|:----------------------|:-----|:-------------------------------------------------------------------------------------------------------------------------------------------|\n| Arabic                | x64  | [ar_windows_7_ultimate_with_sp1_x64_dvd_u_677345.iso](https://drive.massgrave.dev/ar_windows_7_ultimate_with_sp1_x64_dvd_u_677345.iso)     |\n| Arabic                | x86  | [ar_windows_7_ultimate_with_sp1_x86_dvd_u_677448.iso](https://drive.massgrave.dev/ar_windows_7_ultimate_with_sp1_x86_dvd_u_677448.iso)     |\n| Bulgarian             | x64  | [bg_windows_7_ultimate_with_sp1_x64_dvd_u_677363.iso](https://drive.massgrave.dev/bg_windows_7_ultimate_with_sp1_x64_dvd_u_677363.iso)     |\n| Bulgarian             | x86  | [bg_windows_7_ultimate_with_sp1_x86_dvd_u_677450.iso](https://drive.massgrave.dev/bg_windows_7_ultimate_with_sp1_x86_dvd_u_677450.iso)     |\n| Chinese-Simplified    | x64  | [cn_windows_7_ultimate_with_sp1_x64_dvd_u_677408.iso](https://drive.massgrave.dev/cn_windows_7_ultimate_with_sp1_x64_dvd_u_677408.iso)     |\n| Chinese-Simplified    | x86  | [cn_windows_7_ultimate_with_sp1_x86_dvd_u_677486.iso](https://drive.massgrave.dev/cn_windows_7_ultimate_with_sp1_x86_dvd_u_677486.iso)     |\n| Czech                 | x64  | [cs_windows_7_ultimate_with_sp1_x64_dvd_u_677376.iso](https://drive.massgrave.dev/cs_windows_7_ultimate_with_sp1_x64_dvd_u_677376.iso)     |\n| Czech                 | x86  | [cs_windows_7_ultimate_with_sp1_x86_dvd_u_677452.iso](https://drive.massgrave.dev/cs_windows_7_ultimate_with_sp1_x86_dvd_u_677452.iso)     |\n| Danish                | x64  | [da_windows_7_ultimate_with_sp1_x64_dvd_u_677294.iso](https://drive.massgrave.dev/da_windows_7_ultimate_with_sp1_x64_dvd_u_677294.iso)     |\n| Danish                | x86  | [da_windows_7_ultimate_with_sp1_x86_dvd_u_677454.iso](https://drive.massgrave.dev/da_windows_7_ultimate_with_sp1_x86_dvd_u_677454.iso)     |\n| German                | x64  | [de_windows_7_ultimate_with_sp1_x64_dvd_u_677306.iso](https://drive.massgrave.dev/de_windows_7_ultimate_with_sp1_x64_dvd_u_677306.iso)     |\n| German                | x86  | [de_windows_7_ultimate_with_sp1_x86_dvd_u_677456.iso](https://drive.massgrave.dev/de_windows_7_ultimate_with_sp1_x86_dvd_u_677456.iso)     |\n| Greek                 | x64  | [el_windows_7_ultimate_with_sp1_x64_dvd_u_677318.iso](https://drive.massgrave.dev/el_windows_7_ultimate_with_sp1_x64_dvd_u_677318.iso)     |\n| Greek                 | x86  | [el_windows_7_ultimate_with_sp1_x86_dvd_u_677458.iso](https://drive.massgrave.dev/el_windows_7_ultimate_with_sp1_x86_dvd_u_677458.iso)     |\n| English               | x64  | [en_windows_7_ultimate_with_sp1_x64_dvd_u_677332.iso](https://drive.massgrave.dev/en_windows_7_ultimate_with_sp1_x64_dvd_u_677332.iso)     |\n| English               | x86  | [en_windows_7_ultimate_with_sp1_x86_dvd_u_677460.iso](https://drive.massgrave.dev/en_windows_7_ultimate_with_sp1_x86_dvd_u_677460.iso)     |\n| Spanish               | x64  | [es_windows_7_ultimate_with_sp1_x64_dvd_u_677350.iso](https://drive.massgrave.dev/es_windows_7_ultimate_with_sp1_x64_dvd_u_677350.iso)     |\n| Spanish               | x86  | [es_windows_7_ultimate_with_sp1_x86_dvd_u_677462.iso](https://drive.massgrave.dev/es_windows_7_ultimate_with_sp1_x86_dvd_u_677462.iso)     |\n| Estonian              | x64  | [et_windows_7_ultimate_with_sp1_x64_dvd_u_677368.iso](https://drive.massgrave.dev/et_windows_7_ultimate_with_sp1_x64_dvd_u_677368.iso)     |\n| Estonian              | x86  | [et_windows_7_ultimate_with_sp1_x86_dvd_u_677464.iso](https://drive.massgrave.dev/et_windows_7_ultimate_with_sp1_x86_dvd_u_677464.iso)     |\n| Finnish               | x64  | [fi_windows_7_ultimate_with_sp1_x64_dvd_u_677378.iso](https://drive.massgrave.dev/fi_windows_7_ultimate_with_sp1_x64_dvd_u_677378.iso)     |\n| Finnish               | x86  | [fi_windows_7_ultimate_with_sp1_x86_dvd_u_677466.iso](https://drive.massgrave.dev/fi_windows_7_ultimate_with_sp1_x86_dvd_u_677466.iso)     |\n| French                | x64  | [fr_windows_7_ultimate_with_sp1_x64_dvd_u_677299.iso](https://drive.massgrave.dev/fr_windows_7_ultimate_with_sp1_x64_dvd_u_677299.iso)     |\n| French                | x86  | [fr_windows_7_ultimate_with_sp1_x86_dvd_u_677434.iso](https://drive.massgrave.dev/fr_windows_7_ultimate_with_sp1_x86_dvd_u_677434.iso)     |\n| Hebrew                | x64  | [he_windows_7_ultimate_with_sp1_x64_dvd_u_677312.iso](https://drive.massgrave.dev/he_windows_7_ultimate_with_sp1_x64_dvd_u_677312.iso)     |\n| Hebrew                | x86  | [he_windows_7_ultimate_with_sp1_x86_dvd_u_677436.iso](https://drive.massgrave.dev/he_windows_7_ultimate_with_sp1_x86_dvd_u_677436.iso)     |\n| Chinese-Hong Kong SAR | x64  | [hk_windows_7_ultimate_with_sp1_x64_dvd_u_677411.iso](https://drive.massgrave.dev/hk_windows_7_ultimate_with_sp1_x64_dvd_u_677411.iso)     |\n| Chinese-Hong Kong SAR | x86  | [hk_windows_7_ultimate_with_sp1_x86_dvd_u_677487.iso](https://drive.massgrave.dev/hk_windows_7_ultimate_with_sp1_x86_dvd_u_677487.iso)     |\n| Croatian              | x64  | [hr_windows_7_ultimate_with_sp1_x64_dvd_u_677324.iso](https://drive.massgrave.dev/hr_windows_7_ultimate_with_sp1_x64_dvd_u_677324.iso)     |\n| Croatian              | x86  | [hr_windows_7_ultimate_with_sp1_x86_dvd_u_677438.iso](https://drive.massgrave.dev/hr_windows_7_ultimate_with_sp1_x86_dvd_u_677438.iso)     |\n| Hungarian             | x64  | [hu_windows_7_ultimate_with_sp1_x64_dvd_u_677338.iso](https://drive.massgrave.dev/hu_windows_7_ultimate_with_sp1_x64_dvd_u_677338.iso)     |\n| Hungarian             | x86  | [hu_windows_7_ultimate_with_sp1_x86_dvd_u_677441.iso](https://drive.massgrave.dev/hu_windows_7_ultimate_with_sp1_x86_dvd_u_677441.iso)     |\n| Italian               | x64  | [it_windows_7_ultimate_with_sp1_x64_dvd_u_677356.iso](https://drive.massgrave.dev/it_windows_7_ultimate_with_sp1_x64_dvd_u_677356.iso)     |\n| Italian               | x86  | [it_windows_7_ultimate_with_sp1_x86_dvd_u_677443.iso](https://drive.massgrave.dev/it_windows_7_ultimate_with_sp1_x86_dvd_u_677443.iso)     |\n| Japanese              | x64  | [ja_windows_7_ultimate_with_sp1_x64_dvd_u_677372.iso](https://drive.massgrave.dev/ja_windows_7_ultimate_with_sp1_x64_dvd_u_677372.iso)     |\n| Japanese              | x86  | [ja_windows_7_ultimate_with_sp1_x86_dvd_u_677445.iso](https://drive.massgrave.dev/ja_windows_7_ultimate_with_sp1_x86_dvd_u_677445.iso)     |\n| Korean                | x64  | [ko_windows_7_ultimate_k_with_sp1_x64_dvd_u_677502.iso](https://drive.massgrave.dev/ko_windows_7_ultimate_k_with_sp1_x64_dvd_u_677502.iso) |\n| Korean                | x86  | [ko_windows_7_ultimate_k_with_sp1_x86_dvd_u_677508.iso](https://drive.massgrave.dev/ko_windows_7_ultimate_k_with_sp1_x86_dvd_u_677508.iso) |\n| Lithuanian            | x64  | [lt_windows_7_ultimate_with_sp1_x64_dvd_u_677379.iso](https://drive.massgrave.dev/lt_windows_7_ultimate_with_sp1_x64_dvd_u_677379.iso)     |\n| Lithuanian            | x86  | [lt_windows_7_ultimate_with_sp1_x86_dvd_u_677447.iso](https://drive.massgrave.dev/lt_windows_7_ultimate_with_sp1_x86_dvd_u_677447.iso)     |\n| Latvian               | x64  | [lv_windows_7_ultimate_with_sp1_x64_dvd_u_677302.iso](https://drive.massgrave.dev/lv_windows_7_ultimate_with_sp1_x64_dvd_u_677302.iso)     |\n| Latvian               | x86  | [lv_windows_7_ultimate_with_sp1_x86_dvd_u_677449.iso](https://drive.massgrave.dev/lv_windows_7_ultimate_with_sp1_x86_dvd_u_677449.iso)     |\n| Dutch                 | x64  | [nl_windows_7_ultimate_with_sp1_x64_dvd_u_677325.iso](https://drive.massgrave.dev/nl_windows_7_ultimate_with_sp1_x64_dvd_u_677325.iso)     |\n| Dutch                 | x86  | [nl_windows_7_ultimate_with_sp1_x86_dvd_u_677453.iso](https://drive.massgrave.dev/nl_windows_7_ultimate_with_sp1_x86_dvd_u_677453.iso)     |\n| Norwegian             | x64  | [no_windows_7_ultimate_with_sp1_x64_dvd_u_677314.iso](https://drive.massgrave.dev/no_windows_7_ultimate_with_sp1_x64_dvd_u_677314.iso)     |\n| Norwegian             | x86  | [no_windows_7_ultimate_with_sp1_x86_dvd_u_677451.iso](https://drive.massgrave.dev/no_windows_7_ultimate_with_sp1_x86_dvd_u_677451.iso)     |\n| Polish                | x64  | [pl_windows_7_ultimate_with_sp1_x64_dvd_u_677341.iso](https://drive.massgrave.dev/pl_windows_7_ultimate_with_sp1_x64_dvd_u_677341.iso)     |\n| Polish                | x86  | [pl_windows_7_ultimate_with_sp1_x86_dvd_u_677455.iso](https://drive.massgrave.dev/pl_windows_7_ultimate_with_sp1_x86_dvd_u_677455.iso)     |\n| Portuguese-Portugal   | x64  | [pp_windows_7_ultimate_with_sp1_x64_dvd_u_677373.iso](https://drive.massgrave.dev/pp_windows_7_ultimate_with_sp1_x64_dvd_u_677373.iso)     |\n| Portuguese-Portugal   | x86  | [pp_windows_7_ultimate_with_sp1_x86_dvd_u_677459.iso](https://drive.massgrave.dev/pp_windows_7_ultimate_with_sp1_x86_dvd_u_677459.iso)     |\n| Portuguese-Brazil     | x64  | [pt_windows_7_ultimate_with_sp1_x64_dvd_u_677358.iso](https://drive.massgrave.dev/pt_windows_7_ultimate_with_sp1_x64_dvd_u_677358.iso)     |\n| Portuguese-Brazil     | x86  | [pt_windows_7_ultimate_with_sp1_x86_dvd_u_677457.iso](https://drive.massgrave.dev/pt_windows_7_ultimate_with_sp1_x86_dvd_u_677457.iso)     |\n| Romanian              | x64  | [ro_windows_7_ultimate_with_sp1_x64_dvd_u_677380.iso](https://drive.massgrave.dev/ro_windows_7_ultimate_with_sp1_x64_dvd_u_677380.iso)     |\n| Romanian              | x86  | [ro_windows_7_ultimate_with_sp1_x86_dvd_u_677461.iso](https://drive.massgrave.dev/ro_windows_7_ultimate_with_sp1_x86_dvd_u_677461.iso)     |\n| Russian               | x64  | [ru_windows_7_ultimate_with_sp1_x64_dvd_u_677391.iso](https://drive.massgrave.dev/ru_windows_7_ultimate_with_sp1_x64_dvd_u_677391.iso)     |\n| Russian               | x86  | [ru_windows_7_ultimate_with_sp1_x86_dvd_u_677463.iso](https://drive.massgrave.dev/ru_windows_7_ultimate_with_sp1_x86_dvd_u_677463.iso)     |\n| Slovak                | x64  | [sk_windows_7_ultimate_with_sp1_x64_dvd_u_677393.iso](https://drive.massgrave.dev/sk_windows_7_ultimate_with_sp1_x64_dvd_u_677393.iso)     |\n| Slovak                | x86  | [sk_windows_7_ultimate_with_sp1_x86_dvd_u_677465.iso](https://drive.massgrave.dev/sk_windows_7_ultimate_with_sp1_x86_dvd_u_677465.iso)     |\n| Slovenian             | x64  | [sl_windows_7_ultimate_with_sp1_x64_dvd_u_677396.iso](https://drive.massgrave.dev/sl_windows_7_ultimate_with_sp1_x64_dvd_u_677396.iso)     |\n| Slovenian             | x86  | [sl_windows_7_ultimate_with_sp1_x86_dvd_u_677467.iso](https://drive.massgrave.dev/sl_windows_7_ultimate_with_sp1_x86_dvd_u_677467.iso)     |\n| Serbian               | x64  | [sr_windows_7_ultimate_with_sp1_x64_dvd_u_677398.iso](https://drive.massgrave.dev/sr_windows_7_ultimate_with_sp1_x64_dvd_u_677398.iso)     |\n| Serbian               | x86  | [sr_windows_7_ultimate_with_sp1_x86_dvd_u_677468.iso](https://drive.massgrave.dev/sr_windows_7_ultimate_with_sp1_x86_dvd_u_677468.iso)     |\n| Swedish               | x64  | [sv_windows_7_ultimate_with_sp1_x64_dvd_u_677400.iso](https://drive.massgrave.dev/sv_windows_7_ultimate_with_sp1_x64_dvd_u_677400.iso)     |\n| Swedish               | x86  | [sv_windows_7_ultimate_with_sp1_x86_dvd_u_677482.iso](https://drive.massgrave.dev/sv_windows_7_ultimate_with_sp1_x86_dvd_u_677482.iso)     |\n| Thai                  | x64  | [th_windows_7_ultimate_with_sp1_x64_dvd_u_677402.iso](https://drive.massgrave.dev/th_windows_7_ultimate_with_sp1_x64_dvd_u_677402.iso)     |\n| Thai                  | x86  | [th_windows_7_ultimate_with_sp1_x86_dvd_u_677483.iso](https://drive.massgrave.dev/th_windows_7_ultimate_with_sp1_x86_dvd_u_677483.iso)     |\n| Turkish               | x64  | [tr_windows_7_ultimate_with_sp1_x64_dvd_u_677404.iso](https://drive.massgrave.dev/tr_windows_7_ultimate_with_sp1_x64_dvd_u_677404.iso)     |\n| Turkish               | x86  | [tr_windows_7_ultimate_with_sp1_x86_dvd_u_677484.iso](https://drive.massgrave.dev/tr_windows_7_ultimate_with_sp1_x86_dvd_u_677484.iso)     |\n| Chinese-Traditional   | x64  | [tw_windows_7_ultimate_with_sp1_x64_dvd_u_677414.iso](https://drive.massgrave.dev/tw_windows_7_ultimate_with_sp1_x64_dvd_u_677414.iso)     |\n| Chinese-Traditional   | x86  | [tw_windows_7_ultimate_with_sp1_x86_dvd_u_677488.iso](https://drive.massgrave.dev/tw_windows_7_ultimate_with_sp1_x86_dvd_u_677488.iso)     |\n| Ukrainian             | x64  | [uk_windows_7_ultimate_with_sp1_x64_dvd_u_677406.iso](https://drive.massgrave.dev/uk_windows_7_ultimate_with_sp1_x64_dvd_u_677406.iso)     |\n| Ukrainian             | x86  | [uk_windows_7_ultimate_with_sp1_x86_dvd_u_677485.iso](https://drive.massgrave.dev/uk_windows_7_ultimate_with_sp1_x86_dvd_u_677485.iso)     |\n\n== Windows 7 Enterprise SP1\n\n**Windows 7 Enterprise SP1**\n\n\n| Language              | Arch | Link                                                                                                                                           |\n|:----------------------|:-----|:-----------------------------------------------------------------------------------------------------------------------------------------------|\n| Arabic                | x64  | [ar_windows_7_enterprise_with_sp1_x64_dvd_u_677643.iso](https://drive.massgrave.dev/ar_windows_7_enterprise_with_sp1_x64_dvd_u_677643.iso)     |\n| Arabic                | x86  | [ar_windows_7_enterprise_with_sp1_x86_dvd_u_677691.iso](https://drive.massgrave.dev/ar_windows_7_enterprise_with_sp1_x86_dvd_u_677691.iso)     |\n| Bulgarian             | x64  | [bg_windows_7_enterprise_with_sp1_x64_dvd_u_677644.iso](https://drive.massgrave.dev/bg_windows_7_enterprise_with_sp1_x64_dvd_u_677644.iso)     |\n| Bulgarian             | x86  | [bg_windows_7_enterprise_with_sp1_x86_dvd_u_677693.iso](https://drive.massgrave.dev/bg_windows_7_enterprise_with_sp1_x86_dvd_u_677693.iso)     |\n| Chinese-Simplified    | x64  | [cn_windows_7_enterprise_with_sp1_x64_dvd_u_677685.iso](https://drive.massgrave.dev/cn_windows_7_enterprise_with_sp1_x64_dvd_u_677685.iso)     |\n| Chinese-Simplified    | x86  | [cn_windows_7_enterprise_with_sp1_x86_dvd_u_677716.iso](https://drive.massgrave.dev/cn_windows_7_enterprise_with_sp1_x86_dvd_u_677716.iso)     |\n| Czech                 | x64  | [cs_windows_7_enterprise_with_sp1_x64_dvd_u_677646.iso](https://drive.massgrave.dev/cs_windows_7_enterprise_with_sp1_x64_dvd_u_677646.iso)     |\n| Czech                 | x86  | [cs_windows_7_enterprise_with_sp1_x86_dvd_u_677695.iso](https://drive.massgrave.dev/cs_windows_7_enterprise_with_sp1_x86_dvd_u_677695.iso)     |\n| Danish                | x64  | [da_windows_7_enterprise_with_sp1_x64_dvd_u_677648.iso](https://drive.massgrave.dev/da_windows_7_enterprise_with_sp1_x64_dvd_u_677648.iso)     |\n| Danish                | x86  | [da_windows_7_enterprise_with_sp1_x86_dvd_u_677698.iso](https://drive.massgrave.dev/da_windows_7_enterprise_with_sp1_x86_dvd_u_677698.iso)     |\n| German                | x64  | [de_windows_7_enterprise_with_sp1_x64_dvd_u_677649.iso](https://drive.massgrave.dev/de_windows_7_enterprise_with_sp1_x64_dvd_u_677649.iso)     |\n| German                | x86  | [de_windows_7_enterprise_with_sp1_x86_dvd_u_677702.iso](https://drive.massgrave.dev/de_windows_7_enterprise_with_sp1_x86_dvd_u_677702.iso)     |\n| Greek                 | x64  | [el_windows_7_enterprise_with_sp1_x64_dvd_u_677650.iso](https://drive.massgrave.dev/el_windows_7_enterprise_with_sp1_x64_dvd_u_677650.iso)     |\n| Greek                 | x86  | [el_windows_7_enterprise_with_sp1_x86_dvd_u_677706.iso](https://drive.massgrave.dev/el_windows_7_enterprise_with_sp1_x86_dvd_u_677706.iso)     |\n| English               | x64  | [en_windows_7_enterprise_with_sp1_x64_dvd_u_677651.iso](https://drive.massgrave.dev/en_windows_7_enterprise_with_sp1_x64_dvd_u_677651.iso)     |\n| English               | x86  | [en_windows_7_enterprise_with_sp1_x86_dvd_u_677710.iso](https://drive.massgrave.dev/en_windows_7_enterprise_with_sp1_x86_dvd_u_677710.iso)     |\n| Spanish               | x64  | [es_windows_7_enterprise_with_sp1_x64_dvd_u_677652.iso](https://drive.massgrave.dev/es_windows_7_enterprise_with_sp1_x64_dvd_u_677652.iso)     |\n| Spanish               | x86  | [es_windows_7_enterprise_with_sp1_x86_dvd_u_677714.iso](https://drive.massgrave.dev/es_windows_7_enterprise_with_sp1_x86_dvd_u_677714.iso)     |\n| Estonian              | x64  | [et_windows_7_enterprise_with_sp1_x64_dvd_u_677653.iso](https://drive.massgrave.dev/et_windows_7_enterprise_with_sp1_x64_dvd_u_677653.iso)     |\n| Estonian              | x86  | [et_windows_7_enterprise_with_sp1_x86_dvd_u_677718.iso](https://drive.massgrave.dev/et_windows_7_enterprise_with_sp1_x86_dvd_u_677718.iso)     |\n| Finnish               | x64  | [fi_windows_7_enterprise_with_sp1_x64_dvd_u_677655.iso](https://drive.massgrave.dev/fi_windows_7_enterprise_with_sp1_x64_dvd_u_677655.iso)     |\n| Finnish               | x86  | [fi_windows_7_enterprise_with_sp1_x86_dvd_u_677722.iso](https://drive.massgrave.dev/fi_windows_7_enterprise_with_sp1_x86_dvd_u_677722.iso)     |\n| French                | x64  | [fr_windows_7_enterprise_with_sp1_x64_dvd_u_677656.iso](https://drive.massgrave.dev/fr_windows_7_enterprise_with_sp1_x64_dvd_u_677656.iso)     |\n| French                | x86  | [fr_windows_7_enterprise_with_sp1_x86_dvd_u_677727.iso](https://drive.massgrave.dev/fr_windows_7_enterprise_with_sp1_x86_dvd_u_677727.iso)     |\n| Hebrew                | x64  | [he_windows_7_enterprise_with_sp1_x64_dvd_u_677657.iso](https://drive.massgrave.dev/he_windows_7_enterprise_with_sp1_x64_dvd_u_677657.iso)     |\n| Hebrew                | x86  | [he_windows_7_enterprise_with_sp1_x86_dvd_u_677733.iso](https://drive.massgrave.dev/he_windows_7_enterprise_with_sp1_x86_dvd_u_677733.iso)     |\n| Chinese-Hong Kong SAR | x64  | [hk_windows_7_enterprise_with_sp1_x64_dvd_u_677687.iso](https://drive.massgrave.dev/hk_windows_7_enterprise_with_sp1_x64_dvd_u_677687.iso)     |\n| Chinese-Hong Kong SAR | x86  | [hk_windows_7_enterprise_with_sp1_x86_dvd_u_677720.iso](https://drive.massgrave.dev/hk_windows_7_enterprise_with_sp1_x86_dvd_u_677720.iso)     |\n| Croatian              | x64  | [hr_windows_7_enterprise_with_sp1_x64_dvd_u_677658.iso](https://drive.massgrave.dev/hr_windows_7_enterprise_with_sp1_x64_dvd_u_677658.iso)     |\n| Croatian              | x86  | [hr_windows_7_enterprise_with_sp1_x86_dvd_u_677739.iso](https://drive.massgrave.dev/hr_windows_7_enterprise_with_sp1_x86_dvd_u_677739.iso)     |\n| Hungarian             | x64  | [hu_windows_7_enterprise_with_sp1_x64_dvd_u_677659.iso](https://drive.massgrave.dev/hu_windows_7_enterprise_with_sp1_x64_dvd_u_677659.iso)     |\n| Hungarian             | x86  | [hu_windows_7_enterprise_with_sp1_x86_dvd_u_677744.iso](https://drive.massgrave.dev/hu_windows_7_enterprise_with_sp1_x86_dvd_u_677744.iso)     |\n| Italian               | x64  | [it_windows_7_enterprise_with_sp1_x64_dvd_u_677660.iso](https://drive.massgrave.dev/it_windows_7_enterprise_with_sp1_x64_dvd_u_677660.iso)     |\n| Italian               | x86  | [it_windows_7_enterprise_with_sp1_x86_dvd_u_677749.iso](https://drive.massgrave.dev/it_windows_7_enterprise_with_sp1_x86_dvd_u_677749.iso)     |\n| Japanese              | x64  | [ja_windows_7_enterprise_with_sp1_x64_dvd_u_677662.iso](https://drive.massgrave.dev/ja_windows_7_enterprise_with_sp1_x64_dvd_u_677662.iso)     |\n| Japanese              | x86  | [ja_windows_7_enterprise_with_sp1_x86_dvd_u_677757.iso](https://drive.massgrave.dev/ja_windows_7_enterprise_with_sp1_x86_dvd_u_677757.iso)     |\n| Korean                | x64  | [ko_windows_7_enterprise_k_with_sp1_x64_dvd_u_677728.iso](https://drive.massgrave.dev/ko_windows_7_enterprise_k_with_sp1_x64_dvd_u_677728.iso) |\n| Korean                | x86  | [ko_windows_7_enterprise_k_with_sp1_x86_dvd_u_677732.iso](https://drive.massgrave.dev/ko_windows_7_enterprise_k_with_sp1_x86_dvd_u_677732.iso) |\n| Lithuanian            | x64  | [lt_windows_7_enterprise_with_sp1_x64_dvd_u_677663.iso](https://drive.massgrave.dev/lt_windows_7_enterprise_with_sp1_x64_dvd_u_677663.iso)     |\n| Lithuanian            | x86  | [lt_windows_7_enterprise_with_sp1_x86_dvd_u_677764.iso](https://drive.massgrave.dev/lt_windows_7_enterprise_with_sp1_x86_dvd_u_677764.iso)     |\n| Latvian               | x64  | [lv_windows_7_enterprise_with_sp1_x64_dvd_u_677664.iso](https://drive.massgrave.dev/lv_windows_7_enterprise_with_sp1_x64_dvd_u_677664.iso)     |\n| Latvian               | x86  | [lv_windows_7_enterprise_with_sp1_x86_dvd_u_677677.iso](https://drive.massgrave.dev/lv_windows_7_enterprise_with_sp1_x86_dvd_u_677677.iso)     |\n| Dutch                 | x64  | [nl_windows_7_enterprise_with_sp1_x64_dvd_u_677666.iso](https://drive.massgrave.dev/nl_windows_7_enterprise_with_sp1_x64_dvd_u_677666.iso)     |\n| Dutch                 | x86  | [nl_windows_7_enterprise_with_sp1_x86_dvd_u_677682.iso](https://drive.massgrave.dev/nl_windows_7_enterprise_with_sp1_x86_dvd_u_677682.iso)     |\n| Norwegian             | x64  | [no_windows_7_enterprise_with_sp1_x64_dvd_u_677665.iso](https://drive.massgrave.dev/no_windows_7_enterprise_with_sp1_x64_dvd_u_677665.iso)     |\n| Norwegian             | x86  | [no_windows_7_enterprise_with_sp1_x86_dvd_u_677679.iso](https://drive.massgrave.dev/no_windows_7_enterprise_with_sp1_x86_dvd_u_677679.iso)     |\n| Polish                | x64  | [pl_windows_7_enterprise_with_sp1_x64_dvd_u_677667.iso](https://drive.massgrave.dev/pl_windows_7_enterprise_with_sp1_x64_dvd_u_677667.iso)     |\n| Polish                | x86  | [pl_windows_7_enterprise_with_sp1_x86_dvd_u_677684.iso](https://drive.massgrave.dev/pl_windows_7_enterprise_with_sp1_x86_dvd_u_677684.iso)     |\n| Portuguese-Portugal   | x64  | [pp_windows_7_enterprise_with_sp1_x64_dvd_u_677669.iso](https://drive.massgrave.dev/pp_windows_7_enterprise_with_sp1_x64_dvd_u_677669.iso)     |\n| Portuguese-Portugal   | x86  | [pp_windows_7_enterprise_with_sp1_x86_dvd_u_677688.iso](https://drive.massgrave.dev/pp_windows_7_enterprise_with_sp1_x86_dvd_u_677688.iso)     |\n| Portuguese-Brazil     | x64  | [pt_windows_7_enterprise_with_sp1_x64_dvd_u_677668.iso](https://drive.massgrave.dev/pt_windows_7_enterprise_with_sp1_x64_dvd_u_677668.iso)     |\n| Portuguese-Brazil     | x86  | [pt_windows_7_enterprise_with_sp1_x86_dvd_u_677686.iso](https://drive.massgrave.dev/pt_windows_7_enterprise_with_sp1_x86_dvd_u_677686.iso)     |\n| Romanian              | x64  | [ro_windows_7_enterprise_with_sp1_x64_dvd_u_677670.iso](https://drive.massgrave.dev/ro_windows_7_enterprise_with_sp1_x64_dvd_u_677670.iso)     |\n| Romanian              | x86  | [ro_windows_7_enterprise_with_sp1_x86_dvd_u_677690.iso](https://drive.massgrave.dev/ro_windows_7_enterprise_with_sp1_x86_dvd_u_677690.iso)     |\n| Russian               | x64  | [ru_windows_7_enterprise_with_sp1_x64_dvd_u_677671.iso](https://drive.massgrave.dev/ru_windows_7_enterprise_with_sp1_x64_dvd_u_677671.iso)     |\n| Russian               | x86  | [ru_windows_7_enterprise_with_sp1_x86_dvd_u_677692.iso](https://drive.massgrave.dev/ru_windows_7_enterprise_with_sp1_x86_dvd_u_677692.iso)     |\n| Slovak                | x64  | [sk_windows_7_enterprise_with_sp1_x64_dvd_u_677673.iso](https://drive.massgrave.dev/sk_windows_7_enterprise_with_sp1_x64_dvd_u_677673.iso)     |\n| Slovak                | x86  | [sk_windows_7_enterprise_with_sp1_x86_dvd_u_677694.iso](https://drive.massgrave.dev/sk_windows_7_enterprise_with_sp1_x86_dvd_u_677694.iso)     |\n| Slovenian             | x64  | [sl_windows_7_enterprise_with_sp1_x64_dvd_u_677674.iso](https://drive.massgrave.dev/sl_windows_7_enterprise_with_sp1_x64_dvd_u_677674.iso)     |\n| Slovenian             | x86  | [sl_windows_7_enterprise_with_sp1_x86_dvd_u_677696.iso](https://drive.massgrave.dev/sl_windows_7_enterprise_with_sp1_x86_dvd_u_677696.iso)     |\n| Serbian               | x64  | [sr_windows_7_enterprise_with_sp1_x64_dvd_u_677675.iso](https://drive.massgrave.dev/sr_windows_7_enterprise_with_sp1_x64_dvd_u_677675.iso)     |\n| Serbian               | x86  | [sr_windows_7_enterprise_with_sp1_x86_dvd_u_677699.iso](https://drive.massgrave.dev/sr_windows_7_enterprise_with_sp1_x86_dvd_u_677699.iso)     |\n| Swedish               | x64  | [sv_windows_7_enterprise_with_sp1_x64_dvd_u_677676.iso](https://drive.massgrave.dev/sv_windows_7_enterprise_with_sp1_x64_dvd_u_677676.iso)     |\n| Swedish               | x86  | [sv_windows_7_enterprise_with_sp1_x86_dvd_u_677701.iso](https://drive.massgrave.dev/sv_windows_7_enterprise_with_sp1_x86_dvd_u_677701.iso)     |\n| Thai                  | x64  | [th_windows_7_enterprise_with_sp1_x64_dvd_u_677678.iso](https://drive.massgrave.dev/th_windows_7_enterprise_with_sp1_x64_dvd_u_677678.iso)     |\n| Thai                  | x86  | [th_windows_7_enterprise_with_sp1_x86_dvd_u_677705.iso](https://drive.massgrave.dev/th_windows_7_enterprise_with_sp1_x86_dvd_u_677705.iso)     |\n| Turkish               | x64  | [tr_windows_7_enterprise_with_sp1_x64_dvd_u_677681.iso](https://drive.massgrave.dev/tr_windows_7_enterprise_with_sp1_x64_dvd_u_677681.iso)     |\n| Turkish               | x86  | [tr_windows_7_enterprise_with_sp1_x86_dvd_u_677708.iso](https://drive.massgrave.dev/tr_windows_7_enterprise_with_sp1_x86_dvd_u_677708.iso)     |\n| Chinese-Traditional   | x64  | [tw_windows_7_enterprise_with_sp1_x64_dvd_u_677689.iso](https://drive.massgrave.dev/tw_windows_7_enterprise_with_sp1_x64_dvd_u_677689.iso)     |\n| Chinese-Traditional   | x86  | [tw_windows_7_enterprise_with_sp1_x86_dvd_u_677723.iso](https://drive.massgrave.dev/tw_windows_7_enterprise_with_sp1_x86_dvd_u_677723.iso)     |\n| Ukrainian             | x64  | [uk_windows_7_enterprise_with_sp1_x64_dvd_u_677683.iso](https://drive.massgrave.dev/uk_windows_7_enterprise_with_sp1_x64_dvd_u_677683.iso)     |\n| Ukrainian             | x86  | [uk_windows_7_enterprise_with_sp1_x86_dvd_u_677712.iso](https://drive.massgrave.dev/uk_windows_7_enterprise_with_sp1_x86_dvd_u_677712.iso)     |\n\n== Windows 7 Professional SP1\n\n**Windows 7 Professional SP1**\n\n\n| Language              | Arch | Link                                                                                                                                               |\n|:----------------------|:-----|:---------------------------------------------------------------------------------------------------------------------------------------------------|\n| Arabic                | x64  | [ar_windows_7_professional_with_sp1_x64_dvd_u_676943.iso](https://drive.massgrave.dev/ar_windows_7_professional_with_sp1_x64_dvd_u_676943.iso)     |\n| Arabic                | x86  | [ar_windows_7_professional_with_sp1_x86_dvd_u_677052.iso](https://drive.massgrave.dev/ar_windows_7_professional_with_sp1_x86_dvd_u_677052.iso)     |\n| Bulgarian             | x64  | [bg_windows_7_professional_with_sp1_x64_dvd_u_676949.iso](https://drive.massgrave.dev/bg_windows_7_professional_with_sp1_x64_dvd_u_676949.iso)     |\n| Bulgarian             | x86  | [bg_windows_7_professional_with_sp1_x86_dvd_u_677065.iso](https://drive.massgrave.dev/bg_windows_7_professional_with_sp1_x86_dvd_u_677065.iso)     |\n| Chinese-Simplified    | x64  | [cn_windows_7_professional_with_sp1_x64_dvd_u_677031.iso](https://drive.massgrave.dev/cn_windows_7_professional_with_sp1_x64_dvd_u_677031.iso)     |\n| Chinese-Simplified    | x86  | [cn_windows_7_professional_with_sp1_x86_dvd_u_677162.iso](https://drive.massgrave.dev/cn_windows_7_professional_with_sp1_x86_dvd_u_677162.iso)     |\n| Czech                 | x64  | [cs_windows_7_professional_with_sp1_x64_dvd_u_676956.iso](https://drive.massgrave.dev/cs_windows_7_professional_with_sp1_x64_dvd_u_676956.iso)     |\n| Czech                 | x86  | [cs_windows_7_professional_with_sp1_x86_dvd_u_677077.iso](https://drive.massgrave.dev/cs_windows_7_professional_with_sp1_x86_dvd_u_677077.iso)     |\n| Danish                | x64  | [da_windows_7_professional_with_sp1_x64_dvd_u_676906.iso](https://drive.massgrave.dev/da_windows_7_professional_with_sp1_x64_dvd_u_676906.iso)     |\n| Danish                | x86  | [da_windows_7_professional_with_sp1_x86_dvd_u_677086.iso](https://drive.massgrave.dev/da_windows_7_professional_with_sp1_x86_dvd_u_677086.iso)     |\n| German                | x64  | [de_windows_7_professional_with_sp1_x64_dvd_u_676919.iso](https://drive.massgrave.dev/de_windows_7_professional_with_sp1_x64_dvd_u_676919.iso)     |\n| German                | x86  | [de_windows_7_professional_with_sp1_x86_dvd_u_677093.iso](https://drive.massgrave.dev/de_windows_7_professional_with_sp1_x86_dvd_u_677093.iso)     |\n| Greek                 | x64  | [el_windows_7_professional_with_sp1_x64_dvd_u_676931.iso](https://drive.massgrave.dev/el_windows_7_professional_with_sp1_x64_dvd_u_676931.iso)     |\n| Greek                 | x86  | [el_windows_7_professional_with_sp1_x86_dvd_u_677044.iso](https://drive.massgrave.dev/el_windows_7_professional_with_sp1_x86_dvd_u_677044.iso)     |\n| English               | x64  | [en_windows_7_professional_with_sp1_x64_dvd_u_676939.iso](https://drive.massgrave.dev/en_windows_7_professional_with_sp1_x64_dvd_u_676939.iso)     |\n| English               | x86  | [en_windows_7_professional_with_sp1_x86_dvd_u_677056.iso](https://drive.massgrave.dev/en_windows_7_professional_with_sp1_x86_dvd_u_677056.iso)     |\n| Spanish               | x64  | [es_windows_7_professional_with_sp1_x64_dvd_u_676947.iso](https://drive.massgrave.dev/es_windows_7_professional_with_sp1_x64_dvd_u_676947.iso)     |\n| Spanish               | x86  | [es_windows_7_professional_with_sp1_x86_dvd_u_677069.iso](https://drive.massgrave.dev/es_windows_7_professional_with_sp1_x86_dvd_u_677069.iso)     |\n| Estonian              | x64  | [et_windows_7_professional_with_sp1_x64_dvd_u_676954.iso](https://drive.massgrave.dev/et_windows_7_professional_with_sp1_x64_dvd_u_676954.iso)     |\n| Estonian              | x86  | [et_windows_7_professional_with_sp1_x86_dvd_u_677079.iso](https://drive.massgrave.dev/et_windows_7_professional_with_sp1_x86_dvd_u_677079.iso)     |\n| Finnish               | x64  | [fi_windows_7_professional_with_sp1_x64_dvd_u_676958.iso](https://drive.massgrave.dev/fi_windows_7_professional_with_sp1_x64_dvd_u_676958.iso)     |\n| Finnish               | x86  | [fi_windows_7_professional_with_sp1_x86_dvd_u_677085.iso](https://drive.massgrave.dev/fi_windows_7_professional_with_sp1_x86_dvd_u_677085.iso)     |\n| French                | x64  | [fr_windows_7_professional_with_sp1_x64_dvd_u_678724.iso](https://drive.massgrave.dev/fr_windows_7_professional_with_sp1_x64_dvd_u_678724.iso)     |\n| French                | x86  | [fr_windows_7_professional_with_sp1_x86_dvd_u_677092.iso](https://drive.massgrave.dev/fr_windows_7_professional_with_sp1_x86_dvd_u_677092.iso)     |\n| Hebrew                | x64  | [he_windows_7_professional_with_sp1_x64_dvd_u_676923.iso](https://drive.massgrave.dev/he_windows_7_professional_with_sp1_x64_dvd_u_676923.iso)     |\n| Hebrew                | x86  | [he_windows_7_professional_with_sp1_x86_dvd_u_677055.iso](https://drive.massgrave.dev/he_windows_7_professional_with_sp1_x86_dvd_u_677055.iso)     |\n| Chinese-Hong Kong SAR | x64  | [hk_windows_7_professional_with_sp1_x64_dvd_u_677038.iso](https://drive.massgrave.dev/hk_windows_7_professional_with_sp1_x64_dvd_u_677038.iso)     |\n| Chinese-Hong Kong SAR | x86  | [hk_windows_7_professional_with_sp1_x86_dvd_u_677177.iso](https://drive.massgrave.dev/hk_windows_7_professional_with_sp1_x86_dvd_u_677177.iso)     |\n| Croatian              | x64  | [hr_windows_7_professional_with_sp1_x64_dvd_u_676934.iso](https://drive.massgrave.dev/hr_windows_7_professional_with_sp1_x64_dvd_u_676934.iso)     |\n| Croatian              | x86  | [hr_windows_7_professional_with_sp1_x86_dvd_u_677068.iso](https://drive.massgrave.dev/hr_windows_7_professional_with_sp1_x86_dvd_u_677068.iso)     |\n| Hungarian             | x64  | [hu_windows_7_professional_with_sp1_x64_dvd_u_676942.iso](https://drive.massgrave.dev/hu_windows_7_professional_with_sp1_x64_dvd_u_676942.iso)     |\n| Hungarian             | x86  | [hu_windows_7_professional_with_sp1_x86_dvd_u_677080.iso](https://drive.massgrave.dev/hu_windows_7_professional_with_sp1_x86_dvd_u_677080.iso)     |\n| Italian               | x64  | [it_windows_7_professional_with_sp1_x64_dvd_u_676945.iso](https://drive.massgrave.dev/it_windows_7_professional_with_sp1_x64_dvd_u_676945.iso)     |\n| Italian               | x86  | [it_windows_7_professional_with_sp1_x86_dvd_u_677088.iso](https://drive.massgrave.dev/it_windows_7_professional_with_sp1_x86_dvd_u_677088.iso)     |\n| Japanese              | x64  | [ja_windows_7_professional_with_sp1_x64_dvd_u_676951.iso](https://drive.massgrave.dev/ja_windows_7_professional_with_sp1_x64_dvd_u_676951.iso)     |\n| Japanese              | x86  | [ja_windows_7_professional_with_sp1_x86_dvd_u_677095.iso](https://drive.massgrave.dev/ja_windows_7_professional_with_sp1_x86_dvd_u_677095.iso)     |\n| Korean                | x64  | [ko_windows_7_professional_k_with_sp1_x64_dvd_u_677155.iso](https://drive.massgrave.dev/ko_windows_7_professional_k_with_sp1_x64_dvd_u_677155.iso) |\n| Korean                | x86  | [ko_windows_7_professional_k_with_sp1_x86_dvd_u_677184.iso](https://drive.massgrave.dev/ko_windows_7_professional_k_with_sp1_x86_dvd_u_677184.iso) |\n| Lithuanian            | x64  | [lt_windows_7_professional_with_sp1_x64_dvd_u_676955.iso](https://drive.massgrave.dev/lt_windows_7_professional_with_sp1_x64_dvd_u_676955.iso)     |\n| Lithuanian            | x86  | [lt_windows_7_professional_with_sp1_x86_dvd_u_677053.iso](https://drive.massgrave.dev/lt_windows_7_professional_with_sp1_x86_dvd_u_677053.iso)     |\n| Latvian               | x64  | [lv_windows_7_professional_with_sp1_x64_dvd_u_676917.iso](https://drive.massgrave.dev/lv_windows_7_professional_with_sp1_x64_dvd_u_676917.iso)     |\n| Latvian               | x86  | [lv_windows_7_professional_with_sp1_x86_dvd_u_677067.iso](https://drive.massgrave.dev/lv_windows_7_professional_with_sp1_x86_dvd_u_677067.iso)     |\n| Dutch                 | x64  | [nl_windows_7_professional_with_sp1_x64_dvd_u_676937.iso](https://drive.massgrave.dev/nl_windows_7_professional_with_sp1_x64_dvd_u_676937.iso)     |\n| Dutch                 | x86  | [nl_windows_7_professional_with_sp1_x86_dvd_u_677087.iso](https://drive.massgrave.dev/nl_windows_7_professional_with_sp1_x86_dvd_u_677087.iso)     |\n| Norwegian             | x64  | [no_windows_7_professional_with_sp1_x64_dvd_u_676929.iso](https://drive.massgrave.dev/no_windows_7_professional_with_sp1_x64_dvd_u_676929.iso)     |\n| Norwegian             | x86  | [no_windows_7_professional_with_sp1_x86_dvd_u_677078.iso](https://drive.massgrave.dev/no_windows_7_professional_with_sp1_x86_dvd_u_677078.iso)     |\n| Polish                | x64  | [pl_windows_7_professional_with_sp1_x64_dvd_u_676944.iso](https://drive.massgrave.dev/pl_windows_7_professional_with_sp1_x64_dvd_u_676944.iso)     |\n| Polish                | x86  | [pl_windows_7_professional_with_sp1_x86_dvd_u_677091.iso](https://drive.massgrave.dev/pl_windows_7_professional_with_sp1_x86_dvd_u_677091.iso)     |\n| Portuguese-Portugal   | x64  | [pp_windows_7_professional_with_sp1_x64_dvd_u_676953.iso](https://drive.massgrave.dev/pp_windows_7_professional_with_sp1_x64_dvd_u_676953.iso)     |\n| Portuguese-Portugal   | x86  | [pp_windows_7_professional_with_sp1_x86_dvd_u_677062.iso](https://drive.massgrave.dev/pp_windows_7_professional_with_sp1_x86_dvd_u_677062.iso)     |\n| Portuguese-Brazil     | x64  | [pt_windows_7_professional_with_sp1_x64_dvd_u_676950.iso](https://drive.massgrave.dev/pt_windows_7_professional_with_sp1_x64_dvd_u_676950.iso)     |\n| Portuguese-Brazil     | x86  | [pt_windows_7_professional_with_sp1_x86_dvd_u_677096.iso](https://drive.massgrave.dev/pt_windows_7_professional_with_sp1_x86_dvd_u_677096.iso)     |\n| Romanian              | x64  | [ro_windows_7_professional_with_sp1_x64_dvd_u_676957.iso](https://drive.massgrave.dev/ro_windows_7_professional_with_sp1_x64_dvd_u_676957.iso)     |\n| Romanian              | x86  | [ro_windows_7_professional_with_sp1_x86_dvd_u_677074.iso](https://drive.massgrave.dev/ro_windows_7_professional_with_sp1_x86_dvd_u_677074.iso)     |\n| Russian               | x64  | [ru_windows_7_professional_with_sp1_x64_dvd_u_677024.iso](https://drive.massgrave.dev/ru_windows_7_professional_with_sp1_x64_dvd_u_677024.iso)     |\n| Russian               | x86  | [ru_windows_7_professional_with_sp1_x86_dvd_u_677084.iso](https://drive.massgrave.dev/ru_windows_7_professional_with_sp1_x86_dvd_u_677084.iso)     |\n| Slovak                | x64  | [sk_windows_7_professional_with_sp1_x64_dvd_u_677025.iso](https://drive.massgrave.dev/sk_windows_7_professional_with_sp1_x64_dvd_u_677025.iso)     |\n| Slovak                | x86  | [sk_windows_7_professional_with_sp1_x86_dvd_u_677089.iso](https://drive.massgrave.dev/sk_windows_7_professional_with_sp1_x86_dvd_u_677089.iso)     |\n| Slovenian             | x64  | [sl_windows_7_professional_with_sp1_x64_dvd_u_677030.iso](https://drive.massgrave.dev/sl_windows_7_professional_with_sp1_x64_dvd_u_677030.iso)     |\n| Slovenian             | x86  | [sl_windows_7_professional_with_sp1_x86_dvd_u_677094.iso](https://drive.massgrave.dev/sl_windows_7_professional_with_sp1_x86_dvd_u_677094.iso)     |\n| Serbian               | x64  | [sr_windows_7_professional_with_sp1_x64_dvd_u_677037.iso](https://drive.massgrave.dev/sr_windows_7_professional_with_sp1_x64_dvd_u_677037.iso)     |\n| Serbian               | x86  | [sr_windows_7_professional_with_sp1_x86_dvd_u_677097.iso](https://drive.massgrave.dev/sr_windows_7_professional_with_sp1_x86_dvd_u_677097.iso)     |\n| Swedish               | x64  | [sv_windows_7_professional_with_sp1_x64_dvd_u_677048.iso](https://drive.massgrave.dev/sv_windows_7_professional_with_sp1_x64_dvd_u_677048.iso)     |\n| Swedish               | x86  | [sv_windows_7_professional_with_sp1_x86_dvd_u_677138.iso](https://drive.massgrave.dev/sv_windows_7_professional_with_sp1_x86_dvd_u_677138.iso)     |\n| Thai                  | x64  | [th_windows_7_professional_with_sp1_x64_dvd_u_677060.iso](https://drive.massgrave.dev/th_windows_7_professional_with_sp1_x64_dvd_u_677060.iso)     |\n| Thai                  | x86  | [th_windows_7_professional_with_sp1_x86_dvd_u_677140.iso](https://drive.massgrave.dev/th_windows_7_professional_with_sp1_x86_dvd_u_677140.iso)     |\n| Turkish               | x64  | [tr_windows_7_professional_with_sp1_x64_dvd_u_677075.iso](https://drive.massgrave.dev/tr_windows_7_professional_with_sp1_x64_dvd_u_677075.iso)     |\n| Turkish               | x86  | [tr_windows_7_professional_with_sp1_x86_dvd_u_677145.iso](https://drive.massgrave.dev/tr_windows_7_professional_with_sp1_x86_dvd_u_677145.iso)     |\n| Chinese-Traditional   | x64  | [tw_windows_7_professional_with_sp1_x64_dvd_u_677047.iso](https://drive.massgrave.dev/tw_windows_7_professional_with_sp1_x64_dvd_u_677047.iso)     |\n| Chinese-Traditional   | x86  | [tw_windows_7_professional_with_sp1_x86_dvd_u_677189.iso](https://drive.massgrave.dev/tw_windows_7_professional_with_sp1_x86_dvd_u_677189.iso)     |\n| Ukrainian             | x64  | [uk_windows_7_professional_with_sp1_x64_dvd_u_677026.iso](https://drive.massgrave.dev/uk_windows_7_professional_with_sp1_x64_dvd_u_677026.iso)     |\n| Ukrainian             | x86  | [uk_windows_7_professional_with_sp1_x86_dvd_u_677150.iso](https://drive.massgrave.dev/uk_windows_7_professional_with_sp1_x86_dvd_u_677150.iso)     |\n\n== Windows 7 Professional VL SP1\n\n**Windows 7 Professional VL SP1**  \n\n> - This version contains only Professional edition index.\n\n\n| Language              | Arch | Link                                                                                                                                                             |\n|:----------------------|:-----|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Arabic                | x64  | [ar_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677754.iso](https://drive.massgrave.dev/ar_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677754.iso) |\n| Arabic                | x86  | [ar_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677837.iso](https://drive.massgrave.dev/ar_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677837.iso) |\n| Bulgarian             | x64  | [bg_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677761.iso](https://drive.massgrave.dev/bg_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677761.iso) |\n| Bulgarian             | x86  | [bg_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677846.iso](https://drive.massgrave.dev/bg_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677846.iso) |\n| Chinese-Simplified    | x64  | [cn_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677816.iso](https://drive.massgrave.dev/cn_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677816.iso) |\n| Chinese-Simplified    | x86  | [cn_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677939.iso](https://drive.massgrave.dev/cn_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677939.iso) |\n| Czech                 | x64  | [cs_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677767.iso](https://drive.massgrave.dev/cs_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677767.iso) |\n| Czech                 | x86  | [cs_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677860.iso](https://drive.massgrave.dev/cs_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677860.iso) |\n| Danish                | x64  | [da_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677772.iso](https://drive.massgrave.dev/da_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677772.iso) |\n| Danish                | x86  | [da_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677876.iso](https://drive.massgrave.dev/da_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677876.iso) |\n| German                | x64  | [de_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677778.iso](https://drive.massgrave.dev/de_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677778.iso) |\n| German                | x86  | [de_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677883.iso](https://drive.massgrave.dev/de_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677883.iso) |\n| Greek                 | x64  | [el_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677783.iso](https://drive.massgrave.dev/el_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677783.iso) |\n| Greek                 | x86  | [el_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677889.iso](https://drive.massgrave.dev/el_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677889.iso) |\n| English               | x64  | [en_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677791.iso](https://drive.massgrave.dev/en_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677791.iso) |\n| English               | x86  | [en_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677896.iso](https://drive.massgrave.dev/en_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677896.iso) |\n| Spanish               | x64  | [es_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677798.iso](https://drive.massgrave.dev/es_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677798.iso) |\n| Spanish               | x86  | [es_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677903.iso](https://drive.massgrave.dev/es_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677903.iso) |\n| Estonian              | x64  | [et_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677802.iso](https://drive.massgrave.dev/et_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677802.iso) |\n| Estonian              | x86  | [et_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677912.iso](https://drive.massgrave.dev/et_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677912.iso) |\n| Finnish               | x64  | [fi_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677808.iso](https://drive.massgrave.dev/fi_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677808.iso) |\n| Finnish               | x86  | [fi_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677759.iso](https://drive.massgrave.dev/fi_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677759.iso) |\n| French                | x64  | [fr_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677814.iso](https://drive.massgrave.dev/fr_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677814.iso) |\n| French                | x86  | [fr_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677765.iso](https://drive.massgrave.dev/fr_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677765.iso) |\n| Hebrew                | x64  | [he_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677820.iso](https://drive.massgrave.dev/he_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677820.iso) |\n| Hebrew                | x86  | [he_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677769.iso](https://drive.massgrave.dev/he_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677769.iso) |\n| Chinese-Hong Kong SAR | x64  | [hk_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677823.iso](https://drive.massgrave.dev/hk_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677823.iso) |\n| Chinese-Hong Kong SAR | x86  | [hk_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677951.iso](https://drive.massgrave.dev/hk_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677951.iso) |\n| Croatian              | x64  | [hr_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677826.iso](https://drive.massgrave.dev/hr_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677826.iso) |\n| Croatian              | x86  | [hr_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677773.iso](https://drive.massgrave.dev/hr_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677773.iso) |\n| Hungarian             | x64  | [hu_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677833.iso](https://drive.massgrave.dev/hu_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677833.iso) |\n| Hungarian             | x86  | [hu_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677777.iso](https://drive.massgrave.dev/hu_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677777.iso) |\n| Italian               | x64  | [it_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677841.iso](https://drive.massgrave.dev/it_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677841.iso) |\n| Italian               | x86  | [it_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677781.iso](https://drive.massgrave.dev/it_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677781.iso) |\n| Japanese              | x64  | [ja_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677851.iso](https://drive.massgrave.dev/ja_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677851.iso) |\n| Japanese              | x86  | [ja_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677786.iso](https://drive.massgrave.dev/ja_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677786.iso) |\n| Korean                | x64  | NA                                                                                                                                                               |\n| Korean                | x86  | NA                                                                                                                                                               |\n| Lithuanian            | x64  | [lt_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677861.iso](https://drive.massgrave.dev/lt_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677861.iso) |\n| Lithuanian            | x86  | [lt_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677792.iso](https://drive.massgrave.dev/lt_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677792.iso) |\n| Latvian               | x64  | [lv_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677872.iso](https://drive.massgrave.dev/lv_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677872.iso) |\n| Latvian               | x86  | [lv_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677797.iso](https://drive.massgrave.dev/lv_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677797.iso) |\n| Dutch                 | x64  | [nl_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677745.iso](https://drive.massgrave.dev/nl_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677745.iso) |\n| Dutch                 | x86  | [nl_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677812.iso](https://drive.massgrave.dev/nl_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677812.iso) |\n| Norwegian             | x64  | [no_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677881.iso](https://drive.massgrave.dev/no_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677881.iso) |\n| Norwegian             | x86  | [no_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677805.iso](https://drive.massgrave.dev/no_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677805.iso) |\n| Polish                | x64  | [pl_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677751.iso](https://drive.massgrave.dev/pl_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677751.iso) |\n| Polish                | x86  | [pl_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677818.iso](https://drive.massgrave.dev/pl_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677818.iso) |\n| Portuguese-Portugal   | x64  | [pp_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677763.iso](https://drive.massgrave.dev/pp_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677763.iso) |\n| Portuguese-Portugal   | x86  | [pp_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677834.iso](https://drive.massgrave.dev/pp_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677834.iso) |\n| Portuguese-Brazil     | x64  | [pt_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677756.iso](https://drive.massgrave.dev/pt_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677756.iso) |\n| Portuguese-Brazil     | x86  | [pt_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677827.iso](https://drive.massgrave.dev/pt_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677827.iso) |\n| Romanian              | x64  | [ro_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677768.iso](https://drive.massgrave.dev/ro_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677768.iso) |\n| Romanian              | x86  | [ro_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677842.iso](https://drive.massgrave.dev/ro_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677842.iso) |\n| Russian               | x64  | [ru_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677774.iso](https://drive.massgrave.dev/ru_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677774.iso) |\n| Russian               | x86  | [ru_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677853.iso](https://drive.massgrave.dev/ru_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677853.iso) |\n| Slovak                | x64  | [sk_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677779.iso](https://drive.massgrave.dev/sk_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677779.iso) |\n| Slovak                | x86  | [sk_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677866.iso](https://drive.massgrave.dev/sk_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677866.iso) |\n| Slovenian             | x64  | [sl_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677785.iso](https://drive.massgrave.dev/sl_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677785.iso) |\n| Slovenian             | x86  | [sl_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677878.iso](https://drive.massgrave.dev/sl_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677878.iso) |\n| Serbian               | x64  | [sr_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677790.iso](https://drive.massgrave.dev/sr_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677790.iso) |\n| Serbian               | x86  | [sr_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677888.iso](https://drive.massgrave.dev/sr_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677888.iso) |\n| Swedish               | x64  | [sv_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677795.iso](https://drive.massgrave.dev/sv_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677795.iso) |\n| Swedish               | x86  | [sv_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677898.iso](https://drive.massgrave.dev/sv_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677898.iso) |\n| Thai                  | x64  | [th_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677800.iso](https://drive.massgrave.dev/th_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677800.iso) |\n| Thai                  | x86  | [th_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677909.iso](https://drive.massgrave.dev/th_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677909.iso) |\n| Turkish               | x64  | [tr_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677806.iso](https://drive.massgrave.dev/tr_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677806.iso) |\n| Turkish               | x86  | [tr_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677920.iso](https://drive.massgrave.dev/tr_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677920.iso) |\n| Chinese-Traditional   | x64  | [tw_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677829.iso](https://drive.massgrave.dev/tw_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677829.iso) |\n| Chinese-Traditional   | x86  | [tw_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677771.iso](https://drive.massgrave.dev/tw_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677771.iso) |\n| Ukrainian             | x64  | [uk_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677811.iso](https://drive.massgrave.dev/uk_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677811.iso) |\n| Ukrainian             | x86  | [uk_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677928.iso](https://drive.massgrave.dev/uk_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677928.iso) |\n\n== Windows 7 Home Premium SP1\n\n**Windows 7 Home Premium SP1**\n\n\n| Language              | Arch | Link                                                                                                                                               |\n|:----------------------|:-----|:---------------------------------------------------------------------------------------------------------------------------------------------------|\n| Arabic                | x64  | [ar_windows_7_home_premium_with_sp1_x64_dvd_u_676551.iso](https://drive.massgrave.dev/ar_windows_7_home_premium_with_sp1_x64_dvd_u_676551.iso)     |\n| Arabic                | x86  | [ar_windows_7_home_premium_with_sp1_x86_dvd_u_676666.iso](https://drive.massgrave.dev/ar_windows_7_home_premium_with_sp1_x86_dvd_u_676666.iso)     |\n| Bulgarian             | x64  | [bg_windows_7_home_premium_with_sp1_x64_dvd_u_676515.iso](https://drive.massgrave.dev/bg_windows_7_home_premium_with_sp1_x64_dvd_u_676515.iso)     |\n| Bulgarian             | x86  | [bg_windows_7_home_premium_with_sp1_x86_dvd_u_676671.iso](https://drive.massgrave.dev/bg_windows_7_home_premium_with_sp1_x86_dvd_u_676671.iso)     |\n| Chinese-Simplified    | x64  | [cn_windows_7_home_premium_with_sp1_x64_dvd_u_676691.iso](https://drive.massgrave.dev/cn_windows_7_home_premium_with_sp1_x64_dvd_u_676691.iso)     |\n| Chinese-Simplified    | x86  | [cn_windows_7_home_premium_with_sp1_x86_dvd_u_676770.iso](https://drive.massgrave.dev/cn_windows_7_home_premium_with_sp1_x86_dvd_u_676770.iso)     |\n| Czech                 | x64  | [cs_windows_7_home_premium_with_sp1_x64_dvd_u_676522.iso](https://drive.massgrave.dev/cs_windows_7_home_premium_with_sp1_x64_dvd_u_676522.iso)     |\n| Czech                 | x86  | [cs_windows_7_home_premium_with_sp1_x86_dvd_u_676676.iso](https://drive.massgrave.dev/cs_windows_7_home_premium_with_sp1_x86_dvd_u_676676.iso)     |\n| Danish                | x64  | [da_windows_7_home_premium_with_sp1_x64_dvd_u_676529.iso](https://drive.massgrave.dev/da_windows_7_home_premium_with_sp1_x64_dvd_u_676529.iso)     |\n| Danish                | x86  | [da_windows_7_home_premium_with_sp1_x86_dvd_u_676681.iso](https://drive.massgrave.dev/da_windows_7_home_premium_with_sp1_x86_dvd_u_676681.iso)     |\n| German                | x64  | [de_windows_7_home_premium_with_sp1_x64_dvd_u_676536.iso](https://drive.massgrave.dev/de_windows_7_home_premium_with_sp1_x64_dvd_u_676536.iso)     |\n| German                | x86  | [de_windows_7_home_premium_with_sp1_x86_dvd_u_676687.iso](https://drive.massgrave.dev/de_windows_7_home_premium_with_sp1_x86_dvd_u_676687.iso)     |\n| Greek                 | x64  | [el_windows_7_home_premium_with_sp1_x64_dvd_u_676544.iso](https://drive.massgrave.dev/el_windows_7_home_premium_with_sp1_x64_dvd_u_676544.iso)     |\n| Greek                 | x86  | [el_windows_7_home_premium_with_sp1_x86_dvd_u_676694.iso](https://drive.massgrave.dev/el_windows_7_home_premium_with_sp1_x86_dvd_u_676694.iso)     |\n| English               | x64  | [en_windows_7_home_premium_with_sp1_x64_dvd_u_676549.iso](https://drive.massgrave.dev/en_windows_7_home_premium_with_sp1_x64_dvd_u_676549.iso)     |\n| English               | x86  | [en_windows_7_home_premium_with_sp1_x86_dvd_u_676701.iso](https://drive.massgrave.dev/en_windows_7_home_premium_with_sp1_x86_dvd_u_676701.iso)     |\n| Spanish               | x64  | [es_windows_7_home_premium_with_sp1_x64_dvd_u_676553.iso](https://drive.massgrave.dev/es_windows_7_home_premium_with_sp1_x64_dvd_u_676553.iso)     |\n| Spanish               | x86  | [es_windows_7_home_premium_with_sp1_x86_dvd_u_676707.iso](https://drive.massgrave.dev/es_windows_7_home_premium_with_sp1_x86_dvd_u_676707.iso)     |\n| Estonian              | x64  | [et_windows_7_home_premium_with_sp1_x64_dvd_u_676555.iso](https://drive.massgrave.dev/et_windows_7_home_premium_with_sp1_x64_dvd_u_676555.iso)     |\n| Estonian              | x86  | [et_windows_7_home_premium_with_sp1_x86_dvd_u_676713.iso](https://drive.massgrave.dev/et_windows_7_home_premium_with_sp1_x86_dvd_u_676713.iso)     |\n| Finnish               | x64  | [fi_windows_7_home_premium_with_sp1_x64_dvd_u_676517.iso](https://drive.massgrave.dev/fi_windows_7_home_premium_with_sp1_x64_dvd_u_676517.iso)     |\n| Finnish               | x86  | [fi_windows_7_home_premium_with_sp1_x86_dvd_u_676672.iso](https://drive.massgrave.dev/fi_windows_7_home_premium_with_sp1_x86_dvd_u_676672.iso)     |\n| French                | x64  | [fr_windows_7_home_premium_with_sp1_x64_dvd_u_676521.iso](https://drive.massgrave.dev/fr_windows_7_home_premium_with_sp1_x64_dvd_u_676521.iso)     |\n| French                | x86  | [fr_windows_7_home_premium_with_sp1_x86_dvd_u_676678.iso](https://drive.massgrave.dev/fr_windows_7_home_premium_with_sp1_x86_dvd_u_676678.iso)     |\n| Hebrew                | x64  | [he_windows_7_home_premium_with_sp1_x64_dvd_u_676527.iso](https://drive.massgrave.dev/he_windows_7_home_premium_with_sp1_x64_dvd_u_676527.iso)     |\n| Hebrew                | x86  | [he_windows_7_home_premium_with_sp1_x86_dvd_u_676683.iso](https://drive.massgrave.dev/he_windows_7_home_premium_with_sp1_x86_dvd_u_676683.iso)     |\n| Chinese-Hong Kong SAR | x64  | [hk_windows_7_home_premium_with_sp1_x64_dvd_u_676697.iso](https://drive.massgrave.dev/hk_windows_7_home_premium_with_sp1_x64_dvd_u_676697.iso)     |\n| Chinese-Hong Kong SAR | x86  | [hk_windows_7_home_premium_with_sp1_x86_dvd_u_676771.iso](https://drive.massgrave.dev/hk_windows_7_home_premium_with_sp1_x86_dvd_u_676771.iso)     |\n| Croatian              | x64  | [hr_windows_7_home_premium_with_sp1_x64_dvd_u_676533.iso](https://drive.massgrave.dev/hr_windows_7_home_premium_with_sp1_x64_dvd_u_676533.iso)     |\n| Croatian              | x86  | [hr_windows_7_home_premium_with_sp1_x86_dvd_u_676688.iso](https://drive.massgrave.dev/hr_windows_7_home_premium_with_sp1_x86_dvd_u_676688.iso)     |\n| Hungarian             | x64  | [hu_windows_7_home_premium_with_sp1_x64_dvd_u_676538.iso](https://drive.massgrave.dev/hu_windows_7_home_premium_with_sp1_x64_dvd_u_676538.iso)     |\n| Hungarian             | x86  | [hu_windows_7_home_premium_with_sp1_x86_dvd_u_676696.iso](https://drive.massgrave.dev/hu_windows_7_home_premium_with_sp1_x86_dvd_u_676696.iso)     |\n| Italian               | x64  | [it_windows_7_home_premium_with_sp1_x64_dvd_u_676543.iso](https://drive.massgrave.dev/it_windows_7_home_premium_with_sp1_x64_dvd_u_676543.iso)     |\n| Italian               | x86  | [it_windows_7_home_premium_with_sp1_x86_dvd_u_676702.iso](https://drive.massgrave.dev/it_windows_7_home_premium_with_sp1_x86_dvd_u_676702.iso)     |\n| Japanese              | x64  | [ja_windows_7_home_premium_with_sp1_x64_dvd_u_676548.iso](https://drive.massgrave.dev/ja_windows_7_home_premium_with_sp1_x64_dvd_u_676548.iso)     |\n| Japanese              | x86  | [ja_windows_7_home_premium_with_sp1_x86_dvd_u_676708.iso](https://drive.massgrave.dev/ja_windows_7_home_premium_with_sp1_x86_dvd_u_676708.iso)     |\n| Korean                | x64  | [ko_windows_7_home_premium_k_with_sp1_x64_dvd_u_676808.iso](https://drive.massgrave.dev/ko_windows_7_home_premium_k_with_sp1_x64_dvd_u_676808.iso) |\n| Korean                | x86  | [ko_windows_7_home_premium_k_with_sp1_x86_dvd_u_676814.iso](https://drive.massgrave.dev/ko_windows_7_home_premium_k_with_sp1_x86_dvd_u_676814.iso) |\n| Lithuanian            | x64  | [lt_windows_7_home_premium_with_sp1_x64_dvd_u_676552.iso](https://drive.massgrave.dev/lt_windows_7_home_premium_with_sp1_x64_dvd_u_676552.iso)     |\n| Lithuanian            | x86  | [lt_windows_7_home_premium_with_sp1_x86_dvd_u_676715.iso](https://drive.massgrave.dev/lt_windows_7_home_premium_with_sp1_x86_dvd_u_676715.iso)     |\n| Latvian               | x64  | [lv_windows_7_home_premium_with_sp1_x64_dvd_u_676523.iso](https://drive.massgrave.dev/lv_windows_7_home_premium_with_sp1_x64_dvd_u_676523.iso)     |\n| Latvian               | x86  | [lv_windows_7_home_premium_with_sp1_x86_dvd_u_676720.iso](https://drive.massgrave.dev/lv_windows_7_home_premium_with_sp1_x86_dvd_u_676720.iso)     |\n| Dutch                 | x64  | [nl_windows_7_home_premium_with_sp1_x64_dvd_u_676534.iso](https://drive.massgrave.dev/nl_windows_7_home_premium_with_sp1_x64_dvd_u_676534.iso)     |\n| Dutch                 | x86  | [nl_windows_7_home_premium_with_sp1_x86_dvd_u_676693.iso](https://drive.massgrave.dev/nl_windows_7_home_premium_with_sp1_x86_dvd_u_676693.iso)     |\n| Norwegian             | x64  | [no_windows_7_home_premium_with_sp1_x64_dvd_u_676528.iso](https://drive.massgrave.dev/no_windows_7_home_premium_with_sp1_x64_dvd_u_676528.iso)     |\n| Norwegian             | x86  | [no_windows_7_home_premium_with_sp1_x86_dvd_u_676724.iso](https://drive.massgrave.dev/no_windows_7_home_premium_with_sp1_x86_dvd_u_676724.iso)     |\n| Polish                | x64  | [pl_windows_7_home_premium_with_sp1_x64_dvd_u_676540.iso](https://drive.massgrave.dev/pl_windows_7_home_premium_with_sp1_x64_dvd_u_676540.iso)     |\n| Polish                | x86  | [pl_windows_7_home_premium_with_sp1_x86_dvd_u_676699.iso](https://drive.massgrave.dev/pl_windows_7_home_premium_with_sp1_x86_dvd_u_676699.iso)     |\n| Portuguese-Portugal   | x64  | [pp_windows_7_home_premium_with_sp1_x64_dvd_u_676550.iso](https://drive.massgrave.dev/pp_windows_7_home_premium_with_sp1_x64_dvd_u_676550.iso)     |\n| Portuguese-Portugal   | x86  | [pp_windows_7_home_premium_with_sp1_x86_dvd_u_676711.iso](https://drive.massgrave.dev/pp_windows_7_home_premium_with_sp1_x86_dvd_u_676711.iso)     |\n| Portuguese-Brazil     | x64  | [pt_windows_7_home_premium_with_sp1_x64_dvd_u_676545.iso](https://drive.massgrave.dev/pt_windows_7_home_premium_with_sp1_x64_dvd_u_676545.iso)     |\n| Portuguese-Brazil     | x86  | [pt_windows_7_home_premium_with_sp1_x86_dvd_u_676705.iso](https://drive.massgrave.dev/pt_windows_7_home_premium_with_sp1_x86_dvd_u_676705.iso)     |\n| Romanian              | x64  | [ro_windows_7_home_premium_with_sp1_x64_dvd_u_676554.iso](https://drive.massgrave.dev/ro_windows_7_home_premium_with_sp1_x64_dvd_u_676554.iso)     |\n| Romanian              | x86  | [ro_windows_7_home_premium_with_sp1_x86_dvd_u_676716.iso](https://drive.massgrave.dev/ro_windows_7_home_premium_with_sp1_x86_dvd_u_676716.iso)     |\n| Russian               | x64  | [ru_windows_7_home_premium_with_sp1_x64_dvd_u_676728.iso](https://drive.massgrave.dev/ru_windows_7_home_premium_with_sp1_x64_dvd_u_676728.iso)     |\n| Russian               | x86  | [ru_windows_7_home_premium_with_sp1_x86_dvd_u_676719.iso](https://drive.massgrave.dev/ru_windows_7_home_premium_with_sp1_x86_dvd_u_676719.iso)     |\n| Slovak                | x64  | [sk_windows_7_home_premium_with_sp1_x64_dvd_u_676654.iso](https://drive.massgrave.dev/sk_windows_7_home_premium_with_sp1_x64_dvd_u_676654.iso)     |\n| Slovak                | x86  | [sk_windows_7_home_premium_with_sp1_x86_dvd_u_676723.iso](https://drive.massgrave.dev/sk_windows_7_home_premium_with_sp1_x86_dvd_u_676723.iso)     |\n| Slovenian             | x64  | [sl_windows_7_home_premium_with_sp1_x64_dvd_u_676656.iso](https://drive.massgrave.dev/sl_windows_7_home_premium_with_sp1_x64_dvd_u_676656.iso)     |\n| Slovenian             | x86  | [sl_windows_7_home_premium_with_sp1_x86_dvd_u_676725.iso](https://drive.massgrave.dev/sl_windows_7_home_premium_with_sp1_x86_dvd_u_676725.iso)     |\n| Serbian               | x64  | [sr_windows_7_home_premium_with_sp1_x64_dvd_u_676659.iso](https://drive.massgrave.dev/sr_windows_7_home_premium_with_sp1_x64_dvd_u_676659.iso)     |\n| Serbian               | x86  | [sr_windows_7_home_premium_with_sp1_x86_dvd_u_676726.iso](https://drive.massgrave.dev/sr_windows_7_home_premium_with_sp1_x86_dvd_u_676726.iso)     |\n| Swedish               | x64  | [sv_windows_7_home_premium_with_sp1_x64_dvd_u_676664.iso](https://drive.massgrave.dev/sv_windows_7_home_premium_with_sp1_x64_dvd_u_676664.iso)     |\n| Swedish               | x86  | [sv_windows_7_home_premium_with_sp1_x86_dvd_u_676766.iso](https://drive.massgrave.dev/sv_windows_7_home_premium_with_sp1_x86_dvd_u_676766.iso)     |\n| Thai                  | x64  | [th_windows_7_home_premium_with_sp1_x64_dvd_u_676670.iso](https://drive.massgrave.dev/th_windows_7_home_premium_with_sp1_x64_dvd_u_676670.iso)     |\n| Thai                  | x86  | [th_windows_7_home_premium_with_sp1_x86_dvd_u_676767.iso](https://drive.massgrave.dev/th_windows_7_home_premium_with_sp1_x86_dvd_u_676767.iso)     |\n| Turkish               | x64  | [tr_windows_7_home_premium_with_sp1_x64_dvd_u_676677.iso](https://drive.massgrave.dev/tr_windows_7_home_premium_with_sp1_x64_dvd_u_676677.iso)     |\n| Turkish               | x86  | [tr_windows_7_home_premium_with_sp1_x86_dvd_u_676768.iso](https://drive.massgrave.dev/tr_windows_7_home_premium_with_sp1_x86_dvd_u_676768.iso)     |\n| Chinese-Traditional   | x64  | [tw_windows_7_home_premium_with_sp1_x64_dvd_u_676703.iso](https://drive.massgrave.dev/tw_windows_7_home_premium_with_sp1_x64_dvd_u_676703.iso)     |\n| Chinese-Traditional   | x86  | [tw_windows_7_home_premium_with_sp1_x86_dvd_u_676772.iso](https://drive.massgrave.dev/tw_windows_7_home_premium_with_sp1_x86_dvd_u_676772.iso)     |\n| Ukrainian             | x64  | [uk_windows_7_home_premium_with_sp1_x64_dvd_u_676684.iso](https://drive.massgrave.dev/uk_windows_7_home_premium_with_sp1_x64_dvd_u_676684.iso)     |\n| Ukrainian             | x86  | [uk_windows_7_home_premium_with_sp1_x86_dvd_u_676769.iso](https://drive.massgrave.dev/uk_windows_7_home_premium_with_sp1_x86_dvd_u_676769.iso)     |\n\n== Windows 7 Home Basic SP1\n\n**Windows 7 Home Basic SP1**  \n\n> - Available in x86 only on MVS.\n\n\n| Language              | Arch | Link                                                                                                                                       |\n|:----------------------|:-----|:-------------------------------------------------------------------------------------------------------------------------------------------|\n| Arabic                | x86  | [ar_windows_7_home_basic_with_sp1_x86_dvd_u_676462.iso](https://drive.massgrave.dev/ar_windows_7_home_basic_with_sp1_x86_dvd_u_676462.iso) |\n| Bulgarian             | x86  | [bg_windows_7_home_basic_with_sp1_x86_dvd_u_676463.iso](https://drive.massgrave.dev/bg_windows_7_home_basic_with_sp1_x86_dvd_u_676463.iso) |\n| Chinese-Simplified    | x86  | [cn_windows_7_home_basic_with_sp1_x86_dvd_u_676500.iso](https://drive.massgrave.dev/cn_windows_7_home_basic_with_sp1_x86_dvd_u_676500.iso) |\n| Czech                 | x86  | [cs_windows_7_home_basic_with_sp1_x86_dvd_u_676464.iso](https://drive.massgrave.dev/cs_windows_7_home_basic_with_sp1_x86_dvd_u_676464.iso) |\n| Danish                | x86  | [da_windows_7_home_basic_with_sp1_x86_dvd_u_676465.iso](https://drive.massgrave.dev/da_windows_7_home_basic_with_sp1_x86_dvd_u_676465.iso) |\n| German                | x86  | [de_windows_7_home_basic_with_sp1_x86_dvd_u_676467.iso](https://drive.massgrave.dev/de_windows_7_home_basic_with_sp1_x86_dvd_u_676467.iso) |\n| Greek                 | x86  | [el_windows_7_home_basic_with_sp1_x86_dvd_u_676466.iso](https://drive.massgrave.dev/el_windows_7_home_basic_with_sp1_x86_dvd_u_676466.iso) |\n| English               | x86  | [en_windows_7_home_basic_with_sp1_x86_dvd_u_676470.iso](https://drive.massgrave.dev/en_windows_7_home_basic_with_sp1_x86_dvd_u_676470.iso) |\n| Spanish               | x86  | [es_windows_7_home_basic_with_sp1_x86_dvd_u_676468.iso](https://drive.massgrave.dev/es_windows_7_home_basic_with_sp1_x86_dvd_u_676468.iso) |\n| Estonian              | x86  | [et_windows_7_home_basic_with_sp1_x86_dvd_u_676471.iso](https://drive.massgrave.dev/et_windows_7_home_basic_with_sp1_x86_dvd_u_676471.iso) |\n| Finnish               | x86  | [fi_windows_7_home_basic_with_sp1_x86_dvd_u_676469.iso](https://drive.massgrave.dev/fi_windows_7_home_basic_with_sp1_x86_dvd_u_676469.iso) |\n| French                | x86  | [fr_windows_7_home_basic_with_sp1_x86_dvd_u_676472.iso](https://drive.massgrave.dev/fr_windows_7_home_basic_with_sp1_x86_dvd_u_676472.iso) |\n| Hebrew                | x86  | [he_windows_7_home_basic_with_sp1_x86_dvd_u_676473.iso](https://drive.massgrave.dev/he_windows_7_home_basic_with_sp1_x86_dvd_u_676473.iso) |\n| Chinese-Hong Kong SAR | x86  | [hk_windows_7_home_basic_with_sp1_x86_dvd_u_676504.iso](https://drive.massgrave.dev/hk_windows_7_home_basic_with_sp1_x86_dvd_u_676504.iso) |\n| Croatian              | x86  | [hr_windows_7_home_basic_with_sp1_x86_dvd_u_676474.iso](https://drive.massgrave.dev/hr_windows_7_home_basic_with_sp1_x86_dvd_u_676474.iso) |\n| Hungarian             | x86  | [hu_windows_7_home_basic_with_sp1_x86_dvd_u_676475.iso](https://drive.massgrave.dev/hu_windows_7_home_basic_with_sp1_x86_dvd_u_676475.iso) |\n| Italian               | x86  | [it_windows_7_home_basic_with_sp1_x86_dvd_u_676477.iso](https://drive.massgrave.dev/it_windows_7_home_basic_with_sp1_x86_dvd_u_676477.iso) |\n| Japanese              | x86  | [ja_windows_7_home_basic_with_sp1_x86_dvd_u_676480.iso](https://drive.massgrave.dev/ja_windows_7_home_basic_with_sp1_x86_dvd_u_676480.iso) |\n| Korean                | x86  | NA                                                                                                                                         |\n| Lithuanian            | x86  | [lt_windows_7_home_basic_with_sp1_x86_dvd_u_676485.iso](https://drive.massgrave.dev/lt_windows_7_home_basic_with_sp1_x86_dvd_u_676485.iso) |\n| Latvian               | x86  | [lv_windows_7_home_basic_with_sp1_x86_dvd_u_676476.iso](https://drive.massgrave.dev/lv_windows_7_home_basic_with_sp1_x86_dvd_u_676476.iso) |\n| Dutch                 | x86  | [nl_windows_7_home_basic_with_sp1_x86_dvd_u_676483.iso](https://drive.massgrave.dev/nl_windows_7_home_basic_with_sp1_x86_dvd_u_676483.iso) |\n| Norwegian             | x86  | [no_windows_7_home_basic_with_sp1_x86_dvd_u_676479.iso](https://drive.massgrave.dev/no_windows_7_home_basic_with_sp1_x86_dvd_u_676479.iso) |\n| Polish                | x86  | [pl_windows_7_home_basic_with_sp1_x86_dvd_u_676486.iso](https://drive.massgrave.dev/pl_windows_7_home_basic_with_sp1_x86_dvd_u_676486.iso) |\n| Portuguese-Portugal   | x86  | [pp_windows_7_home_basic_with_sp1_x86_dvd_u_676496.iso](https://drive.massgrave.dev/pp_windows_7_home_basic_with_sp1_x86_dvd_u_676496.iso) |\n| Portuguese-Brazil     | x86  | [pt_windows_7_home_basic_with_sp1_x86_dvd_u_676491.iso](https://drive.massgrave.dev/pt_windows_7_home_basic_with_sp1_x86_dvd_u_676491.iso) |\n| Romanian              | x86  | [ro_windows_7_home_basic_with_sp1_x86_dvd_u_676478.iso](https://drive.massgrave.dev/ro_windows_7_home_basic_with_sp1_x86_dvd_u_676478.iso) |\n| Russian               | x86  | [ru_windows_7_home_basic_with_sp1_x86_dvd_u_676482.iso](https://drive.massgrave.dev/ru_windows_7_home_basic_with_sp1_x86_dvd_u_676482.iso) |\n| Slovak                | x86  | [sk_windows_7_home_basic_with_sp1_x86_dvd_u_676487.iso](https://drive.massgrave.dev/sk_windows_7_home_basic_with_sp1_x86_dvd_u_676487.iso) |\n| Slovenian             | x86  | [sl_windows_7_home_basic_with_sp1_x86_dvd_u_676492.iso](https://drive.massgrave.dev/sl_windows_7_home_basic_with_sp1_x86_dvd_u_676492.iso) |\n| Serbian               | x86  | [sr_windows_7_home_basic_with_sp1_x86_dvd_u_676497.iso](https://drive.massgrave.dev/sr_windows_7_home_basic_with_sp1_x86_dvd_u_676497.iso) |\n| Swedish               | x86  | [sv_windows_7_home_basic_with_sp1_x86_dvd_u_676501.iso](https://drive.massgrave.dev/sv_windows_7_home_basic_with_sp1_x86_dvd_u_676501.iso) |\n| Thai                  | x86  | [th_windows_7_home_basic_with_sp1_x86_dvd_u_676481.iso](https://drive.massgrave.dev/th_windows_7_home_basic_with_sp1_x86_dvd_u_676481.iso) |\n| Turkish               | x86  | [tr_windows_7_home_basic_with_sp1_x86_dvd_u_676488.iso](https://drive.massgrave.dev/tr_windows_7_home_basic_with_sp1_x86_dvd_u_676488.iso) |\n| Chinese-Traditional   | x86  | [tw_windows_7_home_basic_with_sp1_x86_dvd_u_676507.iso](https://drive.massgrave.dev/tw_windows_7_home_basic_with_sp1_x86_dvd_u_676507.iso) |\n| Ukrainian             | x86  | [uk_windows_7_home_basic_with_sp1_x86_dvd_u_676494.iso](https://drive.massgrave.dev/uk_windows_7_home_basic_with_sp1_x86_dvd_u_676494.iso) |\n\n== Windows 7 Starter SP1\n\n**Windows 7 Starter SP1**  \n\n> - Available in x86 only\n\n| Language              | Arch | Link                                                                                                                                     |\n|:----------------------|:-----|:-----------------------------------------------------------------------------------------------------------------------------------------|\n| Arabic                | x86  | [ar_windows_7_starter_with_sp1_x86_dvd_u_678504.iso](https://drive.massgrave.dev/ar_windows_7_starter_with_sp1_x86_dvd_u_678504.iso)     |\n| Bulgarian             | x86  | [bg_windows_7_starter_with_sp1_x86_dvd_u_678517.iso](https://drive.massgrave.dev/bg_windows_7_starter_with_sp1_x86_dvd_u_678517.iso)     |\n| Chinese-Simplified    | x86  | [cn_windows_7_starter_with_sp1_x86_dvd_u_678536.iso](https://drive.massgrave.dev/cn_windows_7_starter_with_sp1_x86_dvd_u_678536.iso)     |\n| Czech                 | x86  | [cs_windows_7_starter_with_sp1_x86_dvd_u_678526.iso](https://drive.massgrave.dev/cs_windows_7_starter_with_sp1_x86_dvd_u_678526.iso)     |\n| Danish                | x86  | [da_windows_7_starter_with_sp1_x86_dvd_u_678537.iso](https://drive.massgrave.dev/da_windows_7_starter_with_sp1_x86_dvd_u_678537.iso)     |\n| German                | x86  | [de_windows_7_starter_with_sp1_x86_dvd_u_678545.iso](https://drive.massgrave.dev/de_windows_7_starter_with_sp1_x86_dvd_u_678545.iso)     |\n| Greek                 | x86  | [el_windows_7_starter_with_sp1_x86_dvd_u_678555.iso](https://drive.massgrave.dev/el_windows_7_starter_with_sp1_x86_dvd_u_678555.iso)     |\n| English               | x86  | [en_windows_7_starter_with_sp1_x86_dvd_u_678562.iso](https://drive.massgrave.dev/en_windows_7_starter_with_sp1_x86_dvd_u_678562.iso)     |\n| Spanish               | x86  | [es_windows_7_starter_with_sp1_x86_dvd_u_678236.iso](https://drive.massgrave.dev/es_windows_7_starter_with_sp1_x86_dvd_u_678236.iso)     |\n| Estonian              | x86  | [et_windows_7_starter_with_sp1_x86_dvd_u_678249.iso](https://drive.massgrave.dev/et_windows_7_starter_with_sp1_x86_dvd_u_678249.iso)     |\n| Finnish               | x86  | [fi_windows_7_starter_with_sp1_x86_dvd_u_678263.iso](https://drive.massgrave.dev/fi_windows_7_starter_with_sp1_x86_dvd_u_678263.iso)     |\n| French                | x86  | [fr_windows_7_starter_with_sp1_x86_dvd_u_678275.iso](https://drive.massgrave.dev/fr_windows_7_starter_with_sp1_x86_dvd_u_678275.iso)     |\n| Hebrew                | x86  | [he_windows_7_starter_with_sp1_x86_dvd_u_678290.iso](https://drive.massgrave.dev/he_windows_7_starter_with_sp1_x86_dvd_u_678290.iso)     |\n| Chinese-Hong Kong SAR | x86  | [hk_windows_7_starter_with_sp1_x86_dvd_u_678543.iso](https://drive.massgrave.dev/hk_windows_7_starter_with_sp1_x86_dvd_u_678543.iso)     |\n| Croatian              | x86  | [hr_windows_7_starter_with_sp1_x86_dvd_u_678304.iso](https://drive.massgrave.dev/hr_windows_7_starter_with_sp1_x86_dvd_u_678304.iso)     |\n| Hungarian             | x86  | [hu_windows_7_starter_with_sp1_x86_dvd_u_678318.iso](https://drive.massgrave.dev/hu_windows_7_starter_with_sp1_x86_dvd_u_678318.iso)     |\n| Italian               | x86  | [it_windows_7_starter_with_sp1_x86_dvd_u_678331.iso](https://drive.massgrave.dev/it_windows_7_starter_with_sp1_x86_dvd_u_678331.iso)     |\n| Japanese              | x86  | [ja_windows_7_starter_with_sp1_x86_dvd_u_678344.iso](https://drive.massgrave.dev/ja_windows_7_starter_with_sp1_x86_dvd_u_678344.iso)     |\n| Korean                | x86  | [ko_windows_7_starter_k_with_sp1_x86_dvd_u_678554.iso](https://drive.massgrave.dev/ko_windows_7_starter_k_with_sp1_x86_dvd_u_678554.iso) |\n| Lithuanian            | x86  | [lt_windows_7_starter_with_sp1_x86_dvd_u_678360.iso](https://drive.massgrave.dev/lt_windows_7_starter_with_sp1_x86_dvd_u_678360.iso)     |\n| Latvian               | x86  | [lv_windows_7_starter_with_sp1_x86_dvd_u_678374.iso](https://drive.massgrave.dev/lv_windows_7_starter_with_sp1_x86_dvd_u_678374.iso)     |\n| Dutch                 | x86  | [nl_windows_7_starter_with_sp1_x86_dvd_u_678399.iso](https://drive.massgrave.dev/nl_windows_7_starter_with_sp1_x86_dvd_u_678399.iso)     |\n| Norwegian             | x86  | [no_windows_7_starter_with_sp1_x86_dvd_u_678386.iso](https://drive.massgrave.dev/no_windows_7_starter_with_sp1_x86_dvd_u_678386.iso)     |\n| Polish                | x86  | [pl_windows_7_starter_with_sp1_x86_dvd_u_678412.iso](https://drive.massgrave.dev/pl_windows_7_starter_with_sp1_x86_dvd_u_678412.iso)     |\n| Portuguese-Portugal   | x86  | [pp_windows_7_starter_with_sp1_x86_dvd_u_678439.iso](https://drive.massgrave.dev/pp_windows_7_starter_with_sp1_x86_dvd_u_678439.iso)     |\n| Portuguese-Brazil     | x86  | [pt_windows_7_starter_with_sp1_x86_dvd_u_678426.iso](https://drive.massgrave.dev/pt_windows_7_starter_with_sp1_x86_dvd_u_678426.iso)     |\n| Romanian              | x86  | [ro_windows_7_starter_with_sp1_x86_dvd_u_678452.iso](https://drive.massgrave.dev/ro_windows_7_starter_with_sp1_x86_dvd_u_678452.iso)     |\n| Russian               | x86  | [ru_windows_7_starter_with_sp1_x86_dvd_u_678466.iso](https://drive.massgrave.dev/ru_windows_7_starter_with_sp1_x86_dvd_u_678466.iso)     |\n| Slovak                | x86  | [sk_windows_7_starter_with_sp1_x86_dvd_u_678478.iso](https://drive.massgrave.dev/sk_windows_7_starter_with_sp1_x86_dvd_u_678478.iso)     |\n| Slovenian             | x86  | [sl_windows_7_starter_with_sp1_x86_dvd_u_678490.iso](https://drive.massgrave.dev/sl_windows_7_starter_with_sp1_x86_dvd_u_678490.iso)     |\n| Serbian               | x86  | [sr_windows_7_starter_with_sp1_x86_dvd_u_678501.iso](https://drive.massgrave.dev/sr_windows_7_starter_with_sp1_x86_dvd_u_678501.iso)     |\n| Swedish               | x86  | [sv_windows_7_starter_with_sp1_x86_dvd_u_678508.iso](https://drive.massgrave.dev/sv_windows_7_starter_with_sp1_x86_dvd_u_678508.iso)     |\n| Thai                  | x86  | [th_windows_7_starter_with_sp1_x86_dvd_u_678516.iso](https://drive.massgrave.dev/th_windows_7_starter_with_sp1_x86_dvd_u_678516.iso)     |\n| Turkish               | x86  | [tr_windows_7_starter_with_sp1_x86_dvd_u_678523.iso](https://drive.massgrave.dev/tr_windows_7_starter_with_sp1_x86_dvd_u_678523.iso)     |\n| Chinese-Traditional   | x86  | [tw_windows_7_starter_with_sp1_x86_dvd_u_678549.iso](https://drive.massgrave.dev/tw_windows_7_starter_with_sp1_x86_dvd_u_678549.iso)     |\n| Ukrainian             | x86  | [uk_windows_7_starter_with_sp1_x86_dvd_u_678529.iso](https://drive.massgrave.dev/uk_windows_7_starter_with_sp1_x86_dvd_u_678529.iso)     |\n\n== Other Versions\n\n**Other Versions**\n\n> - [archive.isdn/artifacts][2]\n> - [MVS Bot][3]\n> - [os.click/][4]\n> - [files.rg-adguard.net/5e876ce4d2c3][5]\n\n:::\n\n[1]: https://blog-simplix-info.translate.goog/updatepack7r2/?_x_tr_sl=ru&_x_tr_tl=en&_x_tr_hl=nl&_x_tr_pto=sc\n[2]: https://archive.isdn.network/artifacts/\n[3]: https://discord.gg/FajfGaH3nD\n[4]: https://os.click/\n[5]:  https://files.rg-adguard.net/language/a9e697fb-a83e-ef89-8279-5e876ce4d2c3\n[genuine]: https://nirevil.github.io/windows-activation/wa/genuine-installation-media#verify-authenticity-of-files\n"
  },
  {
    "path": "docs/wa/windows_8.1_links.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'Windows 8.1 Download'\ndescription: 'All download links lead to genuine files only'\ndate: 2025-01-19\neditLink: true\n---\n\n# Windows 8.1 Download Links\n\n<br/>\n\n::: info All download links lead to **`genuine files`**\n\n- [**FAQ**](./genuine-installation-media#faq)\n\n- [**How to ensure that these files are genuine?**][genuine]  \n\n> - In the install process of Windows 8.1 (Core / Pro) ISO, setup will ask to enter the key, you can enter below generic keys for the desired edition.\n> \n> **Windows 8.1 Core:**\n> \n> ```shell\n> 334NH-RXG76-64THK-C7CKG-D3VPT\n> ```\n>\n> \n> **Windows 8.1 Core N:**\n> \n> ```shell\n> 6NPQ8-PK64X-W4WMM-MF84V-RGB89\n> ```\n>\n> \n> **Windows 8.1 Core Single Language:**\n> \n> ```shell\n> Y9NXP-XT8MV-PT9TG-97CT3-9D6TC\n> ```\n>\n> \n> **Windows 8.1 Pro:**\n>\n> ```shell\n> XHQ8N-C3MCJ-RQXB6-WCHYG-C9WKB\n> ```\n>\n> \n> **Windows 8.1 Pro N:**\n> \n> ```shell\n> JRBBN-4Q997-H4RM2-H3B7W-Q68KC\n> ```\n>  \n> - **Windows 8.1 can be permanently activated with [TSforge option in MAS](./index#step2)**\n> \n> - Windows 8.1 Embedded editions don't come with preinstalled store apps.\n> \n\n:::\n\n<br/>\n\n## Windows 8.1\n\n:::tabs\n\n== Windows 8.1 Core / Pro 🤍\n\n**Windows 8.1 Core / Pro**  \n\n > - Build  9600.17415\n\n[MSDL][MSDL] provides official links directly from Microsoft.\n\n== Windows 8.1 Core / Pro\n\n**Windows 8.1 Core / Pro**\n\n> - Build  9600.17415\n\n\n| Language               | Arch | Link                                                                                                                                   |\n|:-----------------------|:-----|:---------------------------------------------------------------------------------------------------------------------------------------|\n| Arabic                 | x64  | [ar_windows_8.1_with_update_x64_dvd_6051471.iso](https://drive.massgrave.dev/ar_windows_8.1_with_update_x64_dvd_6051471.iso)           |\n| Arabic                 | x86  | [ar_windows_8.1_with_update_x86_dvd_6051513.iso](https://drive.massgrave.dev/ar_windows_8.1_with_update_x86_dvd_6051513.iso)           |\n| Bulgarian              | x64  | [bg_windows_8.1_with_update_x64_dvd_6051472.iso](https://drive.massgrave.dev/bg_windows_8.1_with_update_x64_dvd_6051472.iso)           |\n| Bulgarian              | x86  | [bg_windows_8.1_with_update_x86_dvd_6051520.iso](https://drive.massgrave.dev/bg_windows_8.1_with_update_x86_dvd_6051520.iso)           |\n| Chinese-Simplified     | x64  | [cn_windows_8.1_with_update_x64_dvd_6051473.iso](https://drive.massgrave.dev/cn_windows_8.1_with_update_x64_dvd_6051473.iso)           |\n| Chinese-Simplified     | x86  | [cn_windows_8.1_with_update_x86_dvd_6051523.iso](https://drive.massgrave.dev/cn_windows_8.1_with_update_x86_dvd_6051523.iso)           |\n| Czech                  | x64  | [cs_windows_8.1_with_update_x64_dvd_6051477.iso](https://drive.massgrave.dev/cs_windows_8.1_with_update_x64_dvd_6051477.iso)           |\n| Czech                  | x86  | [cs_windows_8.1_with_update_x86_dvd_6051535.iso](https://drive.massgrave.dev/cs_windows_8.1_with_update_x86_dvd_6051535.iso)           |\n| Danish                 | x64  | [da_windows_8.1_with_update_x64_dvd_6051478.iso](https://drive.massgrave.dev/da_windows_8.1_with_update_x64_dvd_6051478.iso)           |\n| Danish                 | x86  | [da_windows_8.1_with_update_x86_dvd_6051541.iso](https://drive.massgrave.dev/da_windows_8.1_with_update_x86_dvd_6051541.iso)           |\n| German                 | x64  | [de_windows_8.1_with_update_x64_dvd_6051485.iso](https://drive.massgrave.dev/de_windows_8.1_with_update_x64_dvd_6051485.iso)           |\n| German                 | x86  | [de_windows_8.1_with_update_x86_dvd_6051588.iso](https://drive.massgrave.dev/de_windows_8.1_with_update_x86_dvd_6051588.iso)           |\n| Greek                  | x64  | [el_windows_8.1_with_update_x64_dvd_6051486.iso](https://drive.massgrave.dev/el_windows_8.1_with_update_x64_dvd_6051486.iso)           |\n| Greek                  | x86  | [el_windows_8.1_with_update_x86_dvd_6051592.iso](https://drive.massgrave.dev/el_windows_8.1_with_update_x86_dvd_6051592.iso)           |\n| English-United Kingdom | x64  | [en-gb_windows_8.1_with_update_x64_dvd_6051481.iso](https://drive.massgrave.dev/en-gb_windows_8.1_with_update_x64_dvd_6051481.iso)     |\n| English-United Kingdom | x86  | [en-gb_windows_8.1_with_update_x86_dvd_6051555.iso](https://drive.massgrave.dev/en-gb_windows_8.1_with_update_x86_dvd_6051555.iso)     |\n| English                | x64  | [en_windows_8.1_with_update_x64_dvd_6051480.iso](https://drive.massgrave.dev/en_windows_8.1_with_update_x64_dvd_6051480.iso)           |\n| English                | x86  | [en_windows_8.1_with_update_x86_dvd_6051550.iso](https://drive.massgrave.dev/en_windows_8.1_with_update_x86_dvd_6051550.iso)           |\n| Spanish                | x64  | [es_windows_8.1_with_update_x64_dvd_6051503.iso](https://drive.massgrave.dev/es_windows_8.1_with_update_x64_dvd_6051503.iso)           |\n| Spanish                | x86  | [es_windows_8.1_with_update_x86_dvd_6051666.iso](https://drive.massgrave.dev/es_windows_8.1_with_update_x86_dvd_6051666.iso)           |\n| Estonian               | x64  | [et_windows_8.1_with_update_x64_dvd_6051482.iso](https://drive.massgrave.dev/et_windows_8.1_with_update_x64_dvd_6051482.iso)           |\n| Estonian               | x86  | [et_windows_8.1_with_update_x86_dvd_6051565.iso](https://drive.massgrave.dev/et_windows_8.1_with_update_x86_dvd_6051565.iso)           |\n| Finnish                | x64  | [fi_windows_8.1_with_update_x64_dvd_6051483.iso](https://drive.massgrave.dev/fi_windows_8.1_with_update_x64_dvd_6051483.iso)           |\n| Finnish                | x86  | [fi_windows_8.1_with_update_x86_dvd_6051575.iso](https://drive.massgrave.dev/fi_windows_8.1_with_update_x86_dvd_6051575.iso)           |\n| French                 | x64  | [fr_windows_8.1_with_update_x64_dvd_6051484.iso](https://drive.massgrave.dev/fr_windows_8.1_with_update_x64_dvd_6051484.iso)           |\n| French                 | x86  | [fr_windows_8.1_with_update_x86_dvd_6051583.iso](https://drive.massgrave.dev/fr_windows_8.1_with_update_x86_dvd_6051583.iso)           |\n| Hebrew                 | x64  | [he_windows_8.1_with_update_x64_dvd_6051487.iso](https://drive.massgrave.dev/he_windows_8.1_with_update_x64_dvd_6051487.iso)           |\n| Hebrew                 | x86  | [he_windows_8.1_with_update_x86_dvd_6051597.iso](https://drive.massgrave.dev/he_windows_8.1_with_update_x86_dvd_6051597.iso)           |\n| Chinese-Hong Kong SAR  | x64  | [hk_windows_8.1_with_update_x64_dvd_6051474.iso](https://drive.massgrave.dev/hk_windows_8.1_with_update_x64_dvd_6051474.iso)           |\n| Chinese-Hong Kong SAR  | x86  | [hk_windows_8.1_with_update_x86_dvd_6051524.iso](https://drive.massgrave.dev/hk_windows_8.1_with_update_x86_dvd_6051524.iso)           |\n| Croatian               | x64  | [hr_windows_8.1_with_update_x64_dvd_6051476.iso](https://drive.massgrave.dev/hr_windows_8.1_with_update_x64_dvd_6051476.iso)           |\n| Croatian               | x86  | [hr_windows_8.1_with_update_x86_dvd_6051529.iso](https://drive.massgrave.dev/hr_windows_8.1_with_update_x86_dvd_6051529.iso)           |\n| Hungarian              | x64  | [hu_windows_8.1_with_update_x64_dvd_6051488.iso](https://drive.massgrave.dev/hu_windows_8.1_with_update_x64_dvd_6051488.iso)           |\n| Hungarian              | x86  | [hu_windows_8.1_with_update_x86_dvd_6051602.iso](https://drive.massgrave.dev/hu_windows_8.1_with_update_x86_dvd_6051602.iso)           |\n| Italian                | x64  | [it_windows_8.1_with_update_x64_dvd_6051489.iso](https://drive.massgrave.dev/it_windows_8.1_with_update_x64_dvd_6051489.iso)           |\n| Italian                | x86  | [it_windows_8.1_with_update_x86_dvd_6051607.iso](https://drive.massgrave.dev/it_windows_8.1_with_update_x86_dvd_6051607.iso)           |\n| Japanese               | x64  | [ja_windows_8.1_with_update_x64_dvd_6051490.iso](https://drive.massgrave.dev/ja_windows_8.1_with_update_x64_dvd_6051490.iso)           |\n| Japanese               | x86  | [ja_windows_8.1_with_update_x86_dvd_6051612.iso](https://drive.massgrave.dev/ja_windows_8.1_with_update_x86_dvd_6051612.iso)           |\n| Korean                 | x64  | [ko_windows_8.1_with_update_x64_dvd_6051491.iso](https://drive.massgrave.dev/ko_windows_8.1_with_update_x64_dvd_6051491.iso)           |\n| Korean                 | x86  | [ko_windows_8.1_with_update_x86_dvd_6051617.iso](https://drive.massgrave.dev/ko_windows_8.1_with_update_x86_dvd_6051617.iso)           |\n| Lithuanian             | x64  | [lt_windows_8.1_with_update_x64_dvd_6051493.iso](https://drive.massgrave.dev/lt_windows_8.1_with_update_x64_dvd_6051493.iso)           |\n| Lithuanian             | x86  | [lt_windows_8.1_with_update_x86_dvd_6051625.iso](https://drive.massgrave.dev/lt_windows_8.1_with_update_x86_dvd_6051625.iso)           |\n| Latvian                | x64  | [lv_windows_8.1_with_update_x64_dvd_6051492.iso](https://drive.massgrave.dev/lv_windows_8.1_with_update_x64_dvd_6051492.iso)           |\n| Latvian                | x86  | [lv_windows_8.1_with_update_x86_dvd_6051621.iso](https://drive.massgrave.dev/lv_windows_8.1_with_update_x86_dvd_6051621.iso)           |\n| Norwegian-Bokmal       | x64  | [nb_windows_8.1_with_update_x64_dvd_6051494.iso](https://drive.massgrave.dev/nb_windows_8.1_with_update_x64_dvd_6051494.iso)           |\n| Norwegian-Bokmal       | x86  | [nb_windows_8.1_with_update_x86_dvd_6051631.iso](https://drive.massgrave.dev/nb_windows_8.1_with_update_x86_dvd_6051631.iso)           |\n| Dutch                  | x64  | [nl_windows_8.1_with_update_x64_dvd_6051479.iso](https://drive.massgrave.dev/nl_windows_8.1_with_update_x64_dvd_6051479.iso)           |\n| Dutch                  | x86  | [nl_windows_8.1_with_update_x86_dvd_6051545.iso](https://drive.massgrave.dev/nl_windows_8.1_with_update_x86_dvd_6051545.iso)           |\n| Polish                 | x64  | [pl_windows_8.1_with_update_x64_dvd_6051495.iso](https://drive.massgrave.dev/pl_windows_8.1_with_update_x64_dvd_6051495.iso)           |\n| Polish                 | x86  | [pl_windows_8.1_with_update_x86_dvd_6051637.iso](https://drive.massgrave.dev/pl_windows_8.1_with_update_x86_dvd_6051637.iso)           |\n| Portuguese-Portugal    | x64  | [pp_windows_8.1_with_update_x64_dvd_6051497.iso](https://drive.massgrave.dev/pp_windows_8.1_with_update_x64_dvd_6051497.iso)           |\n| Portuguese-Portugal    | x86  | [pp_windows_8.1_with_update_x86_dvd_6051655.iso](https://drive.massgrave.dev/pp_windows_8.1_with_update_x86_dvd_6051655.iso)           |\n| Portuguese-Brazil      | x64  | [pt_windows_8.1_with_update_x64_dvd_6051496.iso](https://drive.massgrave.dev/pt_windows_8.1_with_update_x64_dvd_6051496.iso)           |\n| Portuguese-Brazil      | x86  | [pt_windows_8.1_with_update_x86_dvd_6051647.iso](https://drive.massgrave.dev/pt_windows_8.1_with_update_x86_dvd_6051647.iso)           |\n| Romanian               | x64  | [ro_windows_8.1_with_update_x64_dvd_6051498.iso](https://drive.massgrave.dev/ro_windows_8.1_with_update_x64_dvd_6051498.iso)           |\n| Romanian               | x86  | [ro_windows_8.1_with_update_x86_dvd_6051661.iso](https://drive.massgrave.dev/ro_windows_8.1_with_update_x86_dvd_6051661.iso)           |\n| Russian                | x64  | [ru_windows_8.1_with_update_x64_dvd_6051499.iso](https://drive.massgrave.dev/ru_windows_8.1_with_update_x64_dvd_6051499.iso)           |\n| Russian                | x86  | [ru_windows_8.1_with_update_x86_dvd_6051662.iso](https://drive.massgrave.dev/ru_windows_8.1_with_update_x86_dvd_6051662.iso)           |\n| Slovak                 | x64  | [sk_windows_8.1_with_update_x64_dvd_6051501.iso](https://drive.massgrave.dev/sk_windows_8.1_with_update_x64_dvd_6051501.iso)           |\n| Slovak                 | x86  | [sk_windows_8.1_with_update_x86_dvd_6051664.iso](https://drive.massgrave.dev/sk_windows_8.1_with_update_x86_dvd_6051664.iso)           |\n| Slovenian              | x64  | [sl_windows_8.1_with_update_x64_dvd_6051502.iso](https://drive.massgrave.dev/sl_windows_8.1_with_update_x64_dvd_6051502.iso)           |\n| Slovenian              | x86  | [sl_windows_8.1_with_update_x86_dvd_6051665.iso](https://drive.massgrave.dev/sl_windows_8.1_with_update_x86_dvd_6051665.iso)           |\n| Serbian-Latin          | x64  | [sr-latn_windows_8.1_with_update_x64_dvd_6051500.iso](https://drive.massgrave.dev/sr-latn_windows_8.1_with_update_x64_dvd_6051500.iso) |\n| Serbian-Latin          | x86  | [sr-latn_windows_8.1_with_update_x86_dvd_6051663.iso](https://drive.massgrave.dev/sr-latn_windows_8.1_with_update_x86_dvd_6051663.iso) |\n| Swedish                | x64  | [sv_windows_8.1_with_update_x64_dvd_6051504.iso](https://drive.massgrave.dev/sv_windows_8.1_with_update_x64_dvd_6051504.iso)           |\n| Swedish                | x86  | [sv_windows_8.1_with_update_x86_dvd_6051667.iso](https://drive.massgrave.dev/sv_windows_8.1_with_update_x86_dvd_6051667.iso)           |\n| Thai                   | x64  | [th_windows_8.1_with_update_x64_dvd_6051506.iso](https://drive.massgrave.dev/th_windows_8.1_with_update_x64_dvd_6051506.iso)           |\n| Thai                   | x86  | [th_windows_8.1_with_update_x86_dvd_6051668.iso](https://drive.massgrave.dev/th_windows_8.1_with_update_x86_dvd_6051668.iso)           |\n| Turkish                | x64  | [tr_windows_8.1_with_update_x64_dvd_6051507.iso](https://drive.massgrave.dev/tr_windows_8.1_with_update_x64_dvd_6051507.iso)           |\n| Turkish                | x86  | [tr_windows_8.1_with_update_x86_dvd_6051669.iso](https://drive.massgrave.dev/tr_windows_8.1_with_update_x86_dvd_6051669.iso)           |\n| Chinese-Taiwan         | x64  | [tw_windows_8.1_with_update_x64_dvd_6051475.iso](https://drive.massgrave.dev/tw_windows_8.1_with_update_x64_dvd_6051475.iso)           |\n| Chinese-Taiwan         | x86  | [tw_windows_8.1_with_update_x86_dvd_6051525.iso](https://drive.massgrave.dev/tw_windows_8.1_with_update_x86_dvd_6051525.iso)           |\n| Ukrainian              | x64  | [uk_windows_8.1_with_update_x64_dvd_6051508.iso](https://drive.massgrave.dev/uk_windows_8.1_with_update_x64_dvd_6051508.iso)           |\n| Ukrainian              | x86  | [uk_windows_8.1_with_update_x86_dvd_6051671.iso](https://drive.massgrave.dev/uk_windows_8.1_with_update_x86_dvd_6051671.iso)           |\n\n== Windows 8.1 Pro VL\n\n**Windows 8.1 Pro VL**\n\n> - Build  9600.17415)\n\n| Language               | Arch | Link                                                                                                                                                 |\n|:-----------------------|:-----|:-----------------------------------------------------------------------------------------------------------------------------------------------------|\n| Arabic                 | x64  | [ar_windows_8.1_pro_vl_with_update_x64_dvd_6050871.iso](https://drive.massgrave.dev/ar_windows_8.1_pro_vl_with_update_x64_dvd_6050871.iso)           |\n| Arabic                 | x86  | [ar_windows_8.1_pro_vl_with_update_x86_dvd_6050908.iso](https://drive.massgrave.dev/ar_windows_8.1_pro_vl_with_update_x86_dvd_6050908.iso)           |\n| Bulgarian              | x64  | [bg_windows_8.1_pro_vl_with_update_x64_dvd_6050872.iso](https://drive.massgrave.dev/bg_windows_8.1_pro_vl_with_update_x64_dvd_6050872.iso)           |\n| Bulgarian              | x86  | [bg_windows_8.1_pro_vl_with_update_x86_dvd_6050909.iso](https://drive.massgrave.dev/bg_windows_8.1_pro_vl_with_update_x86_dvd_6050909.iso)           |\n| Chinese-Simplified     | x64  | [cn_windows_8.1_pro_vl_with_update_x64_dvd_6050873.iso](https://drive.massgrave.dev/cn_windows_8.1_pro_vl_with_update_x64_dvd_6050873.iso)           |\n| Chinese-Simplified     | x86  | [cn_windows_8.1_pro_vl_with_update_x86_dvd_6050910.iso](https://drive.massgrave.dev/cn_windows_8.1_pro_vl_with_update_x86_dvd_6050910.iso)           |\n| Czech                  | x64  | [cs_windows_8.1_pro_vl_with_update_x64_dvd_6050877.iso](https://drive.massgrave.dev/cs_windows_8.1_pro_vl_with_update_x64_dvd_6050877.iso)           |\n| Czech                  | x86  | [cs_windows_8.1_pro_vl_with_update_x86_dvd_6050915.iso](https://drive.massgrave.dev/cs_windows_8.1_pro_vl_with_update_x86_dvd_6050915.iso)           |\n| Danish                 | x64  | [da_windows_8.1_pro_vl_with_update_x64_dvd_6050878.iso](https://drive.massgrave.dev/da_windows_8.1_pro_vl_with_update_x64_dvd_6050878.iso)           |\n| Danish                 | x86  | [da_windows_8.1_pro_vl_with_update_x86_dvd_6050916.iso](https://drive.massgrave.dev/da_windows_8.1_pro_vl_with_update_x86_dvd_6050916.iso)           |\n| German                 | x64  | [de_windows_8.1_pro_vl_with_update_x64_dvd_6050885.iso](https://drive.massgrave.dev/de_windows_8.1_pro_vl_with_update_x64_dvd_6050885.iso)           |\n| German                 | x86  | [de_windows_8.1_pro_vl_with_update_x86_dvd_6050923.iso](https://drive.massgrave.dev/de_windows_8.1_pro_vl_with_update_x86_dvd_6050923.iso)           |\n| Greek                  | x64  | [el_windows_8.1_pro_vl_with_update_x64_dvd_6050886.iso](https://drive.massgrave.dev/el_windows_8.1_pro_vl_with_update_x64_dvd_6050886.iso)           |\n| Greek                  | x86  | [el_windows_8.1_pro_vl_with_update_x86_dvd_6050924.iso](https://drive.massgrave.dev/el_windows_8.1_pro_vl_with_update_x86_dvd_6050924.iso)           |\n| English-United Kingdom | x64  | [en-gb_windows_8.1_pro_vl_with_update_x64_dvd_6050881.iso](https://drive.massgrave.dev/en-gb_windows_8.1_pro_vl_with_update_x64_dvd_6050881.iso)     |\n| English-United Kingdom | x86  | [en-gb_windows_8.1_pro_vl_with_update_x86_dvd_6050919.iso](https://drive.massgrave.dev/en-gb_windows_8.1_pro_vl_with_update_x86_dvd_6050919.iso)     |\n| English                | x64  | [en_windows_8.1_pro_vl_with_update_x64_dvd_6050880.iso](https://drive.massgrave.dev/en_windows_8.1_pro_vl_with_update_x64_dvd_6050880.iso)           |\n| English                | x86  | [en_windows_8.1_pro_vl_with_update_x86_dvd_6050918.iso](https://drive.massgrave.dev/en_windows_8.1_pro_vl_with_update_x86_dvd_6050918.iso)           |\n| Spanish                | x64  | [es_windows_8.1_pro_vl_with_update_x64_dvd_6050903.iso](https://drive.massgrave.dev/es_windows_8.1_pro_vl_with_update_x64_dvd_6050903.iso)           |\n| Spanish                | x86  | [es_windows_8.1_pro_vl_with_update_x86_dvd_6050941.iso](https://drive.massgrave.dev/es_windows_8.1_pro_vl_with_update_x86_dvd_6050941.iso)           |\n| Estonian               | x64  | [et_windows_8.1_pro_vl_with_update_x64_dvd_6050882.iso](https://drive.massgrave.dev/et_windows_8.1_pro_vl_with_update_x64_dvd_6050882.iso)           |\n| Estonian               | x86  | [et_windows_8.1_pro_vl_with_update_x86_dvd_6050920.iso](https://drive.massgrave.dev/et_windows_8.1_pro_vl_with_update_x86_dvd_6050920.iso)           |\n| Finnish                | x64  | [fi_windows_8.1_pro_vl_with_update_x64_dvd_6050883.iso](https://drive.massgrave.dev/fi_windows_8.1_pro_vl_with_update_x64_dvd_6050883.iso)           |\n| Finnish                | x86  | [fi_windows_8.1_pro_vl_with_update_x86_dvd_6050921.iso](https://drive.massgrave.dev/fi_windows_8.1_pro_vl_with_update_x86_dvd_6050921.iso)           |\n| French                 | x64  | [fr_windows_8.1_pro_vl_with_update_x64_dvd_6050884.iso](https://drive.massgrave.dev/fr_windows_8.1_pro_vl_with_update_x64_dvd_6050884.iso)           |\n| French                 | x86  | [fr_windows_8.1_pro_vl_with_update_x86_dvd_6050922.iso](https://drive.massgrave.dev/fr_windows_8.1_pro_vl_with_update_x86_dvd_6050922.iso)           |\n| Hebrew                 | x64  | [he_windows_8.1_pro_vl_with_update_x64_dvd_6050887.iso](https://drive.massgrave.dev/he_windows_8.1_pro_vl_with_update_x64_dvd_6050887.iso)           |\n| Hebrew                 | x86  | [he_windows_8.1_pro_vl_with_update_x86_dvd_6050925.iso](https://drive.massgrave.dev/he_windows_8.1_pro_vl_with_update_x86_dvd_6050925.iso)           |\n| Chinese-Hong Kong SAR  | x64  | [hk_windows_8.1_pro_vl_with_update_x64_dvd_6050874.iso](https://drive.massgrave.dev/hk_windows_8.1_pro_vl_with_update_x64_dvd_6050874.iso)           |\n| Chinese-Hong Kong SAR  | x86  | [hk_windows_8.1_pro_vl_with_update_x86_dvd_6050911.iso](https://drive.massgrave.dev/hk_windows_8.1_pro_vl_with_update_x86_dvd_6050911.iso)           |\n| Croatian               | x64  | [hr_windows_8.1_pro_vl_with_update_x64_dvd_6050876.iso](https://drive.massgrave.dev/hr_windows_8.1_pro_vl_with_update_x64_dvd_6050876.iso)           |\n| Croatian               | x86  | [hr_windows_8.1_pro_vl_with_update_x86_dvd_6050913.iso](https://drive.massgrave.dev/hr_windows_8.1_pro_vl_with_update_x86_dvd_6050913.iso)           |\n| Hungarian              | x64  | [hu_windows_8.1_pro_vl_with_update_x64_dvd_6050888.iso](https://drive.massgrave.dev/hu_windows_8.1_pro_vl_with_update_x64_dvd_6050888.iso)           |\n| Hungarian              | x86  | [hu_windows_8.1_pro_vl_with_update_x86_dvd_6050926.iso](https://drive.massgrave.dev/hu_windows_8.1_pro_vl_with_update_x86_dvd_6050926.iso)           |\n| Italian                | x64  | [it_windows_8.1_pro_vl_with_update_x64_dvd_6050889.iso](https://drive.massgrave.dev/it_windows_8.1_pro_vl_with_update_x64_dvd_6050889.iso)           |\n| Italian                | x86  | [it_windows_8.1_pro_vl_with_update_x86_dvd_6050927.iso](https://drive.massgrave.dev/it_windows_8.1_pro_vl_with_update_x86_dvd_6050927.iso)           |\n| Japanese               | x64  | [ja_windows_8.1_pro_vl_with_update_x64_dvd_6050890.iso](https://drive.massgrave.dev/ja_windows_8.1_pro_vl_with_update_x64_dvd_6050890.iso)           |\n| Japanese               | x86  | [ja_windows_8.1_pro_vl_with_update_x86_dvd_6050928.iso](https://drive.massgrave.dev/ja_windows_8.1_pro_vl_with_update_x86_dvd_6050928.iso)           |\n| Korean                 | x64  | [ko_windows_8.1_pro_vl_with_update_x64_dvd_6050891.iso](https://drive.massgrave.dev/ko_windows_8.1_pro_vl_with_update_x64_dvd_6050891.iso)           |\n| Korean                 | x86  | [ko_windows_8.1_pro_vl_with_update_x86_dvd_6050929.iso](https://drive.massgrave.dev/ko_windows_8.1_pro_vl_with_update_x86_dvd_6050929.iso)           |\n| Lithuanian             | x64  | [lt_windows_8.1_pro_vl_with_update_x64_dvd_6050893.iso](https://drive.massgrave.dev/lt_windows_8.1_pro_vl_with_update_x64_dvd_6050893.iso)           |\n| Lithuanian             | x86  | [lt_windows_8.1_pro_vl_with_update_x86_dvd_6050931.iso](https://drive.massgrave.dev/lt_windows_8.1_pro_vl_with_update_x86_dvd_6050931.iso)           |\n| Latvian                | x64  | [lv_windows_8.1_pro_vl_with_update_x64_dvd_6050892.iso](https://drive.massgrave.dev/lv_windows_8.1_pro_vl_with_update_x64_dvd_6050892.iso)           |\n| Latvian                | x86  | [lv_windows_8.1_pro_vl_with_update_x86_dvd_6050930.iso](https://drive.massgrave.dev/lv_windows_8.1_pro_vl_with_update_x86_dvd_6050930.iso)           |\n| Norwegian-Bokmal       | x64  | [nb_windows_8.1_pro_vl_with_update_x64_dvd_6050894.iso](https://drive.massgrave.dev/nb_windows_8.1_pro_vl_with_update_x64_dvd_6050894.iso)           |\n| Norwegian-Bokmal       | x86  | [nb_windows_8.1_pro_vl_with_update_x86_dvd_6050932.iso](https://drive.massgrave.dev/nb_windows_8.1_pro_vl_with_update_x86_dvd_6050932.iso)           |\n| Dutch                  | x64  | [nl_windows_8.1_pro_vl_with_update_x64_dvd_6050879.iso](https://drive.massgrave.dev/nl_windows_8.1_pro_vl_with_update_x64_dvd_6050879.iso)           |\n| Dutch                  | x86  | [nl_windows_8.1_pro_vl_with_update_x86_dvd_6050917.iso](https://drive.massgrave.dev/nl_windows_8.1_pro_vl_with_update_x86_dvd_6050917.iso)           |\n| Polish                 | x64  | [pl_windows_8.1_pro_vl_with_update_x64_dvd_6050895.iso](https://drive.massgrave.dev/pl_windows_8.1_pro_vl_with_update_x64_dvd_6050895.iso)           |\n| Polish                 | x86  | [pl_windows_8.1_pro_vl_with_update_x86_dvd_6050933.iso](https://drive.massgrave.dev/pl_windows_8.1_pro_vl_with_update_x86_dvd_6050933.iso)           |\n| Portuguese-Portugal    | x64  | [pp_windows_8.1_pro_vl_with_update_x64_dvd_6050897.iso](https://drive.massgrave.dev/pp_windows_8.1_pro_vl_with_update_x64_dvd_6050897.iso)           |\n| Portuguese-Portugal    | x86  | [pp_windows_8.1_pro_vl_with_update_x86_dvd_6050935.iso](https://drive.massgrave.dev/pp_windows_8.1_pro_vl_with_update_x86_dvd_6050935.iso)           |\n| Portuguese-Brazil      | x64  | [pt_windows_8.1_pro_vl_with_update_x64_dvd_6050896.iso](https://drive.massgrave.dev/pt_windows_8.1_pro_vl_with_update_x64_dvd_6050896.iso)           |\n| Portuguese-Brazil      | x86  | [pt_windows_8.1_pro_vl_with_update_x86_dvd_6050934.iso](https://drive.massgrave.dev/pt_windows_8.1_pro_vl_with_update_x86_dvd_6050934.iso)           |\n| Romanian               | x64  | [ro_windows_8.1_pro_vl_with_update_x64_dvd_6050898.iso](https://drive.massgrave.dev/ro_windows_8.1_pro_vl_with_update_x64_dvd_6050898.iso)           |\n| Romanian               | x86  | [ro_windows_8.1_pro_vl_with_update_x86_dvd_6050936.iso](https://drive.massgrave.dev/ro_windows_8.1_pro_vl_with_update_x86_dvd_6050936.iso)           |\n| Russian                | x64  | [ru_windows_8.1_pro_vl_with_update_x64_dvd_6050899.iso](https://drive.massgrave.dev/ru_windows_8.1_pro_vl_with_update_x64_dvd_6050899.iso)           |\n| Russian                | x86  | [ru_windows_8.1_pro_vl_with_update_x86_dvd_6050937.iso](https://drive.massgrave.dev/ru_windows_8.1_pro_vl_with_update_x86_dvd_6050937.iso)           |\n| Slovak                 | x64  | [sk_windows_8.1_pro_vl_with_update_x64_dvd_6050901.iso](https://drive.massgrave.dev/sk_windows_8.1_pro_vl_with_update_x64_dvd_6050901.iso)           |\n| Slovak                 | x86  | [sk_windows_8.1_pro_vl_with_update_x86_dvd_6050939.iso](https://drive.massgrave.dev/sk_windows_8.1_pro_vl_with_update_x86_dvd_6050939.iso)           |\n| Slovenian              | x64  | [sl_windows_8.1_pro_vl_with_update_x64_dvd_6050902.iso](https://drive.massgrave.dev/sl_windows_8.1_pro_vl_with_update_x64_dvd_6050902.iso)           |\n| Slovenian              | x86  | [sl_windows_8.1_pro_vl_with_update_x86_dvd_6050940.iso](https://drive.massgrave.dev/sl_windows_8.1_pro_vl_with_update_x86_dvd_6050940.iso)           |\n| Serbian-Latin          | x64  | [sr-latn_windows_8.1_pro_vl_with_update_x64_dvd_6050900.iso](https://drive.massgrave.dev/sr-latn_windows_8.1_pro_vl_with_update_x64_dvd_6050900.iso) |\n| Serbian-Latin          | x86  | [sr-latn_windows_8.1_pro_vl_with_update_x86_dvd_6050938.iso](https://drive.massgrave.dev/sr-latn_windows_8.1_pro_vl_with_update_x86_dvd_6050938.iso) |\n| Swedish                | x64  | [sv_windows_8.1_pro_vl_with_update_x64_dvd_6050904.iso](https://drive.massgrave.dev/sv_windows_8.1_pro_vl_with_update_x64_dvd_6050904.iso)           |\n| Swedish                | x86  | [sv_windows_8.1_pro_vl_with_update_x86_dvd_6050942.iso](https://drive.massgrave.dev/sv_windows_8.1_pro_vl_with_update_x86_dvd_6050942.iso)           |\n| Thai                   | x64  | [th_windows_8.1_pro_vl_with_update_x64_dvd_6050905.iso](https://drive.massgrave.dev/th_windows_8.1_pro_vl_with_update_x64_dvd_6050905.iso)           |\n| Thai                   | x86  | [th_windows_8.1_pro_vl_with_update_x86_dvd_6050943.iso](https://drive.massgrave.dev/th_windows_8.1_pro_vl_with_update_x86_dvd_6050943.iso)           |\n| Turkish                | x64  | [tr_windows_8.1_pro_vl_with_update_x64_dvd_6050906.iso](https://drive.massgrave.dev/tr_windows_8.1_pro_vl_with_update_x64_dvd_6050906.iso)           |\n| Turkish                | x86  | [tr_windows_8.1_pro_vl_with_update_x86_dvd_6050944.iso](https://drive.massgrave.dev/tr_windows_8.1_pro_vl_with_update_x86_dvd_6050944.iso)           |\n| Chinese-Taiwan         | x64  | [tw_windows_8.1_pro_vl_with_update_x64_dvd_6050875.iso](https://drive.massgrave.dev/tw_windows_8.1_pro_vl_with_update_x64_dvd_6050875.iso)           |\n| Chinese-Taiwan         | x86  | [tw_windows_8.1_pro_vl_with_update_x86_dvd_6050912.iso](https://drive.massgrave.dev/tw_windows_8.1_pro_vl_with_update_x86_dvd_6050912.iso)           |\n| Ukrainian              | x64  | [uk_windows_8.1_pro_vl_with_update_x64_dvd_6050907.iso](https://drive.massgrave.dev/uk_windows_8.1_pro_vl_with_update_x64_dvd_6050907.iso)           |\n| Ukrainian              | x86  | [uk_windows_8.1_pro_vl_with_update_x86_dvd_6050945.iso](https://drive.massgrave.dev/uk_windows_8.1_pro_vl_with_update_x86_dvd_6050945.iso)           |\n\n== Windows 8.1 Enterprise\n\n**Windows 8.1 Enterprise**\n\n> - Build  9600.17415\n\n| Language               | Arch | Link                                                                                                                                                         |\n|:-----------------------|:-----|:-------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Arabic                 | x64  | [ar_windows_8.1_enterprise_with_update_x64_dvd_6050360.iso](https://drive.massgrave.dev/ar_windows_8.1_enterprise_with_update_x64_dvd_6050360.iso)           |\n| Arabic                 | x86  | [ar_windows_8.1_enterprise_with_update_x86_dvd_6050626.iso](https://drive.massgrave.dev/ar_windows_8.1_enterprise_with_update_x86_dvd_6050626.iso)           |\n| Bulgarian              | x64  | [bg_windows_8.1_enterprise_with_update_x64_dvd_6050367.iso](https://drive.massgrave.dev/bg_windows_8.1_enterprise_with_update_x64_dvd_6050367.iso)           |\n| Bulgarian              | x86  | [bg_windows_8.1_enterprise_with_update_x86_dvd_6050635.iso](https://drive.massgrave.dev/bg_windows_8.1_enterprise_with_update_x86_dvd_6050635.iso)           |\n| Chinese-Simplified     | x64  | [cn_windows_8.1_enterprise_with_update_x64_dvd_6050374.iso](https://drive.massgrave.dev/cn_windows_8.1_enterprise_with_update_x64_dvd_6050374.iso)           |\n| Chinese-Simplified     | x86  | [cn_windows_8.1_enterprise_with_update_x86_dvd_6050645.iso](https://drive.massgrave.dev/cn_windows_8.1_enterprise_with_update_x86_dvd_6050645.iso)           |\n| Czech                  | x64  | [cs_windows_8.1_enterprise_with_update_x64_dvd_6050393.iso](https://drive.massgrave.dev/cs_windows_8.1_enterprise_with_update_x64_dvd_6050393.iso)           |\n| Czech                  | x86  | [cs_windows_8.1_enterprise_with_update_x86_dvd_6050681.iso](https://drive.massgrave.dev/cs_windows_8.1_enterprise_with_update_x86_dvd_6050681.iso)           |\n| Danish                 | x64  | [da_windows_8.1_enterprise_with_update_x64_dvd_6050394.iso](https://drive.massgrave.dev/da_windows_8.1_enterprise_with_update_x64_dvd_6050394.iso)           |\n| Danish                 | x86  | [da_windows_8.1_enterprise_with_update_x86_dvd_6050691.iso](https://drive.massgrave.dev/da_windows_8.1_enterprise_with_update_x86_dvd_6050691.iso)           |\n| German                 | x64  | [de_windows_8.1_enterprise_with_update_x64_dvd_6050501.iso](https://drive.massgrave.dev/de_windows_8.1_enterprise_with_update_x64_dvd_6050501.iso)           |\n| German                 | x86  | [de_windows_8.1_enterprise_with_update_x86_dvd_6050753.iso](https://drive.massgrave.dev/de_windows_8.1_enterprise_with_update_x86_dvd_6050753.iso)           |\n| Greek                  | x64  | [el_windows_8.1_enterprise_with_update_x64_dvd_6050503.iso](https://drive.massgrave.dev/el_windows_8.1_enterprise_with_update_x64_dvd_6050503.iso)           |\n| Greek                  | x86  | [el_windows_8.1_enterprise_with_update_x86_dvd_6050759.iso](https://drive.massgrave.dev/el_windows_8.1_enterprise_with_update_x86_dvd_6050759.iso)           |\n| English-United Kingdom | x64  | [en-gb_windows_8.1_enterprise_with_update_x64_dvd_6054383.iso](https://drive.massgrave.dev/en-gb_windows_8.1_enterprise_with_update_x64_dvd_6054383.iso)     |\n| English-United Kingdom | x86  | [en-gb_windows_8.1_enterprise_with_update_x86_dvd_6050720.iso](https://drive.massgrave.dev/en-gb_windows_8.1_enterprise_with_update_x86_dvd_6050720.iso)     |\n| English                | x64  | [en_windows_8.1_enterprise_with_update_x64_dvd_6054382.iso](https://drive.massgrave.dev/en_windows_8.1_enterprise_with_update_x64_dvd_6054382.iso)           |\n| English                | x86  | [en_windows_8.1_enterprise_with_update_x86_dvd_6050710.iso](https://drive.massgrave.dev/en_windows_8.1_enterprise_with_update_x86_dvd_6050710.iso)           |\n| Spanish                | x64  | [es_windows_8.1_enterprise_with_update_x64_dvd_6050578.iso](https://drive.massgrave.dev/es_windows_8.1_enterprise_with_update_x64_dvd_6050578.iso)           |\n| Spanish                | x86  | [es_windows_8.1_enterprise_with_update_x86_dvd_6050864.iso](https://drive.massgrave.dev/es_windows_8.1_enterprise_with_update_x86_dvd_6050864.iso)           |\n| Estonian               | x64  | [et_windows_8.1_enterprise_with_update_x64_dvd_6054384.iso](https://drive.massgrave.dev/et_windows_8.1_enterprise_with_update_x64_dvd_6054384.iso)           |\n| Estonian               | x86  | [et_windows_8.1_enterprise_with_update_x86_dvd_6050731.iso](https://drive.massgrave.dev/et_windows_8.1_enterprise_with_update_x86_dvd_6050731.iso)           |\n| Finnish                | x64  | [fi_windows_8.1_enterprise_with_update_x64_dvd_6050497.iso](https://drive.massgrave.dev/fi_windows_8.1_enterprise_with_update_x64_dvd_6050497.iso)           |\n| Finnish                | x86  | [fi_windows_8.1_enterprise_with_update_x86_dvd_6050738.iso](https://drive.massgrave.dev/fi_windows_8.1_enterprise_with_update_x86_dvd_6050738.iso)           |\n| French                 | x64  | [fr_windows_8.1_enterprise_with_update_x64_dvd_6050499.iso](https://drive.massgrave.dev/fr_windows_8.1_enterprise_with_update_x64_dvd_6050499.iso)           |\n| French                 | x86  | [fr_windows_8.1_enterprise_with_update_x86_dvd_6050745.iso](https://drive.massgrave.dev/fr_windows_8.1_enterprise_with_update_x86_dvd_6050745.iso)           |\n| Hebrew                 | x64  | [he_windows_8.1_enterprise_with_update_x64_dvd_6050504.iso](https://drive.massgrave.dev/he_windows_8.1_enterprise_with_update_x64_dvd_6050504.iso)           |\n| Hebrew                 | x86  | [he_windows_8.1_enterprise_with_update_x86_dvd_6050766.iso](https://drive.massgrave.dev/he_windows_8.1_enterprise_with_update_x86_dvd_6050766.iso)           |\n| Chinese-Hong Kong SAR  | x64  | [hk_windows_8.1_enterprise_with_update_x64_dvd_6050380.iso](https://drive.massgrave.dev/hk_windows_8.1_enterprise_with_update_x64_dvd_6050380.iso)           |\n| Chinese-Hong Kong SAR  | x86  | [hk_windows_8.1_enterprise_with_update_x86_dvd_6050654.iso](https://drive.massgrave.dev/hk_windows_8.1_enterprise_with_update_x86_dvd_6050654.iso)           |\n| Croatian               | x64  | [hr_windows_8.1_enterprise_with_update_x64_dvd_6050391.iso](https://drive.massgrave.dev/hr_windows_8.1_enterprise_with_update_x64_dvd_6050391.iso)           |\n| Croatian               | x86  | [hr_windows_8.1_enterprise_with_update_x86_dvd_6050673.iso](https://drive.massgrave.dev/hr_windows_8.1_enterprise_with_update_x86_dvd_6050673.iso)           |\n| Hungarian              | x64  | [hu_windows_8.1_enterprise_with_update_x64_dvd_6050505.iso](https://drive.massgrave.dev/hu_windows_8.1_enterprise_with_update_x64_dvd_6050505.iso)           |\n| Hungarian              | x86  | [hu_windows_8.1_enterprise_with_update_x86_dvd_6050771.iso](https://drive.massgrave.dev/hu_windows_8.1_enterprise_with_update_x86_dvd_6050771.iso)           |\n| Italian                | x64  | [it_windows_8.1_enterprise_with_update_x64_dvd_6050507.iso](https://drive.massgrave.dev/it_windows_8.1_enterprise_with_update_x64_dvd_6050507.iso)           |\n| Italian                | x86  | [it_windows_8.1_enterprise_with_update_x86_dvd_6050777.iso](https://drive.massgrave.dev/it_windows_8.1_enterprise_with_update_x86_dvd_6050777.iso)           |\n| Japanese               | x64  | [ja_windows_8.1_enterprise_with_update_x64_dvd_6050508.iso](https://drive.massgrave.dev/ja_windows_8.1_enterprise_with_update_x64_dvd_6050508.iso)           |\n| Japanese               | x86  | [ja_windows_8.1_enterprise_with_update_x86_dvd_6050784.iso](https://drive.massgrave.dev/ja_windows_8.1_enterprise_with_update_x86_dvd_6050784.iso)           |\n| Korean                 | x64  | [ko_windows_8.1_enterprise_with_update_x64_dvd_6050509.iso](https://drive.massgrave.dev/ko_windows_8.1_enterprise_with_update_x64_dvd_6050509.iso)           |\n| Korean                 | x86  | [ko_windows_8.1_enterprise_with_update_x86_dvd_6050791.iso](https://drive.massgrave.dev/ko_windows_8.1_enterprise_with_update_x86_dvd_6050791.iso)           |\n| Lithuanian             | x64  | [lt_windows_8.1_enterprise_with_update_x64_dvd_6050511.iso](https://drive.massgrave.dev/lt_windows_8.1_enterprise_with_update_x64_dvd_6050511.iso)           |\n| Lithuanian             | x86  | [lt_windows_8.1_enterprise_with_update_x86_dvd_6050802.iso](https://drive.massgrave.dev/lt_windows_8.1_enterprise_with_update_x86_dvd_6050802.iso)           |\n| Latvian                | x64  | [lv_windows_8.1_enterprise_with_update_x64_dvd_6050510.iso](https://drive.massgrave.dev/lv_windows_8.1_enterprise_with_update_x64_dvd_6050510.iso)           |\n| Latvian                | x86  | [lv_windows_8.1_enterprise_with_update_x86_dvd_6050797.iso](https://drive.massgrave.dev/lv_windows_8.1_enterprise_with_update_x86_dvd_6050797.iso)           |\n| Norwegian-Bokmal       | x64  | [nb_windows_8.1_enterprise_with_update_x64_dvd_6050512.iso](https://drive.massgrave.dev/nb_windows_8.1_enterprise_with_update_x64_dvd_6050512.iso)           |\n| Norwegian-Bokmal       | x86  | [nb_windows_8.1_enterprise_with_update_x86_dvd_6050808.iso](https://drive.massgrave.dev/nb_windows_8.1_enterprise_with_update_x86_dvd_6050808.iso)           |\n| Dutch                  | x64  | [nl_windows_8.1_enterprise_with_update_x64_dvd_6054381.iso](https://drive.massgrave.dev/nl_windows_8.1_enterprise_with_update_x64_dvd_6054381.iso)           |\n| Dutch                  | x86  | [nl_windows_8.1_enterprise_with_update_x86_dvd_6050700.iso](https://drive.massgrave.dev/nl_windows_8.1_enterprise_with_update_x86_dvd_6050700.iso)           |\n| Polish                 | x64  | [pl_windows_8.1_enterprise_with_update_x64_dvd_6050515.iso](https://drive.massgrave.dev/pl_windows_8.1_enterprise_with_update_x64_dvd_6050515.iso)           |\n| Polish                 | x86  | [pl_windows_8.1_enterprise_with_update_x86_dvd_6050814.iso](https://drive.massgrave.dev/pl_windows_8.1_enterprise_with_update_x86_dvd_6050814.iso)           |\n| Portuguese-Portugal    | x64  | [pp_windows_8.1_enterprise_with_update_x64_dvd_6050526.iso](https://drive.massgrave.dev/pp_windows_8.1_enterprise_with_update_x64_dvd_6050526.iso)           |\n| Portuguese-Portugal    | x86  | [pp_windows_8.1_enterprise_with_update_x86_dvd_6050827.iso](https://drive.massgrave.dev/pp_windows_8.1_enterprise_with_update_x86_dvd_6050827.iso)           |\n| Portuguese-Brazil      | x64  | [pt_windows_8.1_enterprise_with_update_x64_dvd_6050521.iso](https://drive.massgrave.dev/pt_windows_8.1_enterprise_with_update_x64_dvd_6050521.iso)           |\n| Portuguese-Brazil      | x86  | [pt_windows_8.1_enterprise_with_update_x86_dvd_6050822.iso](https://drive.massgrave.dev/pt_windows_8.1_enterprise_with_update_x86_dvd_6050822.iso)           |\n| Romanian               | x64  | [ro_windows_8.1_enterprise_with_update_x64_dvd_6050534.iso](https://drive.massgrave.dev/ro_windows_8.1_enterprise_with_update_x64_dvd_6050534.iso)           |\n| Romanian               | x86  | [ro_windows_8.1_enterprise_with_update_x86_dvd_6050834.iso](https://drive.massgrave.dev/ro_windows_8.1_enterprise_with_update_x86_dvd_6050834.iso)           |\n| Russian                | x64  | [ru_windows_8.1_enterprise_with_update_x64_dvd_6050542.iso](https://drive.massgrave.dev/ru_windows_8.1_enterprise_with_update_x64_dvd_6050542.iso)           |\n| Russian                | x86  | [ru_windows_8.1_enterprise_with_update_x86_dvd_6050840.iso](https://drive.massgrave.dev/ru_windows_8.1_enterprise_with_update_x86_dvd_6050840.iso)           |\n| Slovak                 | x64  | [sk_windows_8.1_enterprise_with_update_x64_dvd_6050562.iso](https://drive.massgrave.dev/sk_windows_8.1_enterprise_with_update_x64_dvd_6050562.iso)           |\n| Slovak                 | x86  | [sk_windows_8.1_enterprise_with_update_x86_dvd_6050853.iso](https://drive.massgrave.dev/sk_windows_8.1_enterprise_with_update_x86_dvd_6050853.iso)           |\n| Slovenian              | x64  | [sl_windows_8.1_enterprise_with_update_x64_dvd_6050570.iso](https://drive.massgrave.dev/sl_windows_8.1_enterprise_with_update_x64_dvd_6050570.iso)           |\n| Slovenian              | x86  | [sl_windows_8.1_enterprise_with_update_x86_dvd_6050858.iso](https://drive.massgrave.dev/sl_windows_8.1_enterprise_with_update_x86_dvd_6050858.iso)           |\n| Serbian-Latin          | x64  | [sr-latn_windows_8.1_enterprise_with_update_x64_dvd_6050553.iso](https://drive.massgrave.dev/sr-latn_windows_8.1_enterprise_with_update_x64_dvd_6050553.iso) |\n| Serbian-Latin          | x86  | [sr-latn_windows_8.1_enterprise_with_update_x86_dvd_6050847.iso](https://drive.massgrave.dev/sr-latn_windows_8.1_enterprise_with_update_x86_dvd_6050847.iso) |\n| Swedish                | x64  | [sv_windows_8.1_enterprise_with_update_x64_dvd_6050590.iso](https://drive.massgrave.dev/sv_windows_8.1_enterprise_with_update_x64_dvd_6050590.iso)           |\n| Swedish                | x86  | [sv_windows_8.1_enterprise_with_update_x86_dvd_6050867.iso](https://drive.massgrave.dev/sv_windows_8.1_enterprise_with_update_x86_dvd_6050867.iso)           |\n| Thai                   | x64  | [th_windows_8.1_enterprise_with_update_x64_dvd_6050602.iso](https://drive.massgrave.dev/th_windows_8.1_enterprise_with_update_x64_dvd_6050602.iso)           |\n| Thai                   | x86  | [th_windows_8.1_enterprise_with_update_x86_dvd_6050868.iso](https://drive.massgrave.dev/th_windows_8.1_enterprise_with_update_x86_dvd_6050868.iso)           |\n| Turkish                | x64  | [tr_windows_8.1_enterprise_with_update_x64_dvd_6050609.iso](https://drive.massgrave.dev/tr_windows_8.1_enterprise_with_update_x64_dvd_6050609.iso)           |\n| Turkish                | x86  | [tr_windows_8.1_enterprise_with_update_x86_dvd_6050869.iso](https://drive.massgrave.dev/tr_windows_8.1_enterprise_with_update_x86_dvd_6050869.iso)           |\n| Chinese-Taiwan         | x64  | [tw_windows_8.1_enterprise_with_update_x64_dvd_6050387.iso](https://drive.massgrave.dev/tw_windows_8.1_enterprise_with_update_x64_dvd_6050387.iso)           |\n| Chinese-Taiwan         | x86  | [tw_windows_8.1_enterprise_with_update_x86_dvd_6050663.iso](https://drive.massgrave.dev/tw_windows_8.1_enterprise_with_update_x86_dvd_6050663.iso)           |\n| Ukrainian              | x64  | [uk_windows_8.1_enterprise_with_update_x64_dvd_6050618.iso](https://drive.massgrave.dev/uk_windows_8.1_enterprise_with_update_x64_dvd_6050618.iso)           |\n| Ukrainian              | x86  | [uk_windows_8.1_enterprise_with_update_x86_dvd_6050870.iso](https://drive.massgrave.dev/uk_windows_8.1_enterprise_with_update_x86_dvd_6050870.iso)           |\n\n== Windows 8.1 Embedded Pro\n\n**Windows 8.1 Embedded Pro**  \n\n> - Build  9600.17415\n\n| Language               | Arch | Link                                                                                                                                                                               |\n|:-----------------------|:-----|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Arabic                 | x64  | [ar_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052077.iso](https://drive.massgrave.dev/ar_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052077.iso)           |\n| Arabic                 | x86  | [ar_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052114.iso](https://drive.massgrave.dev/ar_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052114.iso)           |\n| Bulgarian              | x64  | [bg_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052078.iso](https://drive.massgrave.dev/bg_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052078.iso)           |\n| Bulgarian              | x86  | [bg_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052115.iso](https://drive.massgrave.dev/bg_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052115.iso)           |\n| Chinese-Simplified     | x64  | [cn_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052079.iso](https://drive.massgrave.dev/cn_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052079.iso)           |\n| Chinese-Simplified     | x86  | [cn_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052116.iso](https://drive.massgrave.dev/cn_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052116.iso)           |\n| Czech                  | x64  | [cs_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052083.iso](https://drive.massgrave.dev/cs_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052083.iso)           |\n| Czech                  | x86  | [cs_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052120.iso](https://drive.massgrave.dev/cs_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052120.iso)           |\n| Danish                 | x64  | [da_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052084.iso](https://drive.massgrave.dev/da_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052084.iso)           |\n| Danish                 | x86  | [da_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052121.iso](https://drive.massgrave.dev/da_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052121.iso)           |\n| German                 | x64  | [de_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052091.iso](https://drive.massgrave.dev/de_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052091.iso)           |\n| German                 | x86  | [de_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052128.iso](https://drive.massgrave.dev/de_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052128.iso)           |\n| Greek                  | x64  | [el_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052092.iso](https://drive.massgrave.dev/el_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052092.iso)           |\n| Greek                  | x86  | [el_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052129.iso](https://drive.massgrave.dev/el_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052129.iso)           |\n| English-United Kingdom | x64  | [en-gb_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052087.iso](https://drive.massgrave.dev/en-gb_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052087.iso)     |\n| English-United Kingdom | x86  | [en-gb_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052124.iso](https://drive.massgrave.dev/en-gb_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052124.iso)     |\n| English                | x64  | [en_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052086.iso](https://drive.massgrave.dev/en_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052086.iso)           |\n| English                | x86  | [en_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052123.iso](https://drive.massgrave.dev/en_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052123.iso)           |\n| Spanish                | x64  | [es_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052109.iso](https://drive.massgrave.dev/es_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052109.iso)           |\n| Spanish                | x86  | [es_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052146.iso](https://drive.massgrave.dev/es_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052146.iso)           |\n| Estonian               | x64  | [et_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052088.iso](https://drive.massgrave.dev/et_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052088.iso)           |\n| Estonian               | x86  | [et_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052125.iso](https://drive.massgrave.dev/et_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052125.iso)           |\n| Finnish                | x64  | [fi_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052089.iso](https://drive.massgrave.dev/fi_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052089.iso)           |\n| Finnish                | x86  | [fi_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052126.iso](https://drive.massgrave.dev/fi_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052126.iso)           |\n| French                 | x64  | [fr_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052090.iso](https://drive.massgrave.dev/fr_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052090.iso)           |\n| French                 | x86  | [fr_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052127.iso](https://drive.massgrave.dev/fr_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052127.iso)           |\n| Hebrew                 | x64  | [he_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052093.iso](https://drive.massgrave.dev/he_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052093.iso)           |\n| Hebrew                 | x86  | [he_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052130.iso](https://drive.massgrave.dev/he_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052130.iso)           |\n| Chinese-Hong Kong SAR  | x64  | [hk_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052080.iso](https://drive.massgrave.dev/hk_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052080.iso)           |\n| Chinese-Hong Kong SAR  | x86  | [hk_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052117.iso](https://drive.massgrave.dev/hk_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052117.iso)           |\n| Croatian               | x64  | [hr_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052082.iso](https://drive.massgrave.dev/hr_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052082.iso)           |\n| Croatian               | x86  | [hr_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052119.iso](https://drive.massgrave.dev/hr_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052119.iso)           |\n| Hungarian              | x64  | [hu_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052094.iso](https://drive.massgrave.dev/hu_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052094.iso)           |\n| Hungarian              | x86  | [hu_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052131.iso](https://drive.massgrave.dev/hu_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052131.iso)           |\n| Italian                | x64  | [it_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052095.iso](https://drive.massgrave.dev/it_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052095.iso)           |\n| Italian                | x86  | [it_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052132.iso](https://drive.massgrave.dev/it_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052132.iso)           |\n| Japanese               | x64  | [ja_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052096.iso](https://drive.massgrave.dev/ja_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052096.iso)           |\n| Japanese               | x86  | [ja_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052133.iso](https://drive.massgrave.dev/ja_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052133.iso)           |\n| Korean                 | x64  | [ko_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052097.iso](https://drive.massgrave.dev/ko_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052097.iso)           |\n| Korean                 | x86  | [ko_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052134.iso](https://drive.massgrave.dev/ko_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052134.iso)           |\n| Lithuanian             | x64  | [lt_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052099.iso](https://drive.massgrave.dev/lt_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052099.iso)           |\n| Lithuanian             | x86  | [lt_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052136.iso](https://drive.massgrave.dev/lt_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052136.iso)           |\n| Latvian                | x64  | [lv_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052098.iso](https://drive.massgrave.dev/lv_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052098.iso)           |\n| Latvian                | x86  | [lv_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052135.iso](https://drive.massgrave.dev/lv_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052135.iso)           |\n| Norwegian-Bokmal       | x64  | [nb_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052100.iso](https://drive.massgrave.dev/nb_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052100.iso)           |\n| Norwegian-Bokmal       | x86  | [nb_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052137.iso](https://drive.massgrave.dev/nb_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052137.iso)           |\n| Dutch                  | x64  | [nl_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052085.iso](https://drive.massgrave.dev/nl_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052085.iso)           |\n| Dutch                  | x86  | [nl_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052122.iso](https://drive.massgrave.dev/nl_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052122.iso)           |\n| Polish                 | x64  | [pl_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052101.iso](https://drive.massgrave.dev/pl_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052101.iso)           |\n| Polish                 | x86  | [pl_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052138.iso](https://drive.massgrave.dev/pl_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052138.iso)           |\n| Portuguese-Portugal    | x64  | [pp_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052103.iso](https://drive.massgrave.dev/pp_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052103.iso)           |\n| Portuguese-Portugal    | x86  | [pp_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052140.iso](https://drive.massgrave.dev/pp_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052140.iso)           |\n| Portuguese-Brazil      | x64  | [pt_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052102.iso](https://drive.massgrave.dev/pt_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052102.iso)           |\n| Portuguese-Brazil      | x86  | [pt_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052139.iso](https://drive.massgrave.dev/pt_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052139.iso)           |\n| Romanian               | x64  | [ro_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052104.iso](https://drive.massgrave.dev/ro_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052104.iso)           |\n| Romanian               | x86  | [ro_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052141.iso](https://drive.massgrave.dev/ro_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052141.iso)           |\n| Russian                | x64  | [ru_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052105.iso](https://drive.massgrave.dev/ru_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052105.iso)           |\n| Russian                | x86  | [ru_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052142.iso](https://drive.massgrave.dev/ru_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052142.iso)           |\n| Slovak                 | x64  | [sk_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052107.iso](https://drive.massgrave.dev/sk_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052107.iso)           |\n| Slovak                 | x86  | [sk_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6075523.iso](https://drive.massgrave.dev/sk_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6075523.iso)           |\n| Slovenian              | x64  | [sl_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052108.iso](https://drive.massgrave.dev/sl_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052108.iso)           |\n| Slovenian              | x86  | [sl_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052145.iso](https://drive.massgrave.dev/sl_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052145.iso)           |\n| Serbian-Latin          | x64  | [sr-latn_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052106.iso](https://drive.massgrave.dev/sr-latn_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052106.iso) |\n| Serbian-Latin          | x86  | [sr-latn_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6075508.iso](https://drive.massgrave.dev/sr-latn_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6075508.iso) |\n| Swedish                | x64  | [sv_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052110.iso](https://drive.massgrave.dev/sv_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052110.iso)           |\n| Swedish                | x86  | [sv_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052147.iso](https://drive.massgrave.dev/sv_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052147.iso)           |\n| Thai                   | x64  | [th_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052111.iso](https://drive.massgrave.dev/th_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052111.iso)           |\n| Thai                   | x86  | [th_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052148.iso](https://drive.massgrave.dev/th_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052148.iso)           |\n| Turkish                | x64  | [tr_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052112.iso](https://drive.massgrave.dev/tr_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052112.iso)           |\n| Turkish                | x86  | [tr_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052149.iso](https://drive.massgrave.dev/tr_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052149.iso)           |\n| Chinese-Taiwan         | x64  | [tw_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052081.iso](https://drive.massgrave.dev/tw_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052081.iso)           |\n| Chinese-Taiwan         | x86  | [tw_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052118.iso](https://drive.massgrave.dev/tw_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052118.iso)           |\n| Ukrainian              | x64  | [uk_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052113.iso](https://drive.massgrave.dev/uk_windows_embedded_8.1_industry_pro_with_update_x64_dvd_6052113.iso)           |\n| Ukrainian              | x86  | [uk_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052150.iso](https://drive.massgrave.dev/uk_windows_embedded_8.1_industry_pro_with_update_x86_dvd_6052150.iso)           |\n\n== Windows 8.1 Embedded Enterprise\n\n**Windows 8.1 Embedded Enterprise**  \n\n> - Build  9600.17415\n\n| Language               | Arch | Link                                                                                                                                                                                             |\n|:-----------------------|:-----|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Arabic                 | x64  | [ar_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052151.iso](https://drive.massgrave.dev/ar_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052151.iso)           |\n| Arabic                 | x86  | [ar_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052211.iso](https://drive.massgrave.dev/ar_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052211.iso)           |\n| Bulgarian              | x64  | [bg_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052152.iso](https://drive.massgrave.dev/bg_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052152.iso)           |\n| Bulgarian              | x86  | [bg_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052212.iso](https://drive.massgrave.dev/bg_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052212.iso)           |\n| Chinese-Simplified     | x64  | [cn_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052153.iso](https://drive.massgrave.dev/cn_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052153.iso)           |\n| Chinese-Simplified     | x86  | [cn_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052218.iso](https://drive.massgrave.dev/cn_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052218.iso)           |\n| Czech                  | x64  | [cs_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052157.iso](https://drive.massgrave.dev/cs_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052157.iso)           |\n| Czech                  | x86  | [cs_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052240.iso](https://drive.massgrave.dev/cs_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052240.iso)           |\n| Danish                 | x64  | [da_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052158.iso](https://drive.massgrave.dev/da_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052158.iso)           |\n| Danish                 | x86  | [da_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6075580.iso](https://drive.massgrave.dev/da_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6075580.iso)           |\n| German                 | x64  | [de_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6075540.iso](https://drive.massgrave.dev/de_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6075540.iso)           |\n| German                 | x86  | [de_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052258.iso](https://drive.massgrave.dev/de_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052258.iso)           |\n| Greek                  | x64  | [el_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6068418.iso](https://drive.massgrave.dev/el_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6068418.iso)           |\n| Greek                  | x86  | [el_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6068419.iso](https://drive.massgrave.dev/el_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6068419.iso)           |\n| English-United Kingdom | x64  | [en-gb_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052165.iso](https://drive.massgrave.dev/en-gb_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052165.iso)     |\n| English-United Kingdom | x86  | [en-gb_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052254.iso](https://drive.massgrave.dev/en-gb_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052254.iso)     |\n| English                | x64  | [en_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052160.iso](https://drive.massgrave.dev/en_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052160.iso)           |\n| English                | x86  | [en_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052252.iso](https://drive.massgrave.dev/en_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052252.iso)           |\n| Spanish                | x64  | [es_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052206.iso](https://drive.massgrave.dev/es_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052206.iso)           |\n| Spanish                | x86  | [es_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052318.iso](https://drive.massgrave.dev/es_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052318.iso)           |\n| Estonian               | x64  | [et_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052172.iso](https://drive.massgrave.dev/et_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052172.iso)           |\n| Estonian               | x86  | [et_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052255.iso](https://drive.massgrave.dev/et_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052255.iso)           |\n| Finnish                | x64  | [fi_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052177.iso](https://drive.massgrave.dev/fi_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052177.iso)           |\n| Finnish                | x86  | [fi_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052256.iso](https://drive.massgrave.dev/fi_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052256.iso)           |\n| French                 | x64  | [fr_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052183.iso](https://drive.massgrave.dev/fr_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052183.iso)           |\n| French                 | x86  | [fr_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052257.iso](https://drive.massgrave.dev/fr_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052257.iso)           |\n| Hebrew                 | x64  | [he_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052189.iso](https://drive.massgrave.dev/he_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052189.iso)           |\n| Hebrew                 | x86  | [he_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052259.iso](https://drive.massgrave.dev/he_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052259.iso)           |\n| Chinese-Hong Kong SAR  | x64  | [hk_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052154.iso](https://drive.massgrave.dev/hk_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052154.iso)           |\n| Chinese-Hong Kong SAR  | x86  | [hk_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052223.iso](https://drive.massgrave.dev/hk_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052223.iso)           |\n| Croatian               | x64  | [hr_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052156.iso](https://drive.massgrave.dev/hr_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052156.iso)           |\n| Croatian               | x86  | [hr_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052238.iso](https://drive.massgrave.dev/hr_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052238.iso)           |\n| Hungarian              | x64  | [hu_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6075554.iso](https://drive.massgrave.dev/hu_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6075554.iso)           |\n| Hungarian              | x86  | [hu_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052260.iso](https://drive.massgrave.dev/hu_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052260.iso)           |\n| Italian                | x64  | [it_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052191.iso](https://drive.massgrave.dev/it_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052191.iso)           |\n| Italian                | x86  | [it_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052265.iso](https://drive.massgrave.dev/it_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052265.iso)           |\n| Japanese               | x64  | [ja_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052192.iso](https://drive.massgrave.dev/ja_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052192.iso)           |\n| Japanese               | x86  | [ja_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052271.iso](https://drive.massgrave.dev/ja_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052271.iso)           |\n| Korean                 | x64  | [ko_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052193.iso](https://drive.massgrave.dev/ko_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052193.iso)           |\n| Korean                 | x86  | [ko_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052275.iso](https://drive.massgrave.dev/ko_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052275.iso)           |\n| Lithuanian             | x64  | [lt_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052195.iso](https://drive.massgrave.dev/lt_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052195.iso)           |\n| Lithuanian             | x86  | [lt_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052285.iso](https://drive.massgrave.dev/lt_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052285.iso)           |\n| Latvian                | x64  | [lv_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052194.iso](https://drive.massgrave.dev/lv_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052194.iso)           |\n| Latvian                | x86  | [lv_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052280.iso](https://drive.massgrave.dev/lv_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052280.iso)           |\n| Norwegian-Bokmal       | x64  | [nb_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052196.iso](https://drive.massgrave.dev/nb_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052196.iso)           |\n| Norwegian-Bokmal       | x86  | [nb_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052289.iso](https://drive.massgrave.dev/nb_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052289.iso)           |\n| Dutch                  | x64  | [nl_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052159.iso](https://drive.massgrave.dev/nl_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052159.iso)           |\n| Dutch                  | x86  | [nl_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052247.iso](https://drive.massgrave.dev/nl_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052247.iso)           |\n| Polish                 | x64  | [pl_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052197.iso](https://drive.massgrave.dev/pl_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052197.iso)           |\n| Polish                 | x86  | [pl_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052294.iso](https://drive.massgrave.dev/pl_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052294.iso)           |\n| Portuguese-Portugal    | x64  | [pp_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052199.iso](https://drive.massgrave.dev/pp_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052199.iso)           |\n| Portuguese-Portugal    | x86  | [pp_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052298.iso](https://drive.massgrave.dev/pp_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052298.iso)           |\n| Portuguese-Brazil      | x64  | [pt_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052198.iso](https://drive.massgrave.dev/pt_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052198.iso)           |\n| Portuguese-Brazil      | x86  | [pt_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052297.iso](https://drive.massgrave.dev/pt_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052297.iso)           |\n| Romanian               | x64  | [ro_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052200.iso](https://drive.massgrave.dev/ro_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052200.iso)           |\n| Romanian               | x86  | [ro_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052299.iso](https://drive.massgrave.dev/ro_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052299.iso)           |\n| Russian                | x64  | [ru_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052201.iso](https://drive.massgrave.dev/ru_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052201.iso)           |\n| Russian                | x86  | [ru_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052300.iso](https://drive.massgrave.dev/ru_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052300.iso)           |\n| Slovak                 | x64  | [sk_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052203.iso](https://drive.massgrave.dev/sk_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052203.iso)           |\n| Slovak                 | x86  | [sk_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052308.iso](https://drive.massgrave.dev/sk_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052308.iso)           |\n| Slovenian              | x64  | [sl_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052204.iso](https://drive.massgrave.dev/sl_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052204.iso)           |\n| Slovenian              | x86  | [sl_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052314.iso](https://drive.massgrave.dev/sl_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052314.iso)           |\n| Serbian-Latin          | x64  | [sr-latn_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052202.iso](https://drive.massgrave.dev/sr-latn_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052202.iso) |\n| Serbian-Latin          | x86  | [sr-latn_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052303.iso](https://drive.massgrave.dev/sr-latn_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052303.iso) |\n| Swedish                | x64  | [sv_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052207.iso](https://drive.massgrave.dev/sv_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052207.iso)           |\n| Swedish                | x86  | [sv_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052324.iso](https://drive.massgrave.dev/sv_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052324.iso)           |\n| Thai                   | x64  | [th_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052208.iso](https://drive.massgrave.dev/th_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052208.iso)           |\n| Thai                   | x86  | [th_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052326.iso](https://drive.massgrave.dev/th_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052326.iso)           |\n| Turkish                | x64  | [tr_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6075568.iso](https://drive.massgrave.dev/tr_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6075568.iso)           |\n| Turkish                | x86  | [tr_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052327.iso](https://drive.massgrave.dev/tr_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052327.iso)           |\n| Chinese-Taiwan         | x64  | [tw_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052155.iso](https://drive.massgrave.dev/tw_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052155.iso)           |\n| Chinese-Taiwan         | x86  | [tw_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052231.iso](https://drive.massgrave.dev/tw_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052231.iso)           |\n| Ukrainian              | x64  | [uk_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052210.iso](https://drive.massgrave.dev/uk_windows_embedded_8.1_industry_enterprise_with_update_x64_dvd_6052210.iso)           |\n| Ukrainian              | x86  | [uk_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052328.iso](https://drive.massgrave.dev/uk_windows_embedded_8.1_industry_enterprise_with_update_x86_dvd_6052328.iso)           |\n\n== Other Versions\n\n**Other Versions**\n\n- [archive.isdn/artifacts][1]\n- [os.click][2]\n- [files.rg-adguard.net/language/a7c44b76e808][3]\n- [MVS Bot][4]\n\n:::\n\n[MSDL]: https://msdl.gravesoft.dev/#52\n[1]: https://archive.isdn.network/artifacts/\n[2]: https://os.click/\n[3]: https://files.rg-adguard.net/language/1c50237d-03ef-617b-41f0-a7c44b76e808\n[4]: https://discord.gg/FajfGaH3nD\n[genuine]: https://nirevil.github.io/windows-activation/wa/genuine-installation-media#verify-authenticity-of-files\n"
  },
  {
    "path": "docs/wa/windows_arm_links.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'Windows ARM64 Download'\ndescription: 'All download links lead to genuine files only'\ndate: 2025-04-19\neditLink: true\n---\n\n# Windows ARM64 Download Links\n\n<br/>\n\n::: info All download links lead to **`genuine files`**\n\n- [**FAQ**](./genuine-installation-media#faq)\n\n- [**How to ensure that these files are genuine?**][genuine]\n\n> You need an ARM64 processor (CPU) to install Windows ARM64 architecture OS.\n\n:::\n\n<br/>\n\n## Windows 11 24H2\n\n:::tabs\n\n== Windows 11 Consumer 24H2 🤍\n\n**Windows 11 Consumer 24H2**\n\n> - Build 26100.1742\n\n**Download Links:** [MSDL 🤍][1] / [Microsoft][2]\n\n== Windows 11 IoT Enterprise 24H2\n\n**Windows 11 IoT Enterprise 24H2**\n\n> **Not LTSC**\n> - Build 26100.1742\n>\n> **These ISOs contain below editions:**  \n> - Windows 11 Enterprise\n> - Windows 11 IoT Enterprise\n> - Windows 11 IoT Enterprise Subscription\n> \n> ARM64 version for IoT Enterprise ISO is available only in English language.\n\n| Language | Arch  | Link                                                                                                                                                                   |\n|:---------|:------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| English  | ARM64 | [en-us_windows_11_iot_enterprise_version_24h2_arm64_dvd_e9155a10.iso](https://drive.massgrave.dev/en-us_windows_11_iot_enterprise_version_24h2_arm64_dvd_e9155a10.iso) |\n\n\n<br/>\n\n## Note for IoT Enterprise \n\n::: danger **`(GAC) Not  LTSC`**\n\n### When installing Windows IoT Enterprise (GAC):  \n- If your system has an **OEM license** in the motherboard (Pro or higher),\n- And the key used in Setup is **OEM**\n- then Windows Setup will apply the OEM key from the motherboard during the final stage.\n\n### What this means?  \n- You can install **IoT Enterprise** with its features (including relaxed hardware requirements on Windows 11 24H2, etc.).\n- After installation, the system will show Pro edition, not IoT Enterprise.\n- This happens because IoT Enterprise (GAC) is distributed only with an OEM key.\n- This behavior is normal and cannot be avoided.\n\n### Fix  \nAfter installation, switch the edition by running the following in command prompt as admin.\n\n```shell\nslmgr.vbs /ipk XQQYW-NFFMW-XJPBH-K8732-CKFFD\n```\n\n== Windows 11 IoT Enterprise LTSC 2024\n\n**Windows 11 IoT Enterprise LTSC 2024**\n\n> - Build 26100.1742\n> \n> **These ISOs contain below editions:**  \n> - Windows 11 Enterprise LTSC\n> - Windows 11 IoT Enterprise LTSC\n> - Windows 11 IoT Enterprise l Subscription LTSC\n> \n> ARM64 version for LTSC is available only in English language.\n\n\n| Language | Arch  | Link                                                                                                                                                             |\n|:---------|:------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| English  | ARM64 | [en-us_windows_11_iot_enterprise_ltsc_2024_arm64_dvd_ec517836.iso](https://drive.massgrave.dev/en-us_windows_11_iot_enterprise_ltsc_2024_arm64_dvd_ec517836.iso) |\n\n\n== Other Version\n\n**Other Versions**\n\n- Download the [official Microsoft ESD file][3]\n- And [ESD>ISO Converter][4] by [abbodi][5],\n- Put the ESD file beside `decrypt.cmd` and run that script.\n- It will create the ISO file.\n- This process is the same as how the official MCT tool creates Windows 10 and 11 ISOs.\n\n:::\n\n<br/> \n\n## Windows 10\n\n:::tabs\n\n== Windows 10 Business 22H2\n\n**Windows 10 Business 22H2**\n\n> - Build 19045.5854\n\n| Language       | Arch  | Link                                                                                                                                                                                           |\n|:---------------|:------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Arabic         | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Arabic_Pro_Ent_EDU_N_MLF_X24-05064.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Arabic_Pro_Ent_EDU_N_MLF_X24-05064.ISO) |\n| Brazilian      | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Brazilian_Pro_Ent_EDU_N_MLF_X24-05065.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Brazilian_Pro_Ent_EDU_N_MLF_X24-05065.ISO) |\n| Bulgarian      | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Bulgarian_Pro_Ent_EDU_N_MLF_X24-05066.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Bulgarian_Pro_Ent_EDU_N_MLF_X24-05066.ISO) |\n| ChnSimp        | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_ChnSimp_Pro_Ent_EDU_N_MLF_X24-05067.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_ChnSimp_Pro_Ent_EDU_N_MLF_X24-05067.ISO) |\n| ChnTrad        | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_ChnTrad_Pro_Ent_EDU_N_MLF_X24-05068.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_ChnTrad_Pro_Ent_EDU_N_MLF_X24-05068.ISO) |\n| Croatian       | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Croatian_Pro_Ent_EDU_N_MLF_X24-05069.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Croatian_Pro_Ent_EDU_N_MLF_X24-05069.ISO) |\n| Czech          | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Czech_Pro_Ent_EDU_N_MLF_X24-05070.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Czech_Pro_Ent_EDU_N_MLF_X24-05070.ISO) |\n| Danish         | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Danish_Pro_Ent_EDU_N_MLF_X24-05071.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Danish_Pro_Ent_EDU_N_MLF_X24-05071.ISO) |\n| Dutch          | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Dutch_Pro_Ent_EDU_N_MLF_X24-05072.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Dutch_Pro_Ent_EDU_N_MLF_X24-05072.ISO) |\n| Eng Intl       | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Eng_Intl_Pro_Ent_EDU_N_MLF_X24-05073.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Eng_Intl_Pro_Ent_EDU_N_MLF_X24-05073.ISO) |\n| English        | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_English_Pro_Ent_EDU_N_MLF_X24-05074.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_English_Pro_Ent_EDU_N_MLF_X24-05074.ISO) |\n| Estonian       | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Estonian_Pro_Ent_EDU_N_MLF_X24-05075.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Estonian_Pro_Ent_EDU_N_MLF_X24-05075.ISO) |\n| Finnish        | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Finnish_Pro_Ent_EDU_N_MLF_X24-05076.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Finnish_Pro_Ent_EDU_N_MLF_X24-05076.ISO) |\n| FrenchCanadian | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_FrenchCanadian_Pro_Ent_EDU_N_MLF_X24-05078.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_FrenchCanadian_Pro_Ent_EDU_N_MLF_X24-05078.ISO) |\n| French         | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_French_Pro_Ent_EDU_N_MLF_X24-05077.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_French_Pro_Ent_EDU_N_MLF_X24-05077.ISO) |\n| German         | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_German_Pro_Ent_EDU_N_MLF_X24-05079.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_German_Pro_Ent_EDU_N_MLF_X24-05079.ISO) |\n| Greek          | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Greek_Pro_Ent_EDU_N_MLF_X24-05080.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Greek_Pro_Ent_EDU_N_MLF_X24-05080.ISO) |\n| Hebrew         | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Hebrew_Pro_Ent_EDU_N_MLF_X24-05081.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Hebrew_Pro_Ent_EDU_N_MLF_X24-05081.ISO) |\n| Hungarian      | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Hungarian_Pro_Ent_EDU_N_MLF_X24-05082.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Hungarian_Pro_Ent_EDU_N_MLF_X24-05082.ISO) |\n| Italian        | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Italian_Pro_Ent_EDU_N_MLF_X24-05083.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Italian_Pro_Ent_EDU_N_MLF_X24-05083.ISO) |\n| Japanese       | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Japanese_Pro_Ent_EDU_N_MLF_X24-05084.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Japanese_Pro_Ent_EDU_N_MLF_X24-05084.ISO) |\n| Korean         | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Korean_Pro_Ent_EDU_N_MLF_X24-05085.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Korean_Pro_Ent_EDU_N_MLF_X24-05085.ISO) |\n| Latvian        | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Latvian_Pro_Ent_EDU_N_MLF_X24-05086.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Latvian_Pro_Ent_EDU_N_MLF_X24-05086.ISO) |\n| Lithuanian     | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Lithuanian_Pro_Ent_EDU_N_MLF_X24-05087.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Lithuanian_Pro_Ent_EDU_N_MLF_X24-05087.ISO) |\n| Norwegian      | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Norwegian_Pro_Ent_EDU_N_MLF_X24-05088.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Norwegian_Pro_Ent_EDU_N_MLF_X24-05088.ISO) |\n| Polish         | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Polish_Pro_Ent_EDU_N_MLF_X24-05089.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Polish_Pro_Ent_EDU_N_MLF_X24-05089.ISO) |\n| Portuguese     | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Portuguese_Pro_Ent_EDU_N_MLF_X24-05090.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Portuguese_Pro_Ent_EDU_N_MLF_X24-05090.ISO) |\n| Romanian       | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Romanian_Pro_Ent_EDU_N_MLF_X24-05091.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Romanian_Pro_Ent_EDU_N_MLF_X24-05091.ISO) |\n| Russian        | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Russian_Pro_Ent_EDU_N_MLF_X24-05092.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Russian_Pro_Ent_EDU_N_MLF_X24-05092.ISO) |\n| SerbianLatin   | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Serbian_Latin_Pro_Ent_EDU_N_MLF_X24-05093.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Serbian_Latin_Pro_Ent_EDU_N_MLF_X24-05093.ISO) |\n| Slovak         | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Slovak_Pro_Ent_EDU_N_MLF_X24-05094.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Slovak_Pro_Ent_EDU_N_MLF_X24-05094.ISO) |\n| Slovenian      | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Slovenian_Pro_Ent_EDU_N_MLF_X24-05095.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Slovenian_Pro_Ent_EDU_N_MLF_X24-05095.ISO) |\n| SpanishLatam   | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Spanish_Latam_Pro_Ent_EDU_N_MLF_X24-05096.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Spanish_Latam_Pro_Ent_EDU_N_MLF_X24-05096.ISO) |\n| Spanish        | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Spanish_Pro_Ent_EDU_N_MLF_X24-05097.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Spanish_Pro_Ent_EDU_N_MLF_X24-05097.ISO) |\n| Swedish        | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Swedish_Pro_Ent_EDU_N_MLF_X24-05098.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Swedish_Pro_Ent_EDU_N_MLF_X24-05098.ISO) |\n| Thai           | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Thai_Pro_Ent_EDU_N_MLF_X24-05099.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Thai_Pro_Ent_EDU_N_MLF_X24-05099.ISO) |\n| Turkish        | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Turkish_Pro_Ent_EDU_N_MLF_X24-05100.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Turkish_Pro_Ent_EDU_N_MLF_X24-05100.ISO) |\n| Ukrainian      | ARM64 | [SW_DVD9_Win_Pro_10_22H2.31_Arm64_Ukrainian_Pro_Ent_EDU_N_MLF_X24-05101.ISO](https://drive.massgrave.dev/SW_DVD9_Win_Pro_10_22H2.31_Arm64_Ukrainian_Pro_Ent_EDU_N_MLF_X24-05101.ISO) |\n\n\n== Windows 10 IoT Enterprise 22H2\n\n**Windows 10 IoT Enterprise 22H2**\n\n> - **Not LTSC**\n> - Build 19045.2006\n> \n> ARM64 version for IoT Enterprise ISO is available only in English language.\n\n| Language | Arch  | Link                                                                                                                                                                   |\n|:---------|:------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| English  | ARM64 | [en-us_windows_10_iot_enterprise_version_22h2_arm64_dvd_39566b6b.iso](https://drive.massgrave.dev/en-us_windows_10_iot_enterprise_version_22h2_arm64_dvd_39566b6b.iso) |\n\n\n== Windows 10 IoT Enterprise LTSC 2021\n\n**Windows 10 IoT Enterprise LTSC 2021**\n\n> - Build 19044.1288\n> \n> ARM64 version for LTSC is available only in English language.\n\n\n| Language | Arch  | Link                                                                                                                                                             |\n|:---------|:------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| English  | ARM64 | [en-us_windows_10_iot_enterprise_ltsc_2021_arm64_dvd_e8d4fc46.iso](https://drive.massgrave.dev/en-us_windows_10_iot_enterprise_ltsc_2021_arm64_dvd_e8d4fc46.iso) |\n\n<br/>\n\n## Note for IoT Enterprise \n\n::: danger **`(GAC) Not  LTSC`**\n\n### When installing Windows IoT Enterprise (GAC):  \n- If your system has an **OEM license** in the motherboard (Pro or higher),\n- And the key used in Setup is **OEM**\n- then Windows Setup will apply the OEM key from the motherboard during the final stage.\n\n### What this means?  \n- You can install **IoT Enterprise** with its features (including relaxed hardware requirements on Windows 11 24H2, etc.).\n- After installation, the system will show Pro edition, not IoT Enterprise.\n- This happens because IoT Enterprise (GAC) is distributed only with an OEM key.\n- This behavior is normal and cannot be avoided.\n\n### Fix  \nAfter installation, switch the edition by running the following in command prompt as admin.\n\n```shell\nslmgr.vbs /ipk XQQYW-NFFMW-XJPBH-K8732-CKFFD\n```\n\n== Other Versions\n\n**Other Versions**\n\n- Download an [official Microsoft ESD file][6]\n- And [ESD>ISO Converter][7] by [abbodi][8],\n- Put the ESD file beside `decrypt.cmd` and run that script.\n- It will create the ISO file.\n- This process is the same as how the official MCT tool creates Windows 10 and 11 ISOs.\n\n:::\n\n[1]: https://msdl.gravesoft.dev/#3131\n[2]: https://www.microsoft.com/en-us/software-download/windows11arm64\n[3]: https://worproject.com/esd\n[4]: https://github.com/abbodi1406/WHD/raw/master/scripts/esd-decrypter-wimlib-65.7z\n[5]: https://forums.mydigitallife.net/threads/abbodi1406s-batch-scripts-repo.74197/\n[6]: https://worproject.com/esd\n[7]: https://github.com/abbodi1406/WHD/raw/master/scripts/esd-decrypter-wimlib-65.7z\n[8]: https://forums.mydigitallife.net/threads/abbodi1406s-batch-scripts-repo.74197/\n[genuine]: https://nirevil.github.io/windows-activation/wa/genuine-installation-media#verify-authenticity-of-files\n"
  },
  {
    "path": "docs/wa/windows_ltsc_links.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'Windows LTSC Download'\ndescription: 'All download links lead to genuine files only'\ndate: 2025-04-19\neditLink: true\n---\n\n# Windows LTSC Download\n\n::: info All download links lead to **`genuine files`**\n\n- [**FAQ**](./genuine-installation-media#faq)\n\n- [**How to ensure that these files are genuine?**][genuine]\n\nMicrosoft provides Evaluation ISO public [links](https://www.microsoft.com/en-us/evalcenter) for Windows LTSC releases, but as the name states, those ISOs are for evaluation purposes and can not be activated for more than 90 days. Below listed ISOs are full version that can be activated.\n\n:::\n\n<br/> \n\n## What is LTSC, and is it the right choice for you?\n\n::: info **INFO**\n\n::: details Click here\n\nIf you're uncertain, avoid LTSC and choose the general availability channel and its editions (Home, Pro, Enterprise, etc).\n\n<hr/><br/> \n\n### Microsoft releases Windows 10 and 11 through two servicing channels.\n\n\n1. **GAC** — General Availability Channel  \n\n- It is intended for both general and enterprise customers.\n- Edition examples include options such as Home, Pro, and Enterprise.\n- Maximum support on the same build is usually [2 years][2] for consumers and [3 years][3] for the enterprise. After that, you need to install feature updates.\n\n- This is the main servicing channel and other software and games usually follow this channel's life cycle to provide support.\n\n\n2. **LTSC** — Long-Term Servicing Channel\n\n- It is designed for devices where functionality and features must remain constant over time, such as medical systems, industrial controllers, and air traffic control devices.\n- Examples of editions include: Enterprise LTSC and IoT Enterprise LTSC.\n- Maximum support on the same build is usually [5 years][4] for LTSC and [10 years][5] for the IoT LTSC.\n- This is not the main servicing channel and other software and games usually don't follow this channel's life cycle. For example, browsers and games might not provide support for 10 years on same build.\n- It lacks most of the Store (UWP) apps.\n\n<hr/><br/>\n\n### Reasons to use LTSC\n\n- You don't like annual Windows feature upgrades.\n- You don't like preinstalled Store (UWP) apps as well.\n- You want longer update support for Windows 10.\n\n### Reasons to avoid using LTSC\n\n- As stated above, many games and software might not support LTSC once that same build has reached the end of life in GAC.\n- Games might not work out of the box and you will manually need to install store and Xbox apps.\n- New hardware might not be fully supported by a 2-3 year-old LTSC build (A new version of LTSC is released every 3 years).\n- You might miss new features added in GAC that aren't available in LTSC.\n\n### Common misconceptions\n\n- LTSC is fast.  \n  It's not fast, although there might be a bit more RAM available because of no store apps running in the background, and you can achieve the same result in GAC channel editions by [turning off][6] background apps and startup apps.\n- It's more privacy-oriented.  \n  No, [telemetry options][7] are the same as GAC Enterprise.\n\n:::\n\n## Microsoft store app installation on LTSC\n\n::: details Click here for info\n\nApplicable on Windows 11 LTSC 2024 and Windows 10 LTSC 2021\n\n### Microsoft Store\n\nLTSC editions do not come with store apps pre-installed. To install them, follow the steps below.\n\n- Make sure the Internet is connected.\n- Open Powershell as admin and enter,  \n\n```shell\nwsreset -i\n```\n  \n- Wait for a notification to appear that the store app is installed, it may take a few minutes.\n\nOn Windows 10 2021 LTSC, you might encounter an error indicating that cliprenew.exe cannot be found. This error can be safely ignored.\n\n### App Installer\n\nThis app is very useful; it includes WinGet, enabling easy installation of .appx packages. After installing the Store app, install the App installer from this URL:   \n[apps.microsoft.com/detail/9nb][8]\n\n### It didn't work. What should I do next?\n\nYou can install them using the package provided by abbodi1406:  \nhttps://github.com/stdin82/htfx/releases/tag/v0.0.24\n\n:::\n\n## Differences between IoT and Non-IoT Windows Enterprise LTSC\n\n::: details Click here for info\n\n:::tabs\n\n== Windows 11 LTSC 2024\n\n**Windows 11 LTSC 2024**\n\n| Features                               | Enterprise LTSC | IoT Enterprise LTSC / IoT Enterprise Subscription LTSC                                                                                                                                                                                    |\n|:---------------------------------------|:----------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| **TPM / Secure boot / UEFI / 4GB RAM** | All required    | [Not Required](https://learn.microsoft.com/en-us/windows/iot/iot-enterprise/Hardware/System_Requirements?tabs=Windows11LTSC#optional-minimum-requirements) 🎉 <br /> Also not required by [IoT Enterprise 24H2 (Non-LTSC)](./windows_11_links) |\n| **Automatic Device Encryption**        | Enabled         | Disabled                                                                                                                                                                                                                                  |\n| **Update Support**                     | 5 Years         | 10 Years                                                                                                                                                                                                                                  |\n| **Reserved Storage Feature**           | Enabled         | Disabled                                                                                                                                                                                                                                  |\n| **Digital License (HWID)**             | Not supported   | Supported                                                                                                                                                                                                                                 |\n| **2 Simultaneous RDP Sessions**        | No              | Yes                                                                                                                                                                                                                                       |\n\n\n- IoT Enterprise LTSC is a winner.\n- The only difference between IoT Enterprise LTSC and IoT Enterprise Subscription LTSC is that the subscription edition supports a subscription license.\n- You can change the editions to each other (IoT and Non-IoT Windows Enterprise LTSC) only by inserting the corresponding edition key on the activation page in the Windows settings.\n\n|                          |                |                               |\n|--------------------------|----------------|-------------------------------|\n| IoT Enterprise LTSC 2024 | IoTEnterpriseS | KBN8V-HFGQ4-MGXVD-347P6-PDQGT |\n| Enterprise LTSC 2024     | EnterpriseS    | M7XTQ-FN8P6-TTKYV-9D4CC-J462D |\n\n\n== Windows 10 LTSC 2021\n\n**Windows 10 LTSC 2021**\n\n\n| Features                     | Enterprise LTSC                                                                                       | IoT Enterprise LTSC                                                                                        |\n|:-----------------------------|:------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------|\n| **Update Support**           | [5 Years (till 2027)](https://learn.microsoft.com/en-us/lifecycle/products/windows-10-enterprise-ltsc-2021) | [10 Years (till 2032)](https://learn.microsoft.com/en-us/lifecycle/products/windows-10-iot-enterprise-ltsc-2021) |\n| **Reserved Storage Feature** | Enabled                                                                                               | Disabled                                                                                                   |\n| **Digital License (HWID)**   | Not supported                                                                                         | Supported                                                                                                  |\n| **KMS License**              | Supported                                                                                             | Support added after the update 19044.2788                                                                  |\n| **$OEM$ Folder Support**     | Yes                                                                                                   | No [(More Info)](./oem-folder)                                                                            |\n\n\n- IoT Enterprise LTSC is a winner.\n- You can change the editions to each other (IoT and Non-IoT Windows Enterprise LTSC) only by inserting the corresponding edition key on the activation page in the Windows settings.\n\n|                          |                |                               |\n|--------------------------|----------------|-------------------------------|\n| IoT Enterprise LTSC 2021 | IoTEnterpriseS | QPM6N-7J2WJ-P88HH-P3YRH-YY74H |\n| Enterprise LTSC 2021     | EnterpriseS    | M7XTQ-FN8P6-TTKYV-9D4CC-J462D |\n\n== Old Versions\n\n**Old Versions**\n\nThere are ISOs available for IoT Enterprise LTSC/LTSB 2019, 2016, and 2015, but they only have the Non-IoT LTSC OEM key (generic, not-activated) preinstalled. \n\nThe installed key is the only difference. There is no real, different IoT edition available for these versions.\n\n::: \n\n## How to upgrade from non-LTSC to LTSC edition while keeping files and apps?\n\n::: details Click here for info\n\nYou might want to check [**Windows 10 EOL guide**](./windows10_eol)\n\n::: \n\n## How to clean install Windows 11 IoT Enterprise LTSC 2024 in Non-English language?\n\n::: details Click here for info\n\nIoT LTSC edition ISOs are available in English language only. However, you can follow the below steps to clean install it.\n\n- Download the non-IoT LTSC 2024 ISO in the desired language from the section below.\n- Follow [**PID.txt method**](./clean_install_windows#windows-11-on-unsupported-hardware) to install IoT version from scratch\n\nAlternatively, You can install Non-IoT LTSC in another language and later install IoT LTSC 2024 key\n\n```shell\nKBN8V-HFGQ4-MGXVD-347P6-PDQGT\n```\n\nin activation page in Windows settings to change the edition.\n\n::: \n\n## How to clean install Windows 10 IoT Enterprise LTSC 2021 in Non-English language?\n\n::: details Click here for info\n\nIoT LTSC edition ISOs are available in English language only.\n\nWhen installing Windows 11 IoT Enterprise LTSC 2024 from scratch, one advantage is its relaxed hardware requirements. However, there isn't much benefit to doing the same with the 2021 IoT version, since you can easily change the Windows edition later. Additionally, the PID.txt method for installing the virtual edition from scratch is only applicable to Windows 11 24H2 and later versions. While there are other methods to install from scratch, they are more complex, and the results do not justify the effort.\n\n### Our recommendation is as follows:\n\n- Download the non-IoT LTSC 2021 ISO in the desired language from the section below.\n- Install Windows using this [**clean installation guide**](./clean_install_windows).\n- After installing Windows, to change the edition, enter the IoT LTSC 2021 key on the activation page in the Windows settings:\n\n```powershell\nQPM6N-7J2WJ-P88HH-P3YRH-YY74H\n```\n\n::: \n\n<hr/><br/> \n\n# Download Links\n\n:::tabs\n\n== Windows 11 LTSC 2024\n\n**Windows 11 IoT Enterprise LTSC 2024**\n\n> - Build 26100.1742\n> \n> These ISOs contain below editions:  \n> - Windows 11 Enterprise LTSC\n> - Windows 11 IoT Enterprise LTSC\n> - Windows 11 IoT Enterprise Subscription LTSC\n\n| Language | Arch | Link                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |\n|:---------|:-----|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| English  | x64  | [X23-81951_26100.1742.240906-0331.ge_release_svc_refresh_CLIENT_ENTERPRISES_OEM_x64FRE_en-us.iso](https://oemsoc.download.prss.microsoft.com/dbazure/X23-81951_26100.1742.240906-0331.ge_release_svc_refresh_CLIENT_ENTERPRISES_OEM_x64FRE_en-us.iso_640de540-87c4-427f-be87-e6d53a3a60b4?t=2c3b664b-b119-4088-9db1-ccff72c6d22e&P1=102816950270&P2=601&P3=2&P4=OC448onxqdmdUsBUApAiE8pj1FZ%2bEPTU3%2bC6Quq29MVwMyyDUtR%2fsbiy7RdVoZOHaZRndvzeOOnIwJZ2x3%2bmP6YK9cjJSP41Lvs0SulF4SVyL5C0DdDmiWqh2QW%2bcDPj2Xp%2bMrI9NOeElSBS5kkOWP8Eiyf2VkkQFM3g5vIk3HJVvu5sWo6pFKpFv4lML%2bHaIiTSuwbPMs5xwEQTfScuTKfigNlUZPdHRMp1B3uKLgIA3r0IbRpZgHYMXEwXQ%2fSLMdDNQthpqQvz1PThVkx7ObD55CXgt0GNSAWRfjdURWb8ywWk1gT7ozAgpP%2fKNm56U5nh33WZSuMZIuO1SBM2vw%3d%3d) <br /> = <br /> [en-us_windows_11_iot_enterprise_ltsc_2024_x64_dvd_f6b14814.iso](https://drive.massgrave.dev/en-us_windows_11_iot_enterprise_ltsc_2024_x64_dvd_f6b14814.iso) <br /> <br /> Both files are identical, only name is different. <br /> 1st link is from the official OEM portal, and 2nd file is taken from MVS and hosted on massgrave. <br /> Note: With 1st link file you need to rename extension to .iso |\n\n<hr/><br/>\n\n**Windows 11 Enterprise LTSC 2024**\n\n> - Build 26100.1742  \n\n| Language               | Arch | Link                                                                                                                                                           |\n|:-----------------------|:-----|:---------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Arabic                 | x64  | [ar-sa_windows_11_enterprise_ltsc_2024_x64_dvd_8012f159.iso](https://drive.massgrave.dev/ar-sa_windows_11_enterprise_ltsc_2024_x64_dvd_8012f159.iso)           |\n| Bulgarian              | x64  | [bg-bg_windows_11_enterprise_ltsc_2024_x64_dvd_2778f4e8.iso](https://drive.massgrave.dev/bg-bg_windows_11_enterprise_ltsc_2024_x64_dvd_2778f4e8.iso)           |\n| Czech                  | x64  | [cs-cz_windows_11_enterprise_ltsc_2024_x64_dvd_d4ef05f2.iso](https://drive.massgrave.dev/cs-cz_windows_11_enterprise_ltsc_2024_x64_dvd_d4ef05f2.iso)           |\n| Danish                 | x64  | [da-dk_windows_11_enterprise_ltsc_2024_x64_dvd_c231c267.iso](https://drive.massgrave.dev/da-dk_windows_11_enterprise_ltsc_2024_x64_dvd_c231c267.iso)           |\n| German                 | x64  | [de-de_windows_11_enterprise_ltsc_2024_x64_dvd_4f136f69.iso](https://drive.massgrave.dev/de-de_windows_11_enterprise_ltsc_2024_x64_dvd_4f136f69.iso)           |\n| Greek                  | x64  | [el-gr_windows_11_enterprise_ltsc_2024_x64_dvd_54eaabb2.iso](https://drive.massgrave.dev/el-gr_windows_11_enterprise_ltsc_2024_x64_dvd_54eaabb2.iso)           |\n| English-United Kingdom | x64  | [en-gb_windows_11_enterprise_ltsc_2024_x64_dvd_e2137661.iso](https://drive.massgrave.dev/en-gb_windows_11_enterprise_ltsc_2024_x64_dvd_e2137661.iso)           |\n| English                | x64  | [en-us_windows_11_enterprise_ltsc_2024_x64_dvd_965cfb00.iso](https://drive.massgrave.dev/en-us_windows_11_enterprise_ltsc_2024_x64_dvd_965cfb00.iso)           |\n| Spanish                | x64  | [es-es_windows_11_enterprise_ltsc_2024_x64_dvd_77392d61.iso](https://drive.massgrave.dev/es-es_windows_11_enterprise_ltsc_2024_x64_dvd_77392d61.iso)           |\n| Spanish-Mexico         | x64  | [es-mx_windows_11_enterprise_ltsc_2024_x64_dvd_3310c094.iso](https://drive.massgrave.dev/es-mx_windows_11_enterprise_ltsc_2024_x64_dvd_3310c094.iso)           |\n| Estonian               | x64  | [et-ee_windows_11_enterprise_ltsc_2024_x64_dvd_2dbd4bfe.iso](https://drive.massgrave.dev/et-ee_windows_11_enterprise_ltsc_2024_x64_dvd_2dbd4bfe.iso)           |\n| Finnish                | x64  | [fi-fi_windows_11_enterprise_ltsc_2024_x64_dvd_998f5df6.iso](https://drive.massgrave.dev/fi-fi_windows_11_enterprise_ltsc_2024_x64_dvd_998f5df6.iso)           |\n| French-Canada          | x64  | [fr-ca_windows_11_enterprise_ltsc_2024_x64_dvd_78732953.iso](https://drive.massgrave.dev/fr-ca_windows_11_enterprise_ltsc_2024_x64_dvd_78732953.iso)           |\n| French                 | x64  | [fr-fr_windows_11_enterprise_ltsc_2024_x64_dvd_d66e386e.iso](https://drive.massgrave.dev/fr-fr_windows_11_enterprise_ltsc_2024_x64_dvd_d66e386e.iso)           |\n| Hebrew                 | x64  | [he-il_windows_11_enterprise_ltsc_2024_x64_dvd_fae050ec.iso](https://drive.massgrave.dev/he-il_windows_11_enterprise_ltsc_2024_x64_dvd_fae050ec.iso)           |\n| Croatian               | x64  | [hr-hr_windows_11_enterprise_ltsc_2024_x64_dvd_e3594411.iso](https://drive.massgrave.dev/hr-hr_windows_11_enterprise_ltsc_2024_x64_dvd_e3594411.iso)           |\n| Hungarian              | x64  | [hu-hu_windows_11_enterprise_ltsc_2024_x64_dvd_8fea6034.iso](https://drive.massgrave.dev/hu-hu_windows_11_enterprise_ltsc_2024_x64_dvd_8fea6034.iso)           |\n| Italian                | x64  | [it-it_windows_11_enterprise_ltsc_2024_x64_dvd_1e8cabb6.iso](https://drive.massgrave.dev/it-it_windows_11_enterprise_ltsc_2024_x64_dvd_1e8cabb6.iso)           |\n| Japanese               | x64  | [ja-jp_windows_11_enterprise_ltsc_2024_x64_dvd_e59ad418.iso](https://drive.massgrave.dev/ja-jp_windows_11_enterprise_ltsc_2024_x64_dvd_e59ad418.iso)           |\n| Korean                 | x64  | [ko-kr_windows_11_enterprise_ltsc_2024_x64_dvd_b6b6eb18.iso](https://drive.massgrave.dev/ko-kr_windows_11_enterprise_ltsc_2024_x64_dvd_b6b6eb18.iso)           |\n| Lithuanian             | x64  | [lt-lt_windows_11_enterprise_ltsc_2024_x64_dvd_145479e9.iso](https://drive.massgrave.dev/lt-lt_windows_11_enterprise_ltsc_2024_x64_dvd_145479e9.iso)           |\n| Latvian                | x64  | [lv-lv_windows_11_enterprise_ltsc_2024_x64_dvd_e0ebc53d.iso](https://drive.massgrave.dev/lv-lv_windows_11_enterprise_ltsc_2024_x64_dvd_e0ebc53d.iso)           |\n| Norwegian-Bokmal       | x64  | [nb-no_windows_11_enterprise_ltsc_2024_x64_dvd_d41eeb48.iso](https://drive.massgrave.dev/nb-no_windows_11_enterprise_ltsc_2024_x64_dvd_d41eeb48.iso)           |\n| Dutch-Netherlands      | x64  | [nl-nl_windows_11_enterprise_ltsc_2024_x64_dvd_e3063aab.iso](https://drive.massgrave.dev/nl-nl_windows_11_enterprise_ltsc_2024_x64_dvd_e3063aab.iso)           |\n| Polish                 | x64  | [pl-pl_windows_11_enterprise_ltsc_2024_x64_dvd_e00807a1.iso](https://drive.massgrave.dev/pl-pl_windows_11_enterprise_ltsc_2024_x64_dvd_e00807a1.iso)           |\n| Portuguese-Brazil      | x64  | [pt-br_windows_11_enterprise_ltsc_2024_x64_dvd_2bb6b75b.iso](https://drive.massgrave.dev/pt-br_windows_11_enterprise_ltsc_2024_x64_dvd_2bb6b75b.iso)           |\n| Portuguese-Portugal    | x64  | [pt-pt_windows_11_enterprise_ltsc_2024_x64_dvd_2f34bd6b.iso](https://drive.massgrave.dev/pt-pt_windows_11_enterprise_ltsc_2024_x64_dvd_2f34bd6b.iso)           |\n| Romanian               | x64  | [ro-ro_windows_11_enterprise_ltsc_2024_x64_dvd_2eadb4df.iso](https://drive.massgrave.dev/ro-ro_windows_11_enterprise_ltsc_2024_x64_dvd_2eadb4df.iso)           |\n| Russian                | x64  | [ru-ru_windows_11_enterprise_ltsc_2024_x64_dvd_f9af5773.iso](https://drive.massgrave.dev/ru-ru_windows_11_enterprise_ltsc_2024_x64_dvd_f9af5773.iso)           |\n| Slovak                 | x64  | [sk-sk_windows_11_enterprise_ltsc_2024_x64_dvd_03b916e7.iso](https://drive.massgrave.dev/sk-sk_windows_11_enterprise_ltsc_2024_x64_dvd_03b916e7.iso)           |\n| Slovenian              | x64  | [sl-si_windows_11_enterprise_ltsc_2024_x64_dvd_310b3a76.iso](https://drive.massgrave.dev/sl-si_windows_11_enterprise_ltsc_2024_x64_dvd_310b3a76.iso)           |\n| Serbian-Latin          | x64  | [sr-latn-rs_windows_11_enterprise_ltsc_2024_x64_dvd_3dfa5da5.iso](https://drive.massgrave.dev/sr-latn-rs_windows_11_enterprise_ltsc_2024_x64_dvd_3dfa5da5.iso) |\n| Swedish                | x64  | [sv-se_windows_11_enterprise_ltsc_2024_x64_dvd_191cf991.iso](https://drive.massgrave.dev/sv-se_windows_11_enterprise_ltsc_2024_x64_dvd_191cf991.iso)           |\n| Thai                   | x64  | [th-th_windows_11_enterprise_ltsc_2024_x64_dvd_47ce2c8a.iso](https://drive.massgrave.dev/th-th_windows_11_enterprise_ltsc_2024_x64_dvd_47ce2c8a.iso)           |\n| Turkish                | x64  | [tr-tr_windows_11_enterprise_ltsc_2024_x64_dvd_27bdab81.iso](https://drive.massgrave.dev/tr-tr_windows_11_enterprise_ltsc_2024_x64_dvd_27bdab81.iso)           |\n| Ukranian               | x64  | [uk-ua_windows_11_enterprise_ltsc_2024_x64_dvd_b3f00872.iso](https://drive.massgrave.dev/uk-ua_windows_11_enterprise_ltsc_2024_x64_dvd_b3f00872.iso)           |\n| Chinese-Simplified     | x64  | [zh-cn_windows_11_enterprise_ltsc_2024_x64_dvd_cff9cd2d.iso](https://drive.massgrave.dev/zh-cn_windows_11_enterprise_ltsc_2024_x64_dvd_cff9cd2d.iso)           |\n| Chinese-Traditional         | x64  | [zh-tw_windows_11_enterprise_ltsc_2024_x64_dvd_6287d84d.iso](https://drive.massgrave.dev/zh-tw_windows_11_enterprise_ltsc_2024_x64_dvd_6287d84d.iso)           |\n\n\n== Windows 10 LTSC 2021\n\n**Windows 10 IoT Enterprise LTSC 2021**\n\n> - Build 19044.1288\n> \n> **These ISOs contain below editions:**  \n> - Windows 10 Enterprise LTSC\n> - Windows 10 IoT Enterprise LTSC   \n\n| Language | Arch | Link                                                                                                                                                         |\n|:---------|:-----|:-------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| English  | x64  | [en-us_windows_10_iot_enterprise_ltsc_2021_x64_dvd_257ad90f.iso](https://drive.massgrave.dev/en-us_windows_10_iot_enterprise_ltsc_2021_x64_dvd_257ad90f.iso) |\n\n<hr/><br/>\n\n**Windows 10 Enterprise LTSC 2021**\n\n> - Build 19044.1288  \n\n| Language               | Arch | Link                                                                                                                                                           |\n|:-----------------------|:-----|:---------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Arabic                 | x64  | [ar-sa_windows_10_enterprise_ltsc_2021_x64_dvd_60bc2a7a.iso](https://drive.massgrave.dev/ar-sa_windows_10_enterprise_ltsc_2021_x64_dvd_60bc2a7a.iso)           |\n| Arabic                 | x86  | [ar-sa_windows_10_enterprise_ltsc_2021_x86_dvd_69e2349b.iso](https://drive.massgrave.dev/ar-sa_windows_10_enterprise_ltsc_2021_x86_dvd_69e2349b.iso)           |\n| Bulgarian              | x64  | [bg-bg_windows_10_enterprise_ltsc_2021_x64_dvd_b0887275.iso](https://drive.massgrave.dev/bg-bg_windows_10_enterprise_ltsc_2021_x64_dvd_b0887275.iso)           |\n| Bulgarian              | x86  | [bg-bg_windows_10_enterprise_ltsc_2021_x86_dvd_8beb279f.iso](https://drive.massgrave.dev/bg-bg_windows_10_enterprise_ltsc_2021_x86_dvd_8beb279f.iso)           |\n| Czech                  | x64  | [cs-cz_windows_10_enterprise_ltsc_2021_x64_dvd_d624c653.iso](https://drive.massgrave.dev/cs-cz_windows_10_enterprise_ltsc_2021_x64_dvd_d624c653.iso)           |\n| Czech                  | x86  | [cs-cz_windows_10_enterprise_ltsc_2021_x86_dvd_2afa1afb.iso](https://drive.massgrave.dev/cs-cz_windows_10_enterprise_ltsc_2021_x86_dvd_2afa1afb.iso)           |\n| Danish                 | x64  | [da-dk_windows_10_enterprise_ltsc_2021_x64_dvd_6ec511bb.iso](https://drive.massgrave.dev/da-dk_windows_10_enterprise_ltsc_2021_x64_dvd_6ec511bb.iso)           |\n| Danish                 | x86  | [da-dk_windows_10_enterprise_ltsc_2021_x86_dvd_de761707.iso](https://drive.massgrave.dev/da-dk_windows_10_enterprise_ltsc_2021_x86_dvd_de761707.iso)           |\n| German                 | x64  | [de-de_windows_10_enterprise_ltsc_2021_x64_dvd_71796d33.iso](https://drive.massgrave.dev/de-de_windows_10_enterprise_ltsc_2021_x64_dvd_71796d33.iso)           |\n| German                 | x86  | [de-de_windows_10_enterprise_ltsc_2021_x86_dvd_6317aaff.iso](https://drive.massgrave.dev/de-de_windows_10_enterprise_ltsc_2021_x86_dvd_6317aaff.iso)           |\n| Greek                  | x64  | [el-gr_windows_10_enterprise_ltsc_2021_x64_dvd_c83eab34.iso](https://drive.massgrave.dev/el-gr_windows_10_enterprise_ltsc_2021_x64_dvd_c83eab34.iso)           |\n| Greek                  | x86  | [el-gr_windows_10_enterprise_ltsc_2021_x86_dvd_c7850ec0.iso](https://drive.massgrave.dev/el-gr_windows_10_enterprise_ltsc_2021_x86_dvd_c7850ec0.iso)           |\n| English-United Kingdom | x64  | [en-gb_windows_10_enterprise_ltsc_2021_x64_dvd_7fe51fe8.iso](https://drive.massgrave.dev/en-gb_windows_10_enterprise_ltsc_2021_x64_dvd_7fe51fe8.iso)           |\n| English-United Kingdom | x86  | [en-gb_windows_10_enterprise_ltsc_2021_x86_dvd_baa2b09f.iso](https://drive.massgrave.dev/en-gb_windows_10_enterprise_ltsc_2021_x86_dvd_baa2b09f.iso)           |\n| English                | x64  | [en-us_windows_10_enterprise_ltsc_2021_x64_dvd_d289cf96.iso](https://drive.massgrave.dev/en-us_windows_10_enterprise_ltsc_2021_x64_dvd_d289cf96.iso)           |\n| English                | x86  | [en-us_windows_10_enterprise_ltsc_2021_x86_dvd_9f4aa95f.iso](https://drive.massgrave.dev/en-us_windows_10_enterprise_ltsc_2021_x86_dvd_9f4aa95f.iso)           |\n| Spanish                | x64  | [es-es_windows_10_enterprise_ltsc_2021_x64_dvd_51d721ea.iso](https://drive.massgrave.dev/es-es_windows_10_enterprise_ltsc_2021_x64_dvd_51d721ea.iso)           |\n| Spanish                | x86  | [es-es_windows_10_enterprise_ltsc_2021_x86_dvd_243c83eb.iso](https://drive.massgrave.dev/es-es_windows_10_enterprise_ltsc_2021_x86_dvd_243c83eb.iso)           |\n| Spanish-Mexico         | x64  | [es-mx_windows_10_enterprise_ltsc_2021_x64_dvd_f6aaf384.iso](https://drive.massgrave.dev/es-mx_windows_10_enterprise_ltsc_2021_x64_dvd_f6aaf384.iso)           |\n| Spanish-Mexico         | x86  | [es-mx_windows_10_enterprise_ltsc_2021_x86_dvd_93a5debe.iso](https://drive.massgrave.dev/es-mx_windows_10_enterprise_ltsc_2021_x86_dvd_93a5debe.iso)           |\n| Estonian               | x64  | [et-ee_windows_10_enterprise_ltsc_2021_x64_dvd_012a5c50.iso](https://drive.massgrave.dev/et-ee_windows_10_enterprise_ltsc_2021_x64_dvd_012a5c50.iso)           |\n| Estonian               | x86  | [et-ee_windows_10_enterprise_ltsc_2021_x86_dvd_292aa316.iso](https://drive.massgrave.dev/et-ee_windows_10_enterprise_ltsc_2021_x86_dvd_292aa316.iso)           |\n| Finnish                | x64  | [fi-fi_windows_10_enterprise_ltsc_2021_x64_dvd_551582d9.iso](https://drive.massgrave.dev/fi-fi_windows_10_enterprise_ltsc_2021_x64_dvd_551582d9.iso)           |\n| Finnish                | x86  | [fi-fi_windows_10_enterprise_ltsc_2021_x86_dvd_15e0eeb9.iso](https://drive.massgrave.dev/fi-fi_windows_10_enterprise_ltsc_2021_x86_dvd_15e0eeb9.iso)           |\n| French-Canada          | x64  | [fr-ca_windows_10_enterprise_ltsc_2021_x64_dvd_2770e649.iso](https://drive.massgrave.dev/fr-ca_windows_10_enterprise_ltsc_2021_x64_dvd_2770e649.iso)           |\n| French-Canada          | x86  | [fr-ca_windows_10_enterprise_ltsc_2021_x86_dvd_5237961d.iso](https://drive.massgrave.dev/fr-ca_windows_10_enterprise_ltsc_2021_x86_dvd_5237961d.iso)           |\n| French                 | x64  | [fr-fr_windows_10_enterprise_ltsc_2021_x64_dvd_bda01eb0.iso](https://drive.massgrave.dev/fr-fr_windows_10_enterprise_ltsc_2021_x64_dvd_bda01eb0.iso)           |\n| French                 | x86  | [fr-fr_windows_10_enterprise_ltsc_2021_x86_dvd_53f189f9.iso](https://drive.massgrave.dev/fr-fr_windows_10_enterprise_ltsc_2021_x86_dvd_53f189f9.iso)           |\n| Hebrew                 | x64  | [he-il_windows_10_enterprise_ltsc_2021_x64_dvd_3a55ecd6.iso](https://drive.massgrave.dev/he-il_windows_10_enterprise_ltsc_2021_x64_dvd_3a55ecd6.iso)           |\n| Hebrew                 | x86  | [he-il_windows_10_enterprise_ltsc_2021_x86_dvd_3b560f44.iso](https://drive.massgrave.dev/he-il_windows_10_enterprise_ltsc_2021_x86_dvd_3b560f44.iso)           |\n| Croatian               | x64  | [hr-hr_windows_10_enterprise_ltsc_2021_x64_dvd_f5085b75.iso](https://drive.massgrave.dev/hr-hr_windows_10_enterprise_ltsc_2021_x64_dvd_f5085b75.iso)           |\n| Croatian               | x86  | [hr-hr_windows_10_enterprise_ltsc_2021_x86_dvd_bd52180e.iso](https://drive.massgrave.dev/hr-hr_windows_10_enterprise_ltsc_2021_x86_dvd_bd52180e.iso)           |\n| Hungarian              | x64  | [hu-hu_windows_10_enterprise_ltsc_2021_x64_dvd_d541ddb3.iso](https://drive.massgrave.dev/hu-hu_windows_10_enterprise_ltsc_2021_x64_dvd_d541ddb3.iso)           |\n| Hungarian              | x86  | [hu-hu_windows_10_enterprise_ltsc_2021_x86_dvd_a8cb11dd.iso](https://drive.massgrave.dev/hu-hu_windows_10_enterprise_ltsc_2021_x86_dvd_a8cb11dd.iso)           |\n| Italian                | x64  | [it-it_windows_10_enterprise_ltsc_2021_x64_dvd_0c1aa034.iso](https://drive.massgrave.dev/it-it_windows_10_enterprise_ltsc_2021_x64_dvd_0c1aa034.iso)           |\n| Italian                | x86  | [it-it_windows_10_enterprise_ltsc_2021_x86_dvd_46e4f7e1.iso](https://drive.massgrave.dev/it-it_windows_10_enterprise_ltsc_2021_x86_dvd_46e4f7e1.iso)           |\n| Japanese               | x64  | [ja-jp_windows_10_enterprise_ltsc_2021_x64_dvd_ef58c6a1.iso](https://drive.massgrave.dev/ja-jp_windows_10_enterprise_ltsc_2021_x64_dvd_ef58c6a1.iso)           |\n| Japanese               | x86  | [ja-jp_windows_10_enterprise_ltsc_2021_x86_dvd_ac893196.iso](https://drive.massgrave.dev/ja-jp_windows_10_enterprise_ltsc_2021_x86_dvd_ac893196.iso)           |\n| Korean                 | x64  | [ko-kr_windows_10_enterprise_ltsc_2021_x64_dvd_6d26f398.iso](https://drive.massgrave.dev/ko-kr_windows_10_enterprise_ltsc_2021_x64_dvd_6d26f398.iso)           |\n| Korean                 | x86  | [ko-kr_windows_10_enterprise_ltsc_2021_x86_dvd_dff1cb4e.iso](https://drive.massgrave.dev/ko-kr_windows_10_enterprise_ltsc_2021_x86_dvd_dff1cb4e.iso)           |\n| Lithuanian             | x64  | [lt-lt_windows_10_enterprise_ltsc_2021_x64_dvd_9ffbbd5b.iso](https://drive.massgrave.dev/lt-lt_windows_10_enterprise_ltsc_2021_x64_dvd_9ffbbd5b.iso)           |\n| Lithuanian             | x86  | [lt-lt_windows_10_enterprise_ltsc_2021_x86_dvd_fefed947.iso](https://drive.massgrave.dev/lt-lt_windows_10_enterprise_ltsc_2021_x86_dvd_fefed947.iso)           |\n| Latvian                | x64  | [lv-lv_windows_10_enterprise_ltsc_2021_x64_dvd_6c89d2e0.iso](https://drive.massgrave.dev/lv-lv_windows_10_enterprise_ltsc_2021_x64_dvd_6c89d2e0.iso)           |\n| Latvian                | x86  | [lv-lv_windows_10_enterprise_ltsc_2021_x86_dvd_41041cfd.iso](https://drive.massgrave.dev/lv-lv_windows_10_enterprise_ltsc_2021_x86_dvd_41041cfd.iso)           |\n| Norwegian-Bokmal       | x64  | [nb-no_windows_10_enterprise_ltsc_2021_x64_dvd_c65c51a5.iso](https://drive.massgrave.dev/nb-no_windows_10_enterprise_ltsc_2021_x64_dvd_c65c51a5.iso)           |\n| Norwegian-Bokmal       | x86  | [nb-no_windows_10_enterprise_ltsc_2021_x86_dvd_6f625462.iso](https://drive.massgrave.dev/nb-no_windows_10_enterprise_ltsc_2021_x86_dvd_6f625462.iso)           |\n| Dutch-Netherlands      | x64  | [nl-nl_windows_10_enterprise_ltsc_2021_x64_dvd_88f53466.iso](https://drive.massgrave.dev/nl-nl_windows_10_enterprise_ltsc_2021_x64_dvd_88f53466.iso)           |\n| Dutch-Netherlands      | x86  | [nl-nl_windows_10_enterprise_ltsc_2021_x86_dvd_231b3321.iso](https://drive.massgrave.dev/nl-nl_windows_10_enterprise_ltsc_2021_x86_dvd_231b3321.iso)           |\n| Polish                 | x64  | [pl-pl_windows_10_enterprise_ltsc_2021_x64_dvd_eff40776.iso](https://drive.massgrave.dev/pl-pl_windows_10_enterprise_ltsc_2021_x64_dvd_eff40776.iso)           |\n| Polish                 | x86  | [pl-pl_windows_10_enterprise_ltsc_2021_x86_dvd_4b0aed09.iso](https://drive.massgrave.dev/pl-pl_windows_10_enterprise_ltsc_2021_x86_dvd_4b0aed09.iso)           |\n| Portuguese-Brazil      | x64  | [pt-br_windows_10_enterprise_ltsc_2021_x64_dvd_f318268e.iso](https://drive.massgrave.dev/pt-br_windows_10_enterprise_ltsc_2021_x64_dvd_f318268e.iso)           |\n| Portuguese-Brazil      | x86  | [pt-br_windows_10_enterprise_ltsc_2021_x86_dvd_d4aea182.iso](https://drive.massgrave.dev/pt-br_windows_10_enterprise_ltsc_2021_x86_dvd_d4aea182.iso)           |\n| Portuguese-Portugal    | x64  | [pt-pt_windows_10_enterprise_ltsc_2021_x64_dvd_f2e9b6a0.iso](https://drive.massgrave.dev/pt-pt_windows_10_enterprise_ltsc_2021_x64_dvd_f2e9b6a0.iso)           |\n| Portuguese-Portugal    | x86  | [pt-pt_windows_10_enterprise_ltsc_2021_x86_dvd_2ed38b71.iso](https://drive.massgrave.dev/pt-pt_windows_10_enterprise_ltsc_2021_x86_dvd_2ed38b71.iso)           |\n| Romanian               | x64  | [ro-ro_windows_10_enterprise_ltsc_2021_x64_dvd_ae2284d6.iso](https://drive.massgrave.dev/ro-ro_windows_10_enterprise_ltsc_2021_x64_dvd_ae2284d6.iso)           |\n| Romanian               | x86  | [ro-ro_windows_10_enterprise_ltsc_2021_x86_dvd_e68b65bc.iso](https://drive.massgrave.dev/ro-ro_windows_10_enterprise_ltsc_2021_x86_dvd_e68b65bc.iso)           |\n| Russian                | x64  | [ru-ru_windows_10_enterprise_ltsc_2021_x64_dvd_5044a1e7.iso](https://drive.massgrave.dev/ru-ru_windows_10_enterprise_ltsc_2021_x64_dvd_5044a1e7.iso)           |\n| Russian                | x86  | [ru-ru_windows_10_enterprise_ltsc_2021_x86_dvd_cdf355eb.iso](https://drive.massgrave.dev/ru-ru_windows_10_enterprise_ltsc_2021_x86_dvd_cdf355eb.iso)           |\n| Slovak                 | x64  | [sk-sk_windows_10_enterprise_ltsc_2021_x64_dvd_d6c64c5f.iso](https://drive.massgrave.dev/sk-sk_windows_10_enterprise_ltsc_2021_x64_dvd_d6c64c5f.iso)           |\n| Slovak                 | x86  | [sk-sk_windows_10_enterprise_ltsc_2021_x86_dvd_10ed79ca.iso](https://drive.massgrave.dev/sk-sk_windows_10_enterprise_ltsc_2021_x86_dvd_10ed79ca.iso)           |\n| Slovenian              | x64  | [sl-si_windows_10_enterprise_ltsc_2021_x64_dvd_ec090386.iso](https://drive.massgrave.dev/sl-si_windows_10_enterprise_ltsc_2021_x64_dvd_ec090386.iso)           |\n| Slovenian              | x86  | [sl-si_windows_10_enterprise_ltsc_2021_x86_dvd_5e0e48a8.iso](https://drive.massgrave.dev/sl-si_windows_10_enterprise_ltsc_2021_x86_dvd_5e0e48a8.iso)           |\n| Serbian-Latin          | x64  | [sr-latn-rs_windows_10_enterprise_ltsc_2021_x64_dvd_2d2f8815.iso](https://drive.massgrave.dev/sr-latn-rs_windows_10_enterprise_ltsc_2021_x64_dvd_2d2f8815.iso) |\n| Serbian-Latin          | x86  | [sr-latn-rs_windows_10_enterprise_ltsc_2021_x86_dvd_248407e2.iso](https://drive.massgrave.dev/sr-latn-rs_windows_10_enterprise_ltsc_2021_x86_dvd_248407e2.iso) |\n| Swedish                | x64  | [sv-se_windows_10_enterprise_ltsc_2021_x64_dvd_9a28bb6b.iso](https://drive.massgrave.dev/sv-se_windows_10_enterprise_ltsc_2021_x64_dvd_9a28bb6b.iso)           |\n| Swedish                | x86  | [sv-se_windows_10_enterprise_ltsc_2021_x86_dvd_9081ef5b.iso](https://drive.massgrave.dev/sv-se_windows_10_enterprise_ltsc_2021_x86_dvd_9081ef5b.iso)           |\n| Thai                   | x64  | [th-th_windows_10_enterprise_ltsc_2021_x64_dvd_b7ed34d6.iso](https://drive.massgrave.dev/th-th_windows_10_enterprise_ltsc_2021_x64_dvd_b7ed34d6.iso)           |\n| Thai                   | x86  | [th-th_windows_10_enterprise_ltsc_2021_x86_dvd_df412841.iso](https://drive.massgrave.dev/th-th_windows_10_enterprise_ltsc_2021_x86_dvd_df412841.iso)           |\n| Turkish                | x64  | [tr-tr_windows_10_enterprise_ltsc_2021_x64_dvd_e55b1896.iso](https://drive.massgrave.dev/tr-tr_windows_10_enterprise_ltsc_2021_x64_dvd_e55b1896.iso)           |\n| Turkish                | x86  | [tr-tr_windows_10_enterprise_ltsc_2021_x86_dvd_36fc55f4.iso](https://drive.massgrave.dev/tr-tr_windows_10_enterprise_ltsc_2021_x86_dvd_36fc55f4.iso)           |\n| Ukranian               | x64  | [uk-ua_windows_10_enterprise_ltsc_2021_x64_dvd_816da3c3.iso](https://drive.massgrave.dev/uk-ua_windows_10_enterprise_ltsc_2021_x64_dvd_816da3c3.iso)           |\n| Ukranian               | x86  | [uk-ua_windows_10_enterprise_ltsc_2021_x86_dvd_aa372ed6.iso](https://drive.massgrave.dev/uk-ua_windows_10_enterprise_ltsc_2021_x86_dvd_aa372ed6.iso)           |\n| Chinese-Simplified     | x64  | [zh-cn_windows_10_enterprise_ltsc_2021_x64_dvd_033b7312.iso](https://drive.massgrave.dev/zh-cn_windows_10_enterprise_ltsc_2021_x64_dvd_033b7312.iso)           |\n| Chinese-Simplified     | x86  | [zh-cn_windows_10_enterprise_ltsc_2021_x86_dvd_30600d9c.iso](https://drive.massgrave.dev/zh-cn_windows_10_enterprise_ltsc_2021_x86_dvd_30600d9c.iso)           |\n| Chinese-Traditional         | x64  | [zh-tw_windows_10_enterprise_ltsc_2021_x64_dvd_80dba877.iso](https://drive.massgrave.dev/zh-tw_windows_10_enterprise_ltsc_2021_x64_dvd_80dba877.iso)           |\n| Chinese-Traditional         | x86  | [zh-tw_windows_10_enterprise_ltsc_2021_x86_dvd_03be1c20.iso](https://drive.massgrave.dev/zh-tw_windows_10_enterprise_ltsc_2021_x86_dvd_03be1c20.iso)           |\n\n\n== Windows 10 LTSC 2019\n\n**Windows 10 IoT Enterprise LTSC 2019**\n\n> - Build - 17763.107\n> \n> - It doesn't have the actual Iot EnterpriseS edition,\n> - it's just EnterpriseS with OEM key (generic, not-activated) installed.  \n\n| Language | Arch | Link                                                                                                                                                   |\n|:---------|:-----|:-------------------------------------------------------------------------------------------------------------------------------------------------------|\n| English  | x64  | [en_windows_10_iot_enterprise_ltsc_2019_x64_dvd_a1aa819f.iso](https://drive.massgrave.dev/en_windows_10_iot_enterprise_ltsc_2019_x64_dvd_a1aa819f.iso) |\n| English  | x86  | [en_windows_10_iot_enterprise_ltsc_2019_x86_dvd_2255a237.iso](https://drive.massgrave.dev/en_windows_10_iot_enterprise_ltsc_2019_x86_dvd_2255a237.iso) |\n\n<hr/><br/>\n\n**Windows 10 Enterprise LTSC 2019**\n\n> - Build 17763.316\n\n| Language               | Arch | Link                                                                                                                                                 |\n|:-----------------------|:-----|:-----------------------------------------------------------------------------------------------------------------------------------------------------|\n| Arabic                 | x64  | [ar_windows_10_enterprise_ltsc_2019_x64_dvd_a1f42c56.iso](https://drive.massgrave.dev/ar_windows_10_enterprise_ltsc_2019_x64_dvd_a1f42c56.iso)       |\n| Arabic                 | x86  | [ar_windows_10_enterprise_ltsc_2019_x86_dvd_8faea15c.iso](https://drive.massgrave.dev/ar_windows_10_enterprise_ltsc_2019_x86_dvd_8faea15c.iso)       |\n| Bulgarian              | x64  | [bg_windows_10_enterprise_ltsc_2019_x64_dvd_65c7e0c3.iso](https://drive.massgrave.dev/bg_windows_10_enterprise_ltsc_2019_x64_dvd_65c7e0c3.iso)       |\n| Bulgarian              | x86  | [bg_windows_10_enterprise_ltsc_2019_x86_dvd_73c555b7.iso](https://drive.massgrave.dev/bg_windows_10_enterprise_ltsc_2019_x86_dvd_73c555b7.iso)       |\n| Chinese-Simplified     | x64  | [cn_windows_10_enterprise_ltsc_2019_x64_dvd_9c09ff24.iso](https://drive.massgrave.dev/cn_windows_10_enterprise_ltsc_2019_x64_dvd_9c09ff24.iso)       |\n| Chinese-Simplified     | x86  | [cn_windows_10_enterprise_ltsc_2019_x86_dvd_1814dbab.iso](https://drive.massgrave.dev/cn_windows_10_enterprise_ltsc_2019_x86_dvd_1814dbab.iso)       |\n| Czech                  | x64  | [cs_windows_10_enterprise_ltsc_2019_x64_dvd_b15b47cf.iso](https://drive.massgrave.dev/cs_windows_10_enterprise_ltsc_2019_x64_dvd_b15b47cf.iso)       |\n| Czech                  | x86  | [cs_windows_10_enterprise_ltsc_2019_x86_dvd_b3b102f8.iso](https://drive.massgrave.dev/cs_windows_10_enterprise_ltsc_2019_x86_dvd_b3b102f8.iso)       |\n| Chinese-Traditional    | x64  | [ct_windows_10_enterprise_ltsc_2019_x64_dvd_c301154f.iso](https://drive.massgrave.dev/ct_windows_10_enterprise_ltsc_2019_x64_dvd_c301154f.iso)       |\n| Chinese-Traditional    | x86  | [ct_windows_10_enterprise_ltsc_2019_x86_dvd_9096dec8.iso](https://drive.massgrave.dev/ct_windows_10_enterprise_ltsc_2019_x86_dvd_9096dec8.iso)       |\n| Danish                 | x64  | [da_windows_10_enterprise_ltsc_2019_x64_dvd_772bd569.iso](https://drive.massgrave.dev/da_windows_10_enterprise_ltsc_2019_x64_dvd_772bd569.iso)       |\n| Danish                 | x86  | [da_windows_10_enterprise_ltsc_2019_x86_dvd_54ea3b7c.iso](https://drive.massgrave.dev/da_windows_10_enterprise_ltsc_2019_x86_dvd_54ea3b7c.iso)       |\n| German                 | x64  | [de_windows_10_enterprise_ltsc_2019_x64_dvd_34efbe54.iso](https://drive.massgrave.dev/de_windows_10_enterprise_ltsc_2019_x64_dvd_34efbe54.iso)       |\n| German                 | x86  | [de_windows_10_enterprise_ltsc_2019_x86_dvd_b003dc50.iso](https://drive.massgrave.dev/de_windows_10_enterprise_ltsc_2019_x86_dvd_b003dc50.iso)       |\n| Greek                  | x64  | [el_windows_10_enterprise_ltsc_2019_x64_dvd_25ea66b9.iso](https://drive.massgrave.dev/el_windows_10_enterprise_ltsc_2019_x64_dvd_25ea66b9.iso)       |\n| Greek                  | x86  | [el_windows_10_enterprise_ltsc_2019_x86_dvd_d8746855.iso](https://drive.massgrave.dev/el_windows_10_enterprise_ltsc_2019_x86_dvd_d8746855.iso)       |\n| English-United Kingdom | x64  | [en-uk_windows_10_enterprise_ltsc_2019_x64_dvd_723dfbc1.iso](https://drive.massgrave.dev/en-uk_windows_10_enterprise_ltsc_2019_x64_dvd_723dfbc1.iso) |\n| English-United Kingdom | x86  | [en-uk_windows_10_enterprise_ltsc_2019_x86_dvd_ae3afea1.iso](https://drive.massgrave.dev/en-uk_windows_10_enterprise_ltsc_2019_x86_dvd_ae3afea1.iso) |\n| English                | x64  | [en_windows_10_enterprise_ltsc_2019_x64_dvd_5795bb03.iso](https://drive.massgrave.dev/en_windows_10_enterprise_ltsc_2019_x64_dvd_5795bb03.iso)       |\n| English                | x86  | [en_windows_10_enterprise_ltsc_2019_x86_dvd_892869c9.iso](https://drive.massgrave.dev/en_windows_10_enterprise_ltsc_2019_x86_dvd_892869c9.iso)       |\n| Spanish-Mexico         | x64  | [es-mx_windows_10_enterprise_ltsc_2019_x64_dvd_686cdfbe.iso](https://drive.massgrave.dev/es-mx_windows_10_enterprise_ltsc_2019_x64_dvd_686cdfbe.iso) |\n| Spanish-Mexico         | x86  | [es-mx_windows_10_enterprise_ltsc_2019_x86_dvd_a706f07d.iso](https://drive.massgrave.dev/es-mx_windows_10_enterprise_ltsc_2019_x86_dvd_a706f07d.iso) |\n| Spanish                | x64  | [es_windows_10_enterprise_ltsc_2019_x64_dvd_44a5b896.iso](https://drive.massgrave.dev/es_windows_10_enterprise_ltsc_2019_x64_dvd_44a5b896.iso)       |\n| Spanish                | x86  | [es_windows_10_enterprise_ltsc_2019_x86_dvd_84f6ff1d.iso](https://drive.massgrave.dev/es_windows_10_enterprise_ltsc_2019_x86_dvd_84f6ff1d.iso)       |\n| Estonian               | x64  | [et_windows_10_enterprise_ltsc_2019_x64_dvd_509e0d4c.iso](https://drive.massgrave.dev/et_windows_10_enterprise_ltsc_2019_x64_dvd_509e0d4c.iso)       |\n| Estonian               | x86  | [et_windows_10_enterprise_ltsc_2019_x86_dvd_56908605.iso](https://drive.massgrave.dev/et_windows_10_enterprise_ltsc_2019_x86_dvd_56908605.iso)       |\n| Finnish                | x64  | [fi_windows_10_enterprise_ltsc_2019_x64_dvd_8e6aaf2c.iso](https://drive.massgrave.dev/fi_windows_10_enterprise_ltsc_2019_x64_dvd_8e6aaf2c.iso)       |\n| Finnish                | x86  | [fi_windows_10_enterprise_ltsc_2019_x86_dvd_8016a99b.iso](https://drive.massgrave.dev/fi_windows_10_enterprise_ltsc_2019_x86_dvd_8016a99b.iso)       |\n| French-Canada          | x64  | [fr-ca_windows_10_enterprise_ltsc_2019_x64_dvd_a77dd2c4.iso](https://drive.massgrave.dev/fr-ca_windows_10_enterprise_ltsc_2019_x64_dvd_a77dd2c4.iso) |\n| French-Canada          | x86  | [fr-ca_windows_10_enterprise_ltsc_2019_x86_dvd_21e007a6.iso](https://drive.massgrave.dev/fr-ca_windows_10_enterprise_ltsc_2019_x86_dvd_21e007a6.iso) |\n| French                 | x64  | [fr_windows_10_enterprise_ltsc_2019_x64_dvd_d64b363d.iso](https://drive.massgrave.dev/fr_windows_10_enterprise_ltsc_2019_x64_dvd_d64b363d.iso)       |\n| French                 | x86  | [fr_windows_10_enterprise_ltsc_2019_x86_dvd_6718a277.iso](https://drive.massgrave.dev/fr_windows_10_enterprise_ltsc_2019_x86_dvd_6718a277.iso)       |\n| Hebrew                 | x64  | [he_windows_10_enterprise_ltsc_2019_x64_dvd_a5032f00.iso](https://drive.massgrave.dev/he_windows_10_enterprise_ltsc_2019_x64_dvd_a5032f00.iso)       |\n| Hebrew                 | x86  | [he_windows_10_enterprise_ltsc_2019_x86_dvd_e35105b4.iso](https://drive.massgrave.dev/he_windows_10_enterprise_ltsc_2019_x86_dvd_e35105b4.iso)       |\n| Croatian               | x64  | [hr_windows_10_enterprise_ltsc_2019_x64_dvd_0154a57e.iso](https://drive.massgrave.dev/hr_windows_10_enterprise_ltsc_2019_x64_dvd_0154a57e.iso)       |\n| Croatian               | x86  | [hr_windows_10_enterprise_ltsc_2019_x86_dvd_978cda23.iso](https://drive.massgrave.dev/hr_windows_10_enterprise_ltsc_2019_x86_dvd_978cda23.iso)       |\n| Hungarian              | x64  | [hu_windows_10_enterprise_ltsc_2019_x64_dvd_7afb1447.iso](https://drive.massgrave.dev/hu_windows_10_enterprise_ltsc_2019_x64_dvd_7afb1447.iso)       |\n| Hungarian              | x86  | [hu_windows_10_enterprise_ltsc_2019_x86_dvd_c59bde73.iso](https://drive.massgrave.dev/hu_windows_10_enterprise_ltsc_2019_x86_dvd_c59bde73.iso)       |\n| Italian                | x64  | [it_windows_10_enterprise_ltsc_2019_x64_dvd_e8629a2f.iso](https://drive.massgrave.dev/it_windows_10_enterprise_ltsc_2019_x64_dvd_e8629a2f.iso)       |\n| Italian                | x86  | [it_windows_10_enterprise_ltsc_2019_x86_dvd_0908d54b.iso](https://drive.massgrave.dev/it_windows_10_enterprise_ltsc_2019_x86_dvd_0908d54b.iso)       |\n| Japanese               | x64  | [ja_windows_10_enterprise_ltsc_2019_x64_dvd_c67b830b.iso](https://drive.massgrave.dev/ja_windows_10_enterprise_ltsc_2019_x64_dvd_c67b830b.iso)       |\n| Japanese               | x86  | [ja_windows_10_enterprise_ltsc_2019_x86_dvd_72e8b031.iso](https://drive.massgrave.dev/ja_windows_10_enterprise_ltsc_2019_x86_dvd_72e8b031.iso)       |\n| Korean                 | x64  | [ko_windows_10_enterprise_ltsc_2019_x64_dvd_67887e3e.iso](https://drive.massgrave.dev/ko_windows_10_enterprise_ltsc_2019_x64_dvd_67887e3e.iso)       |\n| Korean                 | x86  | [ko_windows_10_enterprise_ltsc_2019_x86_dvd_4df783b1.iso](https://drive.massgrave.dev/ko_windows_10_enterprise_ltsc_2019_x86_dvd_4df783b1.iso)       |\n| Lithuanian             | x64  | [lt_windows_10_enterprise_ltsc_2019_x64_dvd_5f505ee8.iso](https://drive.massgrave.dev/lt_windows_10_enterprise_ltsc_2019_x64_dvd_5f505ee8.iso)       |\n| Lithuanian             | x86  | [lt_windows_10_enterprise_ltsc_2019_x86_dvd_d3df66d2.iso](https://drive.massgrave.dev/lt_windows_10_enterprise_ltsc_2019_x86_dvd_d3df66d2.iso)       |\n| Latvian                | x64  | [lv_windows_10_enterprise_ltsc_2019_x64_dvd_410d73cd.iso](https://drive.massgrave.dev/lv_windows_10_enterprise_ltsc_2019_x64_dvd_410d73cd.iso)       |\n| Latvian                | x86  | [lv_windows_10_enterprise_ltsc_2019_x86_dvd_c4ab014e.iso](https://drive.massgrave.dev/lv_windows_10_enterprise_ltsc_2019_x86_dvd_c4ab014e.iso)       |\n| Norwegian-Bokmal       | x64  | [nb_windows_10_enterprise_ltsc_2019_x64_dvd_512b1b80.iso](https://drive.massgrave.dev/nb_windows_10_enterprise_ltsc_2019_x64_dvd_512b1b80.iso)       |\n| Norwegian-Bokmal       | x86  | [nb_windows_10_enterprise_ltsc_2019_x86_dvd_4411d908.iso](https://drive.massgrave.dev/nb_windows_10_enterprise_ltsc_2019_x86_dvd_4411d908.iso)       |\n| Dutch                  | x64  | [nl_windows_10_enterprise_ltsc_2019_x64_dvd_6b4c874e.iso](https://drive.massgrave.dev/nl_windows_10_enterprise_ltsc_2019_x64_dvd_6b4c874e.iso)       |\n| Dutch                  | x86  | [nl_windows_10_enterprise_ltsc_2019_x86_dvd_7de5cbe9.iso](https://drive.massgrave.dev/nl_windows_10_enterprise_ltsc_2019_x86_dvd_7de5cbe9.iso)       |\n| Polish                 | x64  | [pl_windows_10_enterprise_ltsc_2019_x64_dvd_e896167a.iso](https://drive.massgrave.dev/pl_windows_10_enterprise_ltsc_2019_x64_dvd_e896167a.iso)       |\n| Polish                 | x86  | [pl_windows_10_enterprise_ltsc_2019_x86_dvd_83c5bbde.iso](https://drive.massgrave.dev/pl_windows_10_enterprise_ltsc_2019_x86_dvd_83c5bbde.iso)       |\n| Portuguese-Portugal    | x64  | [pp_windows_10_enterprise_ltsc_2019_x64_dvd_c8d2470d.iso](https://drive.massgrave.dev/pp_windows_10_enterprise_ltsc_2019_x64_dvd_c8d2470d.iso)       |\n| Portuguese-Portugal    | x86  | [pp_windows_10_enterprise_ltsc_2019_x86_dvd_206310fd.iso](https://drive.massgrave.dev/pp_windows_10_enterprise_ltsc_2019_x86_dvd_206310fd.iso)       |\n| Portuguese-Brazil      | x64  | [pt_windows_10_enterprise_ltsc_2019_x64_dvd_d43dcbad.iso](https://drive.massgrave.dev/pt_windows_10_enterprise_ltsc_2019_x64_dvd_d43dcbad.iso)       |\n| Portuguese-Brazil      | x86  | [pt_windows_10_enterprise_ltsc_2019_x86_dvd_208df283.iso](https://drive.massgrave.dev/pt_windows_10_enterprise_ltsc_2019_x86_dvd_208df283.iso)       |\n| Romanian               | x64  | [ro_windows_10_enterprise_ltsc_2019_x64_dvd_47b6116b.iso](https://drive.massgrave.dev/ro_windows_10_enterprise_ltsc_2019_x64_dvd_47b6116b.iso)       |\n| Romanian               | x86  | [ro_windows_10_enterprise_ltsc_2019_x86_dvd_d1a09b2f.iso](https://drive.massgrave.dev/ro_windows_10_enterprise_ltsc_2019_x86_dvd_d1a09b2f.iso)       |\n| Russian                | x64  | [ru_windows_10_enterprise_ltsc_2019_x64_dvd_78e7853a.iso](https://drive.massgrave.dev/ru_windows_10_enterprise_ltsc_2019_x64_dvd_78e7853a.iso)       |\n| Russian                | x86  | [ru_windows_10_enterprise_ltsc_2019_x86_dvd_196b5dad.iso](https://drive.massgrave.dev/ru_windows_10_enterprise_ltsc_2019_x86_dvd_196b5dad.iso)       |\n| Slovak                 | x64  | [sk_windows_10_enterprise_ltsc_2019_x64_dvd_47437358.iso](https://drive.massgrave.dev/sk_windows_10_enterprise_ltsc_2019_x64_dvd_47437358.iso)       |\n| Slovak                 | x86  | [sk_windows_10_enterprise_ltsc_2019_x86_dvd_dede1f66.iso](https://drive.massgrave.dev/sk_windows_10_enterprise_ltsc_2019_x86_dvd_dede1f66.iso)       |\n| Slovenian              | x64  | [sl_windows_10_enterprise_ltsc_2019_x64_dvd_05f349aa.iso](https://drive.massgrave.dev/sl_windows_10_enterprise_ltsc_2019_x64_dvd_05f349aa.iso)       |\n| Slovenian              | x86  | [sl_windows_10_enterprise_ltsc_2019_x86_dvd_3b3b7261.iso](https://drive.massgrave.dev/sl_windows_10_enterprise_ltsc_2019_x86_dvd_3b3b7261.iso)       |\n| Serbian-Latin          | x64  | [sr_windows_10_enterprise_ltsc_2019_x64_dvd_8b47ec8a.iso](https://drive.massgrave.dev/sr_windows_10_enterprise_ltsc_2019_x64_dvd_8b47ec8a.iso)       |\n| Serbian-Latin          | x86  | [sr_windows_10_enterprise_ltsc_2019_x86_dvd_973a9911.iso](https://drive.massgrave.dev/sr_windows_10_enterprise_ltsc_2019_x86_dvd_973a9911.iso)       |\n| Swedish                | x64  | [sv_windows_10_enterprise_ltsc_2019_x64_dvd_4b25e231.iso](https://drive.massgrave.dev/sv_windows_10_enterprise_ltsc_2019_x64_dvd_4b25e231.iso)       |\n| Swedish                | x86  | [sv_windows_10_enterprise_ltsc_2019_x86_dvd_5618a7ff.iso](https://drive.massgrave.dev/sv_windows_10_enterprise_ltsc_2019_x86_dvd_5618a7ff.iso)       |\n| Thai                   | x64  | [th_windows_10_enterprise_ltsc_2019_x64_dvd_ae87916a.iso](https://drive.massgrave.dev/th_windows_10_enterprise_ltsc_2019_x64_dvd_ae87916a.iso)       |\n| Thai                   | x86  | [th_windows_10_enterprise_ltsc_2019_x86_dvd_5e37c638.iso](https://drive.massgrave.dev/th_windows_10_enterprise_ltsc_2019_x86_dvd_5e37c638.iso)       |\n| Turkish                | x64  | [tr_windows_10_enterprise_ltsc_2019_x64_dvd_f2b90518.iso](https://drive.massgrave.dev/tr_windows_10_enterprise_ltsc_2019_x64_dvd_f2b90518.iso)       |\n| Turkish                | x86  | [tr_windows_10_enterprise_ltsc_2019_x86_dvd_1d5513a0.iso](https://drive.massgrave.dev/tr_windows_10_enterprise_ltsc_2019_x86_dvd_1d5513a0.iso)       |\n| Ukrainian              | x64  | [uk_windows_10_enterprise_ltsc_2019_x64_dvd_d40a905a.iso](https://drive.massgrave.dev/uk_windows_10_enterprise_ltsc_2019_x64_dvd_d40a905a.iso)       |\n| Ukrainian              | x86  | [uk_windows_10_enterprise_ltsc_2019_x86_dvd_e3b4eb4d.iso](https://drive.massgrave.dev/uk_windows_10_enterprise_ltsc_2019_x86_dvd_e3b4eb4d.iso)       |\n\n== Windows 10 LTSB 2016\n\n**Windows 10 Enterprise LTSB 2016**\n\n> - Build 14393  \n\n| Language               | Arch | Link                                                                                                                                                   |\n|:-----------------------|:-----|:-------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Arabic                 | x64  | [ar_windows_10_enterprise_2016_ltsb_x64_dvd_9059481.iso](https://drive.massgrave.dev/ar_windows_10_enterprise_2016_ltsb_x64_dvd_9059481.iso)           |\n| Arabic                 | x86  | [ar_windows_10_enterprise_2016_ltsb_x86_dvd_9060006.iso](https://drive.massgrave.dev/ar_windows_10_enterprise_2016_ltsb_x86_dvd_9060006.iso)           |\n| Bulgarian              | x64  | [bg_windows_10_enterprise_2016_ltsb_x64_dvd_9060109.iso](https://drive.massgrave.dev/bg_windows_10_enterprise_2016_ltsb_x64_dvd_9060109.iso)           |\n| Bulgarian              | x86  | [bg_windows_10_enterprise_2016_ltsb_x86_dvd_9060079.iso](https://drive.massgrave.dev/bg_windows_10_enterprise_2016_ltsb_x86_dvd_9060079.iso)           |\n| Chinese-Simplified     | x64  | [cn_windows_10_enterprise_2016_ltsb_x64_dvd_9060409.iso](https://drive.massgrave.dev/cn_windows_10_enterprise_2016_ltsb_x64_dvd_9060409.iso)           |\n| Chinese-Simplified     | x86  | [cn_windows_10_enterprise_2016_ltsb_x86_dvd_9057089.iso](https://drive.massgrave.dev/cn_windows_10_enterprise_2016_ltsb_x86_dvd_9057089.iso)           |\n| Czech                  | x64  | [cs_windows_10_enterprise_2016_ltsb_x64_dvd_9058277.iso](https://drive.massgrave.dev/cs_windows_10_enterprise_2016_ltsb_x64_dvd_9058277.iso)           |\n| Czech                  | x86  | [cs_windows_10_enterprise_2016_ltsb_x86_dvd_9058253.iso](https://drive.massgrave.dev/cs_windows_10_enterprise_2016_ltsb_x86_dvd_9058253.iso)           |\n| Chinese-Traditional    | x64  | [ct_windows_10_enterprise_2016_ltsb_x64_dvd_9057374.iso](https://drive.massgrave.dev/ct_windows_10_enterprise_2016_ltsb_x64_dvd_9057374.iso)           |\n| Chinese-Traditional    | x86  | [ct_windows_10_enterprise_2016_ltsb_x86_dvd_9057437.iso](https://drive.massgrave.dev/ct_windows_10_enterprise_2016_ltsb_x86_dvd_9057437.iso)           |\n| Danish                 | x64  | [da_windows_10_enterprise_2016_ltsb_x64_dvd_9058601.iso](https://drive.massgrave.dev/da_windows_10_enterprise_2016_ltsb_x64_dvd_9058601.iso)           |\n| Danish                 | x86  | [da_windows_10_enterprise_2016_ltsb_x86_dvd_9058895.iso](https://drive.massgrave.dev/da_windows_10_enterprise_2016_ltsb_x86_dvd_9058895.iso)           |\n| German                 | x64  | [de_windows_10_enterprise_2016_ltsb_x64_dvd_9058605.iso](https://drive.massgrave.dev/de_windows_10_enterprise_2016_ltsb_x64_dvd_9058605.iso)           |\n| German                 | x86  | [de_windows_10_enterprise_2016_ltsb_x86_dvd_9058899.iso](https://drive.massgrave.dev/de_windows_10_enterprise_2016_ltsb_x86_dvd_9058899.iso)           |\n| Greek                  | x64  | [el_windows_10_enterprise_2016_ltsb_x64_dvd_9059317.iso](https://drive.massgrave.dev/el_windows_10_enterprise_2016_ltsb_x64_dvd_9059317.iso)           |\n| Greek                  | x86  | [el_windows_10_enterprise_2016_ltsb_x86_dvd_9059530.iso](https://drive.massgrave.dev/el_windows_10_enterprise_2016_ltsb_x86_dvd_9059530.iso)           |\n| English-United Kingdom | x64  | [en-gb_windows_10_enterprise_2016_ltsb_x64_dvd_9060114.iso](https://drive.massgrave.dev/en-gb_windows_10_enterprise_2016_ltsb_x64_dvd_9060114.iso)     |\n| English-United Kingdom | x86  | [en-gb_windows_10_enterprise_2016_ltsb_x86_dvd_9060085.iso](https://drive.massgrave.dev/en-gb_windows_10_enterprise_2016_ltsb_x86_dvd_9060085.iso)     |\n| English                | x64  | [en_windows_10_enterprise_2016_ltsb_x64_dvd_9059483.iso](https://drive.massgrave.dev/en_windows_10_enterprise_2016_ltsb_x64_dvd_9059483.iso)           |\n| English                | x86  | [en_windows_10_enterprise_2016_ltsb_x86_dvd_9060010.iso](https://drive.massgrave.dev/en_windows_10_enterprise_2016_ltsb_x86_dvd_9060010.iso)           |\n| Spanish-Mexico         | x64  | [es-mx_windows_10_enterprise_2016_ltsb_x64_dvd_9060115.iso](https://drive.massgrave.dev/es-mx_windows_10_enterprise_2016_ltsb_x64_dvd_9060115.iso)     |\n| Spanish-Mexico         | x86  | [es-mx_windows_10_enterprise_2016_ltsb_x86_dvd_9060090.iso](https://drive.massgrave.dev/es-mx_windows_10_enterprise_2016_ltsb_x86_dvd_9060090.iso)     |\n| Spanish                | x64  | [es_windows_10_enterprise_2016_ltsb_x64_dvd_9059485.iso](https://drive.massgrave.dev/es_windows_10_enterprise_2016_ltsb_x64_dvd_9059485.iso)           |\n| Spanish                | x86  | [es_windows_10_enterprise_2016_ltsb_x86_dvd_9060020.iso](https://drive.massgrave.dev/es_windows_10_enterprise_2016_ltsb_x86_dvd_9060020.iso)           |\n| Estonian               | x64  | [et_windows_10_enterprise_2016_ltsb_x64_dvd_9060433.iso](https://drive.massgrave.dev/et_windows_10_enterprise_2016_ltsb_x64_dvd_9060433.iso)           |\n| Estonian               | x86  | [et_windows_10_enterprise_2016_ltsb_x86_dvd_9057091.iso](https://drive.massgrave.dev/et_windows_10_enterprise_2016_ltsb_x86_dvd_9057091.iso)           |\n| Finnish                | x64  | [fi_windows_10_enterprise_2016_ltsb_x64_dvd_9057376.iso](https://drive.massgrave.dev/fi_windows_10_enterprise_2016_ltsb_x64_dvd_9057376.iso)           |\n| Finnish                | x86  | [fi_windows_10_enterprise_2016_ltsb_x86_dvd_9057439.iso](https://drive.massgrave.dev/fi_windows_10_enterprise_2016_ltsb_x86_dvd_9057439.iso)           |\n| French-Canada          | x64  | [fr-ca_windows_10_enterprise_2016_ltsb_x64_dvd_9058278.iso](https://drive.massgrave.dev/fr-ca_windows_10_enterprise_2016_ltsb_x64_dvd_9058278.iso)     |\n| French-Canada          | x86  | [fr-ca_windows_10_enterprise_2016_ltsb_x86_dvd_9058259.iso](https://drive.massgrave.dev/fr-ca_windows_10_enterprise_2016_ltsb_x86_dvd_9058259.iso)     |\n| French                 | x64  | [fr_windows_10_enterprise_2016_ltsb_x64_dvd_9057871.iso](https://drive.massgrave.dev/fr_windows_10_enterprise_2016_ltsb_x64_dvd_9057871.iso)           |\n| French                 | x86  | [fr_windows_10_enterprise_2016_ltsb_x86_dvd_9058127.iso](https://drive.massgrave.dev/fr_windows_10_enterprise_2016_ltsb_x86_dvd_9058127.iso)           |\n| Hebrew                 | x64  | [he_windows_10_enterprise_2016_ltsb_x64_dvd_9059484.iso](https://drive.massgrave.dev/he_windows_10_enterprise_2016_ltsb_x64_dvd_9059484.iso)           |\n| Hebrew                 | x86  | [he_windows_10_enterprise_2016_ltsb_x86_dvd_9060012.iso](https://drive.massgrave.dev/he_windows_10_enterprise_2016_ltsb_x86_dvd_9060012.iso)           |\n| Croatian               | x64  | [hr_windows_10_enterprise_2016_ltsb_x64_dvd_9057884.iso](https://drive.massgrave.dev/hr_windows_10_enterprise_2016_ltsb_x64_dvd_9057884.iso)           |\n| Croatian               | x86  | [hr_windows_10_enterprise_2016_ltsb_x86_dvd_9058120.iso](https://drive.massgrave.dev/hr_windows_10_enterprise_2016_ltsb_x86_dvd_9058120.iso)           |\n| Hungarian              | x64  | [hu_windows_10_enterprise_2016_ltsb_x64_dvd_9060111.iso](https://drive.massgrave.dev/hu_windows_10_enterprise_2016_ltsb_x64_dvd_9060111.iso)           |\n| Hungarian              | x86  | [hu_windows_10_enterprise_2016_ltsb_x86_dvd_9060087.iso](https://drive.massgrave.dev/hu_windows_10_enterprise_2016_ltsb_x86_dvd_9060087.iso)           |\n| Italian                | x64  | [it_windows_10_enterprise_2016_ltsb_x64_dvd_9060446.iso](https://drive.massgrave.dev/it_windows_10_enterprise_2016_ltsb_x64_dvd_9060446.iso)           |\n| Italian                | x86  | [it_windows_10_enterprise_2016_ltsb_x86_dvd_9057094.iso](https://drive.massgrave.dev/it_windows_10_enterprise_2016_ltsb_x86_dvd_9057094.iso)           |\n| Japanese               | x64  | [ja_windows_10_enterprise_2016_ltsb_x64_dvd_9057377.iso](https://drive.massgrave.dev/ja_windows_10_enterprise_2016_ltsb_x64_dvd_9057377.iso)           |\n| Japanese               | x86  | [ja_windows_10_enterprise_2016_ltsb_x86_dvd_9057438.iso](https://drive.massgrave.dev/ja_windows_10_enterprise_2016_ltsb_x86_dvd_9057438.iso)           |\n| Korean                 | x64  | [ko_windows_10_enterprise_2016_ltsb_x64_dvd_9057889.iso](https://drive.massgrave.dev/ko_windows_10_enterprise_2016_ltsb_x64_dvd_9057889.iso)           |\n| Korean                 | x86  | [ko_windows_10_enterprise_2016_ltsb_x86_dvd_9058162.iso](https://drive.massgrave.dev/ko_windows_10_enterprise_2016_ltsb_x86_dvd_9058162.iso)           |\n| Lithuanian             | x64  | [lt_windows_10_enterprise_2016_ltsb_x64_dvd_9058606.iso](https://drive.massgrave.dev/lt_windows_10_enterprise_2016_ltsb_x64_dvd_9058606.iso)           |\n| Lithuanian             | x86  | [lt_windows_10_enterprise_2016_ltsb_x86_dvd_9058906.iso](https://drive.massgrave.dev/lt_windows_10_enterprise_2016_ltsb_x86_dvd_9058906.iso)           |\n| Latvian                | x64  | [lv_windows_10_enterprise_2016_ltsb_x64_dvd_9058289.iso](https://drive.massgrave.dev/lv_windows_10_enterprise_2016_ltsb_x64_dvd_9058289.iso)           |\n| Latvian                | x86  | [lv_windows_10_enterprise_2016_ltsb_x86_dvd_9058263.iso](https://drive.massgrave.dev/lv_windows_10_enterprise_2016_ltsb_x86_dvd_9058263.iso)           |\n| Norwegian-Bokmal       | x64  | [nb_windows_10_enterprise_2016_ltsb_x64_dvd_9059319.iso](https://drive.massgrave.dev/nb_windows_10_enterprise_2016_ltsb_x64_dvd_9059319.iso)           |\n| Norwegian-Bokmal       | x86  | [nb_windows_10_enterprise_2016_ltsb_x86_dvd_9059535.iso](https://drive.massgrave.dev/nb_windows_10_enterprise_2016_ltsb_x86_dvd_9059535.iso)           |\n| Dutch                  | x64  | [nl_windows_10_enterprise_2016_ltsb_x64_dvd_9059312.iso](https://drive.massgrave.dev/nl_windows_10_enterprise_2016_ltsb_x64_dvd_9059312.iso)           |\n| Dutch                  | x86  | [nl_windows_10_enterprise_2016_ltsb_x86_dvd_9059526.iso](https://drive.massgrave.dev/nl_windows_10_enterprise_2016_ltsb_x86_dvd_9059526.iso)           |\n| Polish                 | x64  | [pl_windows_10_enterprise_2016_ltsb_x64_dvd_9059490.iso](https://drive.massgrave.dev/pl_windows_10_enterprise_2016_ltsb_x64_dvd_9059490.iso)           |\n| Polish                 | x86  | [pl_windows_10_enterprise_2016_ltsb_x86_dvd_9060015.iso](https://drive.massgrave.dev/pl_windows_10_enterprise_2016_ltsb_x86_dvd_9060015.iso)           |\n| Portuguese-Portugal    | x64  | [pp_windows_10_enterprise_2016_ltsb_x64_dvd_9060465.iso](https://drive.massgrave.dev/pp_windows_10_enterprise_2016_ltsb_x64_dvd_9060465.iso)           |\n| Portuguese-Portugal    | x86  | [pp_windows_10_enterprise_2016_ltsb_x86_dvd_9057097.iso](https://drive.massgrave.dev/pp_windows_10_enterprise_2016_ltsb_x86_dvd_9057097.iso)           |\n| Portuguese-Brazil      | x64  | [pt_windows_10_enterprise_2016_ltsb_x64_dvd_9060113.iso](https://drive.massgrave.dev/pt_windows_10_enterprise_2016_ltsb_x64_dvd_9060113.iso)           |\n| Portuguese-Brazil      | x86  | [pt_windows_10_enterprise_2016_ltsb_x86_dvd_9060088.iso](https://drive.massgrave.dev/pt_windows_10_enterprise_2016_ltsb_x86_dvd_9060088.iso)           |\n| Romanian               | x64  | [ro_windows_10_enterprise_2016_ltsb_x64_dvd_9057388.iso](https://drive.massgrave.dev/ro_windows_10_enterprise_2016_ltsb_x64_dvd_9057388.iso)           |\n| Romanian               | x86  | [ro_windows_10_enterprise_2016_ltsb_x86_dvd_9057443.iso](https://drive.massgrave.dev/ro_windows_10_enterprise_2016_ltsb_x86_dvd_9057443.iso)           |\n| Russian                | x64  | [ru_windows_10_enterprise_2016_ltsb_x64_dvd_9057886.iso](https://drive.massgrave.dev/ru_windows_10_enterprise_2016_ltsb_x64_dvd_9057886.iso)           |\n| Russian                | x86  | [ru_windows_10_enterprise_2016_ltsb_x86_dvd_9058173.iso](https://drive.massgrave.dev/ru_windows_10_enterprise_2016_ltsb_x86_dvd_9058173.iso)           |\n| Slovak                 | x64  | [sk_windows_10_enterprise_2016_ltsb_x64_dvd_9058612.iso](https://drive.massgrave.dev/sk_windows_10_enterprise_2016_ltsb_x64_dvd_9058612.iso)           |\n| Slovak                 | x86  | [sk_windows_10_enterprise_2016_ltsb_x86_dvd_9058908.iso](https://drive.massgrave.dev/sk_windows_10_enterprise_2016_ltsb_x86_dvd_9058908.iso)           |\n| Slovenian              | x64  | [sl_windows_10_enterprise_2016_ltsb_x64_dvd_9059321.iso](https://drive.massgrave.dev/sl_windows_10_enterprise_2016_ltsb_x64_dvd_9059321.iso)           |\n| Slovenian              | x86  | [sl_windows_10_enterprise_2016_ltsb_x86_dvd_9059531.iso](https://drive.massgrave.dev/sl_windows_10_enterprise_2016_ltsb_x86_dvd_9059531.iso)           |\n| Serbian-Latin          | x64  | [sr-latn_windows_10_enterprise_2016_ltsb_x64_dvd_9058293.iso](https://drive.massgrave.dev/sr-latn_windows_10_enterprise_2016_ltsb_x64_dvd_9058293.iso) |\n| Serbian-Latin          | x86  | [sr-latn_windows_10_enterprise_2016_ltsb_x86_dvd_9058276.iso](https://drive.massgrave.dev/sr-latn_windows_10_enterprise_2016_ltsb_x86_dvd_9058276.iso) |\n| Swedish                | x64  | [sv_windows_10_enterprise_2016_ltsb_x64_dvd_9060456.iso](https://drive.massgrave.dev/sv_windows_10_enterprise_2016_ltsb_x64_dvd_9060456.iso)           |\n| Swedish                | x86  | [sv_windows_10_enterprise_2016_ltsb_x86_dvd_9057114.iso](https://drive.massgrave.dev/sv_windows_10_enterprise_2016_ltsb_x86_dvd_9057114.iso)           |\n| Thai                   | x64  | [th_windows_10_enterprise_2016_ltsb_x64_dvd_9057403.iso](https://drive.massgrave.dev/th_windows_10_enterprise_2016_ltsb_x64_dvd_9057403.iso)           |\n| Thai                   | x86  | [th_windows_10_enterprise_2016_ltsb_x86_dvd_9057441.iso](https://drive.massgrave.dev/th_windows_10_enterprise_2016_ltsb_x86_dvd_9057441.iso)           |\n| Turkish                | x64  | [tr_windows_10_enterprise_2016_ltsb_x64_dvd_9057891.iso](https://drive.massgrave.dev/tr_windows_10_enterprise_2016_ltsb_x64_dvd_9057891.iso)           |\n| Turkish                | x86  | [tr_windows_10_enterprise_2016_ltsb_x86_dvd_9058186.iso](https://drive.massgrave.dev/tr_windows_10_enterprise_2016_ltsb_x86_dvd_9058186.iso)           |\n| Ukrainian              | x64  | [uk_windows_10_enterprise_2016_ltsb_x64_dvd_9058295.iso](https://drive.massgrave.dev/uk_windows_10_enterprise_2016_ltsb_x64_dvd_9058295.iso)           |\n| Ukrainian              | x86  | [uk_windows_10_enterprise_2016_ltsb_x86_dvd_9058286.iso](https://drive.massgrave.dev/uk_windows_10_enterprise_2016_ltsb_x86_dvd_9058286.iso)           |\n\n== Windows 10 LTSB 2015\n\n**Windows 10 Enterprise LTSB 2015**\n\n> - Build 10240  \n\n| Language               | Arch | Link                                                                                                                                                   |\n|:-----------------------|:-----|:-------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Arabic                 | x64  | [ar_windows_10_enterprise_2015_ltsb_x64_dvd_6848420.iso](https://drive.massgrave.dev/ar_windows_10_enterprise_2015_ltsb_x64_dvd_6848420.iso)           |\n| Arabic                 | x86  | [ar_windows_10_enterprise_2015_ltsb_x86_dvd_6848421.iso](https://drive.massgrave.dev/ar_windows_10_enterprise_2015_ltsb_x86_dvd_6848421.iso)           |\n| Bulgarian              | x64  | [bg_windows_10_enterprise_2015_ltsb_x64_dvd_6848422.iso](https://drive.massgrave.dev/bg_windows_10_enterprise_2015_ltsb_x64_dvd_6848422.iso)           |\n| Bulgarian              | x86  | [bg_windows_10_enterprise_2015_ltsb_x86_dvd_6848424.iso](https://drive.massgrave.dev/bg_windows_10_enterprise_2015_ltsb_x86_dvd_6848424.iso)           |\n| Chinese-Simplified     | x64  | [cn_windows_10_enterprise_2015_ltsb_x64_dvd_6848425.iso](https://drive.massgrave.dev/cn_windows_10_enterprise_2015_ltsb_x64_dvd_6848425.iso)           |\n| Chinese-Simplified     | x86  | [cn_windows_10_enterprise_2015_ltsb_x86_dvd_6848426.iso](https://drive.massgrave.dev/cn_windows_10_enterprise_2015_ltsb_x86_dvd_6848426.iso)           |\n| Czech                  | x64  | [cs_windows_10_enterprise_2015_ltsb_x64_dvd_6848435.iso](https://drive.massgrave.dev/cs_windows_10_enterprise_2015_ltsb_x64_dvd_6848435.iso)           |\n| Czech                  | x86  | [cs_windows_10_enterprise_2015_ltsb_x86_dvd_6848437.iso](https://drive.massgrave.dev/cs_windows_10_enterprise_2015_ltsb_x86_dvd_6848437.iso)           |\n| Danish                 | x64  | [da_windows_10_enterprise_2015_ltsb_x64_dvd_6848440.iso](https://drive.massgrave.dev/da_windows_10_enterprise_2015_ltsb_x64_dvd_6848440.iso)           |\n| Danish                 | x86  | [da_windows_10_enterprise_2015_ltsb_x86_dvd_6848441.iso](https://drive.massgrave.dev/da_windows_10_enterprise_2015_ltsb_x86_dvd_6848441.iso)           |\n| German                 | x64  | [de_windows_10_enterprise_2015_ltsb_x64_dvd_6848473.iso](https://drive.massgrave.dev/de_windows_10_enterprise_2015_ltsb_x64_dvd_6848473.iso)           |\n| German                 | x86  | [de_windows_10_enterprise_2015_ltsb_x86_dvd_6848474.iso](https://drive.massgrave.dev/de_windows_10_enterprise_2015_ltsb_x86_dvd_6848474.iso)           |\n| Greek                  | x64  | [el_windows_10_enterprise_2015_ltsb_x64_dvd_6848475.iso](https://drive.massgrave.dev/el_windows_10_enterprise_2015_ltsb_x64_dvd_6848475.iso)           |\n| Greek                  | x86  | [el_windows_10_enterprise_2015_ltsb_x86_dvd_6848476.iso](https://drive.massgrave.dev/el_windows_10_enterprise_2015_ltsb_x86_dvd_6848476.iso)           |\n| English-United Kingdom | x64  | [en-gb_windows_10_enterprise_2015_ltsb_x64_dvd_6848456.iso](https://drive.massgrave.dev/en-gb_windows_10_enterprise_2015_ltsb_x64_dvd_6848456.iso)     |\n| English-United Kingdom | x86  | [en-gb_windows_10_enterprise_2015_ltsb_x86_dvd_6848457.iso](https://drive.massgrave.dev/en-gb_windows_10_enterprise_2015_ltsb_x86_dvd_6848457.iso)     |\n| English                | x64  | [en_windows_10_enterprise_2015_ltsb_x64_dvd_6848446.iso](https://drive.massgrave.dev/en_windows_10_enterprise_2015_ltsb_x64_dvd_6848446.iso)           |\n| English                | x86  | [en_windows_10_enterprise_2015_ltsb_x86_dvd_6848454.iso](https://drive.massgrave.dev/en_windows_10_enterprise_2015_ltsb_x86_dvd_6848454.iso)           |\n| Spanish-Mexico         | x64  | [es-mx_windows_10_enterprise_2015_ltsb_x64_dvd_6850897.iso](https://drive.massgrave.dev/es-mx_windows_10_enterprise_2015_ltsb_x64_dvd_6850897.iso)     |\n| Spanish-Mexico         | x86  | [es-mx_windows_10_enterprise_2015_ltsb_x86_dvd_6850898.iso](https://drive.massgrave.dev/es-mx_windows_10_enterprise_2015_ltsb_x86_dvd_6850898.iso)     |\n| Spanish                | x64  | [es_windows_10_enterprise_2015_ltsb_x64_dvd_6850876.iso](https://drive.massgrave.dev/es_windows_10_enterprise_2015_ltsb_x64_dvd_6850876.iso)           |\n| Spanish                | x86  | [es_windows_10_enterprise_2015_ltsb_x86_dvd_6850896.iso](https://drive.massgrave.dev/es_windows_10_enterprise_2015_ltsb_x86_dvd_6850896.iso)           |\n| Estonian               | x64  | [et_windows_10_enterprise_2015_ltsb_x64_dvd_6848458.iso](https://drive.massgrave.dev/et_windows_10_enterprise_2015_ltsb_x64_dvd_6848458.iso)           |\n| Estonian               | x86  | [et_windows_10_enterprise_2015_ltsb_x86_dvd_6848460.iso](https://drive.massgrave.dev/et_windows_10_enterprise_2015_ltsb_x86_dvd_6848460.iso)           |\n| Finnish                | x64  | [fi_windows_10_enterprise_2015_ltsb_x64_dvd_6848462.iso](https://drive.massgrave.dev/fi_windows_10_enterprise_2015_ltsb_x64_dvd_6848462.iso)           |\n| Finnish                | x86  | [fi_windows_10_enterprise_2015_ltsb_x86_dvd_6848464.iso](https://drive.massgrave.dev/fi_windows_10_enterprise_2015_ltsb_x86_dvd_6848464.iso)           |\n| French-Canada          | x64  | [fr-ca_windows_10_enterprise_2015_ltsb_x64_dvd_6848470.iso](https://drive.massgrave.dev/fr-ca_windows_10_enterprise_2015_ltsb_x64_dvd_6848470.iso)     |\n| French-Canada          | x86  | [fr-ca_windows_10_enterprise_2015_ltsb_x86_dvd_6848472.iso](https://drive.massgrave.dev/fr-ca_windows_10_enterprise_2015_ltsb_x86_dvd_6848472.iso)     |\n| French                 | x64  | [fr_windows_10_enterprise_2015_ltsb_x64_dvd_6848466.iso](https://drive.massgrave.dev/fr_windows_10_enterprise_2015_ltsb_x64_dvd_6848466.iso)           |\n| French                 | x86  | [fr_windows_10_enterprise_2015_ltsb_x86_dvd_6848468.iso](https://drive.massgrave.dev/fr_windows_10_enterprise_2015_ltsb_x86_dvd_6848468.iso)           |\n| Hebrew                 | x64  | [he_windows_10_enterprise_2015_ltsb_x64_dvd_6848477.iso](https://drive.massgrave.dev/he_windows_10_enterprise_2015_ltsb_x64_dvd_6848477.iso)           |\n| Hebrew                 | x86  | [he_windows_10_enterprise_2015_ltsb_x86_dvd_6850760.iso](https://drive.massgrave.dev/he_windows_10_enterprise_2015_ltsb_x86_dvd_6850760.iso)           |\n| Chinese-Hong Kong SAR  | x64  | [hk_windows_10_enterprise_2015_ltsb_x64_dvd_6848427.iso](https://drive.massgrave.dev/hk_windows_10_enterprise_2015_ltsb_x64_dvd_6848427.iso)           |\n| Chinese-Hong Kong SAR  | x86  | [hk_windows_10_enterprise_2015_ltsb_x86_dvd_6848428.iso](https://drive.massgrave.dev/hk_windows_10_enterprise_2015_ltsb_x86_dvd_6848428.iso)           |\n| Croatian               | x64  | [hr_windows_10_enterprise_2015_ltsb_x64_dvd_6848433.iso](https://drive.massgrave.dev/hr_windows_10_enterprise_2015_ltsb_x64_dvd_6848433.iso)           |\n| Croatian               | x86  | [hr_windows_10_enterprise_2015_ltsb_x86_dvd_6848434.iso](https://drive.massgrave.dev/hr_windows_10_enterprise_2015_ltsb_x86_dvd_6848434.iso)           |\n| Hungarian              | x64  | [hu_windows_10_enterprise_2015_ltsb_x64_dvd_6850770.iso](https://drive.massgrave.dev/hu_windows_10_enterprise_2015_ltsb_x64_dvd_6850770.iso)           |\n| Hungarian              | x86  | [hu_windows_10_enterprise_2015_ltsb_x86_dvd_6850771.iso](https://drive.massgrave.dev/hu_windows_10_enterprise_2015_ltsb_x86_dvd_6850771.iso)           |\n| Italian                | x64  | [it_windows_10_enterprise_2015_ltsb_x64_dvd_6850772.iso](https://drive.massgrave.dev/it_windows_10_enterprise_2015_ltsb_x64_dvd_6850772.iso)           |\n| Italian                | x86  | [it_windows_10_enterprise_2015_ltsb_x86_dvd_6850773.iso](https://drive.massgrave.dev/it_windows_10_enterprise_2015_ltsb_x86_dvd_6850773.iso)           |\n| Japanese               | x64  | [ja_windows_10_enterprise_2015_ltsb_x64_dvd_6850774.iso](https://drive.massgrave.dev/ja_windows_10_enterprise_2015_ltsb_x64_dvd_6850774.iso)           |\n| Japanese               | x86  | [ja_windows_10_enterprise_2015_ltsb_x86_dvd_6850775.iso](https://drive.massgrave.dev/ja_windows_10_enterprise_2015_ltsb_x86_dvd_6850775.iso)           |\n| Korean                 | x64  | [ko_windows_10_enterprise_2015_ltsb_x64_dvd_6850776.iso](https://drive.massgrave.dev/ko_windows_10_enterprise_2015_ltsb_x64_dvd_6850776.iso)           |\n| Korean                 | x86  | [ko_windows_10_enterprise_2015_ltsb_x86_dvd_6850777.iso](https://drive.massgrave.dev/ko_windows_10_enterprise_2015_ltsb_x86_dvd_6850777.iso)           |\n| Lithuanian             | x64  | [lt_windows_10_enterprise_2015_ltsb_x64_dvd_6850780.iso](https://drive.massgrave.dev/lt_windows_10_enterprise_2015_ltsb_x64_dvd_6850780.iso)           |\n| Lithuanian             | x86  | [lt_windows_10_enterprise_2015_ltsb_x86_dvd_6850781.iso](https://drive.massgrave.dev/lt_windows_10_enterprise_2015_ltsb_x86_dvd_6850781.iso)           |\n| Latvian                | x64  | [lv_windows_10_enterprise_2015_ltsb_x64_dvd_6850778.iso](https://drive.massgrave.dev/lv_windows_10_enterprise_2015_ltsb_x64_dvd_6850778.iso)           |\n| Latvian                | x86  | [lv_windows_10_enterprise_2015_ltsb_x86_dvd_6850779.iso](https://drive.massgrave.dev/lv_windows_10_enterprise_2015_ltsb_x86_dvd_6850779.iso)           |\n| Norwegian-Bokmal       | x64  | [nb_windows_10_enterprise_2015_ltsb_x64_dvd_6850782.iso](https://drive.massgrave.dev/nb_windows_10_enterprise_2015_ltsb_x64_dvd_6850782.iso)           |\n| Norwegian-Bokmal       | x86  | [nb_windows_10_enterprise_2015_ltsb_x86_dvd_6850783.iso](https://drive.massgrave.dev/nb_windows_10_enterprise_2015_ltsb_x86_dvd_6850783.iso)           |\n| Dutch                  | x64  | [nl_windows_10_enterprise_2015_ltsb_x64_dvd_6848442.iso](https://drive.massgrave.dev/nl_windows_10_enterprise_2015_ltsb_x64_dvd_6848442.iso)           |\n| Dutch                  | x86  | [nl_windows_10_enterprise_2015_ltsb_x86_dvd_6848443.iso](https://drive.massgrave.dev/nl_windows_10_enterprise_2015_ltsb_x86_dvd_6848443.iso)           |\n| Polish                 | x64  | [pl_windows_10_enterprise_2015_ltsb_x64_dvd_6850784.iso](https://drive.massgrave.dev/pl_windows_10_enterprise_2015_ltsb_x64_dvd_6850784.iso)           |\n| Polish                 | x86  | [pl_windows_10_enterprise_2015_ltsb_x86_dvd_6850785.iso](https://drive.massgrave.dev/pl_windows_10_enterprise_2015_ltsb_x86_dvd_6850785.iso)           |\n| Portuguese-Portugal    | x64  | [pp_windows_10_enterprise_2015_ltsb_x64_dvd_6850808.iso](https://drive.massgrave.dev/pp_windows_10_enterprise_2015_ltsb_x64_dvd_6850808.iso)           |\n| Portuguese-Portugal    | x86  | [pp_windows_10_enterprise_2015_ltsb_x86_dvd_6850818.iso](https://drive.massgrave.dev/pp_windows_10_enterprise_2015_ltsb_x86_dvd_6850818.iso)           |\n| Portuguese-Brazil      | x64  | [pt_windows_10_enterprise_2015_ltsb_x64_dvd_6850787.iso](https://drive.massgrave.dev/pt_windows_10_enterprise_2015_ltsb_x64_dvd_6850787.iso)           |\n| Portuguese-Brazil      | x86  | [pt_windows_10_enterprise_2015_ltsb_x86_dvd_6850798.iso](https://drive.massgrave.dev/pt_windows_10_enterprise_2015_ltsb_x86_dvd_6850798.iso)           |\n| Romanian               | x64  | [ro_windows_10_enterprise_2015_ltsb_x64_dvd_6850828.iso](https://drive.massgrave.dev/ro_windows_10_enterprise_2015_ltsb_x64_dvd_6850828.iso)           |\n| Romanian               | x86  | [ro_windows_10_enterprise_2015_ltsb_x86_dvd_6850837.iso](https://drive.massgrave.dev/ro_windows_10_enterprise_2015_ltsb_x86_dvd_6850837.iso)           |\n| Russian                | x64  | [ru_windows_10_enterprise_2015_ltsb_x64_dvd_6850847.iso](https://drive.massgrave.dev/ru_windows_10_enterprise_2015_ltsb_x64_dvd_6850847.iso)           |\n| Russian                | x86  | [ru_windows_10_enterprise_2015_ltsb_x86_dvd_6850858.iso](https://drive.massgrave.dev/ru_windows_10_enterprise_2015_ltsb_x86_dvd_6850858.iso)           |\n| Slovak                 | x64  | [sk_windows_10_enterprise_2015_ltsb_x64_dvd_6850870.iso](https://drive.massgrave.dev/sk_windows_10_enterprise_2015_ltsb_x64_dvd_6850870.iso)           |\n| Slovak                 | x86  | [sk_windows_10_enterprise_2015_ltsb_x86_dvd_6850871.iso](https://drive.massgrave.dev/sk_windows_10_enterprise_2015_ltsb_x86_dvd_6850871.iso)           |\n| Slovenian              | x64  | [sl_windows_10_enterprise_2015_ltsb_x64_dvd_6850872.iso](https://drive.massgrave.dev/sl_windows_10_enterprise_2015_ltsb_x64_dvd_6850872.iso)           |\n| Slovenian              | x86  | [sl_windows_10_enterprise_2015_ltsb_x86_dvd_6850873.iso](https://drive.massgrave.dev/sl_windows_10_enterprise_2015_ltsb_x86_dvd_6850873.iso)           |\n| Serbian-Latin          | x64  | [sr-latn_windows_10_enterprise_2015_ltsb_x64_dvd_6850868.iso](https://drive.massgrave.dev/sr-latn_windows_10_enterprise_2015_ltsb_x64_dvd_6850868.iso) |\n| Serbian-Latin          | x86  | [sr-latn_windows_10_enterprise_2015_ltsb_x86_dvd_6850869.iso](https://drive.massgrave.dev/sr-latn_windows_10_enterprise_2015_ltsb_x86_dvd_6850869.iso) |\n| Swedish                | x64  | [sv_windows_10_enterprise_2015_ltsb_x64_dvd_6850899.iso](https://drive.massgrave.dev/sv_windows_10_enterprise_2015_ltsb_x64_dvd_6850899.iso)           |\n| Swedish                | x86  | [sv_windows_10_enterprise_2015_ltsb_x86_dvd_6850900.iso](https://drive.massgrave.dev/sv_windows_10_enterprise_2015_ltsb_x86_dvd_6850900.iso)           |\n| Thai                   | x64  | [th_windows_10_enterprise_2015_ltsb_x64_dvd_6850901.iso](https://drive.massgrave.dev/th_windows_10_enterprise_2015_ltsb_x64_dvd_6850901.iso)           |\n| Thai                   | x86  | [th_windows_10_enterprise_2015_ltsb_x86_dvd_6850902.iso](https://drive.massgrave.dev/th_windows_10_enterprise_2015_ltsb_x86_dvd_6850902.iso)           |\n| Turkish                | x64  | [tr_windows_10_enterprise_2015_ltsb_x64_dvd_6850904.iso](https://drive.massgrave.dev/tr_windows_10_enterprise_2015_ltsb_x64_dvd_6850904.iso)           |\n| Turkish                | x86  | [tr_windows_10_enterprise_2015_ltsb_x86_dvd_6850915.iso](https://drive.massgrave.dev/tr_windows_10_enterprise_2015_ltsb_x86_dvd_6850915.iso)           |\n| Chinese-Traditional         | x64  | [tw_windows_10_enterprise_2015_ltsb_x64_dvd_6848430.iso](https://drive.massgrave.dev/tw_windows_10_enterprise_2015_ltsb_x64_dvd_6848430.iso)           |\n| Chinese-Traditional         | x86  | [tw_windows_10_enterprise_2015_ltsb_x86_dvd_6848432.iso](https://drive.massgrave.dev/tw_windows_10_enterprise_2015_ltsb_x86_dvd_6848432.iso)           |\n| Ukrainian              | x64  | [uk_windows_10_enterprise_2015_ltsb_x64_dvd_6850925.iso](https://drive.massgrave.dev/uk_windows_10_enterprise_2015_ltsb_x64_dvd_6850925.iso)           |\n| Ukrainian              | x86  | [uk_windows_10_enterprise_2015_ltsb_x86_dvd_6850935.iso](https://drive.massgrave.dev/uk_windows_10_enterprise_2015_ltsb_x86_dvd_6850935.iso)           |\n\n== Windows LTSC ARM64\n\n**Windows 10/11 IoT Enterprise LTSC ARM64**\n\nCheck [**Windows ARM links**](./windows_arm_links)\n\n:::\n\n[1]: https://www.microsoft.com/en-us/evalcenter\n[2]: https://learn.microsoft.com/en-us/lifecycle/products/windows-11-home-and-pro\n[3]: https://learn.microsoft.com/en-us/lifecycle/products/windows-11-enterprise-and-education\n[4]: https://learn.microsoft.com/en-us/lifecycle/products/windows-11-enterprise-ltsc-2024\n[5]: https://learn.microsoft.com/en-us/lifecycle/products/windows-11-iot-enterprise-ltsc-2024\n[6]: https://www.elevenforum.com/t/enable-or-disable-background-apps-in-windows-11.923/\n[7]: https://gist.github.com/ave9858/a2153957afb053f7d0e7ffdd6c3dcb89\n[8]: https://apps.microsoft.com/detail/9nblggh4nns1\n[genuine]: https://nirevil.github.io/windows-activation/wa/genuine-installation-media#verify-authenticity-of-files\n"
  },
  {
    "path": "docs/wa/windows_xp_links.md",
    "content": "---\nlayout: doc\noutline: deep\ntitle: 'Windows XP Download'\ndescription: 'All download links lead to genuine files only'\ndate: 2024-01-19\neditLink: true\n---\n\n# Windows XP Download\n\n<br/>\n\n::: info All download links lead to **`genuine files`**\n\n- [**FAQ**](./genuine-installation-media#faq)\n\n- [**How to ensure that these files are genuine?**][genuine]\n\n- For x86, SP3 and for x64, SP2 are the last released ISOs available. x64 SP2 version was released in English language only.\n\n- x86 VL ISOs can be activated with the key:\n\n```shell\nXCYBK-2B3KV-G8T8F-WXJM7-WCTYT\n```\n\n- x64 VL ISOs can be activated with the key:\n\n```shell\nVCFQD-V9FX9-46WVH-K3CD4-4J3JM\n```\n\n::: \n\n<br/>\n\n:::tabs\n\n== Windows XP SP3 VL (x86)\n\n**Windows XP SP3 VL (x86)**\n\n| Language              | Arch | Link                                                                                                                                                                                   |\n|:----------------------|:-----|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Arabic                | x86  | [ar_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74065.iso](https://drive.massgrave.dev/ar_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74065.iso)           |\n| Czech                 | x86  | [cs_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73965.iso](https://drive.massgrave.dev/cs_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73965.iso)           |\n| Danish                | x86  | [da_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73968.iso](https://drive.massgrave.dev/da_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73968.iso)           |\n| German                | x86  | [de_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73985.iso](https://drive.massgrave.dev/de_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73985.iso)           |\n| Greek                 | x86  | [el_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73988.iso](https://drive.massgrave.dev/el_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73988.iso)           |\n| English               | x86  | [en_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73974.iso](https://drive.massgrave.dev/en_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73974.iso)           |\n| Spanish               | x86  | [es_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74009.iso](https://drive.massgrave.dev/es_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74009.iso)           |\n| Finnish               | x86  | [fi_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73979.iso](https://drive.massgrave.dev/fi_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73979.iso)           |\n| French                | x86  | [fr_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73982.iso](https://drive.massgrave.dev/fr_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73982.iso)           |\n| Hebrew                | x86  | [he_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74143.iso](https://drive.massgrave.dev/he_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74143.iso)           |\n| Hungarian             | x86  | [hu_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73991.iso](https://drive.massgrave.dev/hu_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73991.iso)           |\n| Italian               | x86  | [it_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73994.iso](https://drive.massgrave.dev/it_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73994.iso)           |\n| Japanese              | x86  | [ja_windows_xp_professional_with_service_pack_3_x86_dvd_vl_x14-74058.iso](https://drive.massgrave.dev/ja_windows_xp_professional_with_service_pack_3_x86_dvd_vl_x14-74058.iso)         |\n| Korean                | x86  | [ko_windows_xp_professional_k_with_service_pack_3_x86_cd_vl_x14-87427.iso](https://drive.massgrave.dev/ko_windows_xp_professional_k_with_service_pack_3_x86_cd_vl_x14-87427.iso)       |\n| Dutch                 | x86  | [nl_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73971.iso](https://drive.massgrave.dev/nl_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73971.iso)           |\n| Norwegian             | x86  | [no_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74000.iso](https://drive.massgrave.dev/no_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74000.iso)           |\n| Polish                | x86  | [pl_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74003.iso](https://drive.massgrave.dev/pl_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74003.iso)           |\n| Portuguese-Brazil     | x86  | [pt-br_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74137.iso](https://drive.massgrave.dev/pt-br_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74137.iso)     |\n| Portuguese-Portugal   | x86  | [pt-pt_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74006.iso](https://drive.massgrave.dev/pt-pt_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74006.iso)     |\n| Russian               | x86  | [ru_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74146.iso](https://drive.massgrave.dev/ru_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74146.iso)           |\n| Swedish               | x86  | [sv_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74012.iso](https://drive.massgrave.dev/sv_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74012.iso)           |\n| Turkish               | x86  | [tr_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74085.iso](https://drive.massgrave.dev/tr_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74085.iso)           |\n| zh-hans               | x86  | [zh-hans_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74070.iso](https://drive.massgrave.dev/zh-hans_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74070.iso) |\n| Chinese-Hong Kong SAR | x86  | [zh-hk_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74075.iso](https://drive.massgrave.dev/zh-hk_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74075.iso)     |\n| Chinese-Traditional   | x86  | [zh-tw_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74140.iso](https://drive.massgrave.dev/zh-tw_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74140.iso)     |\n\n== Windows XP SP2 VL (x64)\n\n**Windows XP SP2 VL (x64)**\n\n| Language | Arch | Link                                                                                                                   |\n|:---------|:-----|:-----------------------------------------------------------------------------------------------------------------------|\n| English  | x64  | [en_win_xp_pro_x64_with_sp2_vl_x13-41611.iso](https://drive.massgrave.dev/en_win_xp_pro_x64_with_sp2_vl_x13-41611.iso) |\n\n:::\n\n[genuine]: https://nirevil.github.io/windows-activation/wa/genuine-installation-media#verify-authenticity-of-files\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"Freedom to Dream\",\n  \"version\": \"0.0.0\",\n  \"description\": \"Instant Windows and Office Activation, A profes>\",\n  \"scripts\": {\n    \"dev\": \"vitepress dev docs\",\n    \"build\": \"vitepress build docs\",\n    \"preview\": \"vitepress preview docs\"\n  },\n  \"keywords\": [\n    \"windows\",\n    \"office\",\n    \"activation\",\n    \"kms\",\n    \"hwid\",\n    \"guide\",\n    \"toolkit\"\n  ],\n  \"author\": \"Diana\",\n  \"license\": \"ISC\",\n  \"type\": \"module\",\n  \"devDependencies\": {\n    \"markdown-it-attrs\": \"^4.1.6\",\n    \"markdown-it-footnote\": \"^4.0.0\",\n    \"markdown-it-mathjax3\": \"^4.3.2\",\n    \"vitepress\": \"^1.6.3\",\n    \"vitepress-plugin-image-viewer\": \"^1.1.6\",\n    \"vitepress-plugin-mermaid\": \"^2.0.16\",\n    \"vitepress-plugin-tabs\": \"^0.7.1\",\n    \"vue\": \"^3.4.27\"\n  },\n  \"dependencies\": {\n    \"video.js\": \"^8.23.3\",\n    \"viewerjs\": \"^1.11.6\"\n  }\n}\n"
  }
]