feat: update ComparisonTable and FAQAccordion to reflect eval ISOs
Add "Server & Enterprise ISOs" row to the Why MSDL comparison table and a new FAQ entry explaining eval editions, the 180-day trial, and where to find them. Closes #eval-polish. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
b1458934c3
commit
4ad8cfbfcc
2 changed files with 10 additions and 5 deletions
|
|
@ -11,11 +11,12 @@ interface Row {
|
|||
}
|
||||
|
||||
const rows: Row[] = [
|
||||
{ feature: 'Direct CDN link', msdl: true, official: true, others: false },
|
||||
{ feature: 'No browser required', msdl: true, official: false, others: 'varies' },
|
||||
{ feature: 'ARM64 support', msdl: true, official: false, others: false },
|
||||
{ feature: 'No account needed', msdl: true, official: true, others: 'varies' },
|
||||
{ feature: 'No ads or tracking', msdl: true, official: true, others: false },
|
||||
{ feature: 'Direct CDN link', msdl: true, official: true, others: false },
|
||||
{ feature: 'No browser required', msdl: true, official: false, others: 'varies' },
|
||||
{ feature: 'ARM64 support', msdl: true, official: false, others: false },
|
||||
{ feature: 'Server & Enterprise ISOs', msdl: true, official: false, others: false },
|
||||
{ feature: 'No account needed', msdl: true, official: true, others: 'varies' },
|
||||
{ feature: 'No ads or tracking', msdl: true, official: true, others: false },
|
||||
]
|
||||
|
||||
function Cell({ value, highlight = false }: { value: CellValue; highlight?: boolean }) {
|
||||
|
|
|
|||
|
|
@ -24,6 +24,10 @@ const faqs: FaqItem[] = [
|
|||
q: 'Can I use this with IDM or aria2?',
|
||||
a: 'Absolutely — and we strongly recommend it. Microsoft throttles single-threaded browser downloads. Tools like aria2 (aria2c -x 16 -s 16 --disable-ipv6=true "URL") or IDM use 16 parallel connections, which typically give you full line speed on their CDN.',
|
||||
},
|
||||
{
|
||||
q: 'Do you have Windows Server or Enterprise ISOs?',
|
||||
a: 'Yes — check the Enterprise & Server section (/eval). It includes Windows Server 2025, 2022, 2019, 2016, and Windows 11 Enterprise. These are official 180-day evaluation editions sourced directly from Microsoft\'s Eval Center CDN — no browser session, no registration required. They\'re fully functional for testing and lab use; a valid license is needed to activate beyond the trial period.',
|
||||
},
|
||||
{
|
||||
q: 'What\'s the difference between the various product IDs?',
|
||||
a: 'Each Windows release has a unique product ID on Microsoft\'s servers. For example, 3262 is Windows 11 25H2 (x64) and 3265 is Windows 11 25H2 (ARM64). MSDL exposes all known IDs so you can always find the exact build you need.',
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue