diff --git a/.claude/worktrees/fervent-chaplygin-214d22 b/.claude/worktrees/fervent-chaplygin-214d22 deleted file mode 160000 index 79450e4..0000000 --- a/.claude/worktrees/fervent-chaplygin-214d22 +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 79450e4b35b9bf2f232034acf06774628ec4ae90 diff --git a/.claude/worktrees/modest-hamilton-53380c/LICENSE b/.claude/worktrees/modest-hamilton-53380c/LICENSE deleted file mode 100644 index 29ab9f0..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2026 TechLatest (https://tech-latest.com) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/.claude/worktrees/modest-hamilton-53380c/README.md b/.claude/worktrees/modest-hamilton-53380c/README.md deleted file mode 100644 index 171317c..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/README.md +++ /dev/null @@ -1,202 +0,0 @@ -# windows-iso-downloader - -> A clean, open-source tool for obtaining official Windows ISO files directly from Microsoft's CDN — without a Windows machine, the Media Creation Tool, or browser restrictions. - -**Live:** [msdl.tech-latest.com](https://msdl.tech-latest.com) · **By:** [TechLatest](https://tech-latest.com) - -![License](https://img.shields.io/github/license/starkSV/windows-iso-downloader) -![Stars](https://img.shields.io/github/stars/starkSV/windows-iso-downloader) - ---- - -## What it does - -MSDL replicates the session flow that Microsoft uses to serve ISO download links — identical to the approach used by [Rufus/Fido](https://github.com/pbatard/Fido). You get the exact same signed CDN URL Microsoft would give you, just without the browser requirement. - -- ✅ Direct Microsoft CDN links — no proxying of actual file data -- ✅ 38 languages per release -- ✅ ARM64 + x64 + x86 support -- ✅ No account, no browser lock, no ads, no tracking -- ✅ Links expire in 24 hours (Microsoft's standard behaviour, not a limitation) - ---- - -## Screenshots - -| Home | All Releases | -|---|---| -| ![Home page showing featured Windows releases](frontend/public/screenshots/msdl-1.jpg) | ![Products listing page with search](frontend/public/screenshots/msdl-2.jpg) | - -| Product detail — language selector | Product detail — download links | -|---|---| -| ![Product detail page with language dropdown](frontend/public/screenshots/msdl-3.jpg) | ![Download links with expiry warning](frontend/public/screenshots/msdl-4.jpg) | - ---- - -## Project Structure - -``` -windows-iso-downloader/ -├── frontend/ # React 19 + TypeScript + Vite + Tailwind v4 -├── backend/ # Go proxy server (recommended for production) -└── README.md -``` - ---- - -## How It Works - -``` -Browser → Backend Proxy → Microsoft Download API → Signed CDN URL - ↓ - 1. Register session (Microsoft tracking endpoint) - 2. Parse MDT fingerprint script - 3. Fetch SKU list (available languages) - 4. Fetch signed CDN download URL -``` - -The flow mirrors [Fido.ps1](https://github.com/pbatard/Fido) by Pete Batard — the same script bundled with Rufus. - ---- - -## Running Locally - -### Backend (Go) - -```bash -cd backend -go run main.go -# Runs on http://localhost:3002 -``` - -### Frontend - -```bash -cd frontend -npm install -npm run dev -# Runs on http://localhost:5173 -``` - -Create `frontend/.env.local`: - -```env -VITE_API_URL=http://localhost:3002 -``` - ---- - -## API Reference - -### `GET /skuinfo?product_id=` - -Returns available languages for a product. - -```json -{ - "Skus": [ - { - "Id": "0x0409", - "Language": "en-US", - "LocalizedLanguage": "English (United States)" - } - ] -} -``` - -### `GET /proxy?product_id=&sku_id=` - -Returns signed download links from Microsoft's CDN. - -```json -{ - "ProductDownloadOptions": [ - { - "Uri": "https://software.download.prss.microsoft.com/...", - "Architecture": "x64" - } - ] -} -``` - ---- - -## Supported Products - -| Product | ID | Architecture | -|---|---|---| -| Windows 11 25H2 | 3262 | x64 | -| Windows 11 25H2 | 3265 | ARM64 | -| Windows 11 25H2 (updated) | 3321 | x64 | -| Windows 11 25H2 (updated) | 3324 | ARM64 | -| Windows 11 24H2 | 3113 | x64 | -| Windows 11 24H2 | 3131 | ARM64 | -| Windows 10 22H2 | 2618 | x64 / x86 | -| Windows 10 22H2 Home China | 2378 | x64 | -| Windows 8.1 | 52 | x64 / x86 | -| Windows 8.1 Single Language | 48 | x64 / x86 | - ---- - -## Tech Stack - -### Frontend (`frontend/`) - -| | | -|---|---| -| Framework | React 19 + TypeScript | -| Build tool | Vite 8 | -| Styling | Tailwind CSS v4 | -| Animation | Motion (Framer Motion v12) | -| UI primitives | Radix UI | -| Toast | Sonner | -| Font | Geist | -| Router | React Router v7 | - -### Backend (`backend/`) - -| | | -|---|---| -| Language | Go 1.22+ | -| HTTP | `net/http` (stdlib, no framework) | -| Session cache | `sync.RWMutex` in-memory · 15 min TTL | -| UUID | `github.com/google/uuid` | -| MDT parsing | `regexp` (stdlib) | - ---- - -## Deployment - -> ⚠️ **Deploy the backend to a standard VPS** (Hetzner, DigitalOcean, Linode, etc.) — **not** serverless platforms like Vercel, Cloudflare Workers, or AWS Lambda. Microsoft rate-limits known datacenter IP ranges. - -Recommended setup: - -| Component | Platform | -|---|---| -| Frontend | Cloudflare Pages / Vercel (static) | -| Backend | VPS with a non-datacenter IP | - ---- - -## Contributing - -Pull requests welcome. To add a new Windows release: - -1. Find the product ID on `www.microsoft.com/software-download-connector/api/` -2. Add it to `frontend/public/data/products.json` -3. Add related metadata in `ProductDetailPage.tsx` (`PRODUCT_META`, `RELATED_GROUPS`) -4. Update the product table in this README - ---- - -## Disclaimer - -This project is **not affiliated with, endorsed by, or sponsored by Microsoft Corporation**. -Windows is a registered trademark of Microsoft Corporation. -All ISO files are served directly from Microsoft's official CDN — this project does not host any files. - ---- - -## License - -[MIT](./LICENSE) © [TechLatest](https://tech-latest.com) diff --git a/.claude/worktrees/modest-hamilton-53380c/cloudflare-worker/worker.js b/.claude/worktrees/modest-hamilton-53380c/cloudflare-worker/worker.js deleted file mode 100644 index abacce5..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/cloudflare-worker/worker.js +++ /dev/null @@ -1,44 +0,0 @@ -const ALLOWED_HOSTS = [ - "www.microsoft.com", - "vlscppe.microsoft.com", - "ov-df.microsoft.com", -]; - -export default { - async fetch(request) { - const url = new URL(request.url); - - // Target host comes from the ?host= param; path+search are forwarded as-is - const targetHost = url.searchParams.get("host"); - if (!targetHost || !ALLOWED_HOSTS.includes(targetHost)) { - return new Response(JSON.stringify({ error: "Invalid or missing host parameter" }), { - status: 400, - headers: { "Content-Type": "application/json" }, - }); - } - - url.searchParams.delete("host"); - url.hostname = targetHost; - url.protocol = "https:"; - url.port = ""; - - const upstreamRequest = new Request(url.toString(), { - method: request.method, - headers: { - "User-Agent": request.headers.get("User-Agent") || "Mozilla/5.0", - "Referer": request.headers.get("Referer") || "", - "Accept": request.headers.get("Accept") || "application/json", - }, - }); - - const upstream = await fetch(upstreamRequest); - - return new Response(upstream.body, { - status: upstream.status, - headers: { - "Content-Type": upstream.headers.get("Content-Type") || "application/json", - "Access-Control-Allow-Origin": "*", - }, - }); - }, -}; diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/.env.example b/.claude/worktrees/modest-hamilton-53380c/frontend/.env.example deleted file mode 100644 index 820919e..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/frontend/.env.example +++ /dev/null @@ -1,2 +0,0 @@ -# Copy to .env.local and set your backend URL -VITE_API_URL=http://localhost:3002 diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/.gitignore b/.claude/worktrees/modest-hamilton-53380c/frontend/.gitignore deleted file mode 100644 index a547bf3..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/frontend/.gitignore +++ /dev/null @@ -1,24 +0,0 @@ -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* -pnpm-debug.log* -lerna-debug.log* - -node_modules -dist -dist-ssr -*.local - -# Editor directories and files -.vscode/* -!.vscode/extensions.json -.idea -.DS_Store -*.suo -*.ntvs* -*.njsproj -*.sln -*.sw? diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/README.md b/.claude/worktrees/modest-hamilton-53380c/frontend/README.md deleted file mode 100644 index 7dbf7eb..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/frontend/README.md +++ /dev/null @@ -1,73 +0,0 @@ -# React + TypeScript + Vite - -This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules. - -Currently, two official plugins are available: - -- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Oxc](https://oxc.rs) -- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/) - -## React Compiler - -The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see [this documentation](https://react.dev/learn/react-compiler/installation). - -## Expanding the ESLint configuration - -If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules: - -```js -export default defineConfig([ - globalIgnores(['dist']), - { - files: ['**/*.{ts,tsx}'], - extends: [ - // Other configs... - - // Remove tseslint.configs.recommended and replace with this - tseslint.configs.recommendedTypeChecked, - // Alternatively, use this for stricter rules - tseslint.configs.strictTypeChecked, - // Optionally, add this for stylistic rules - tseslint.configs.stylisticTypeChecked, - - // Other configs... - ], - languageOptions: { - parserOptions: { - project: ['./tsconfig.node.json', './tsconfig.app.json'], - tsconfigRootDir: import.meta.dirname, - }, - // other options... - }, - }, -]) -``` - -You can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules: - -```js -// eslint.config.js -import reactX from 'eslint-plugin-react-x' -import reactDom from 'eslint-plugin-react-dom' - -export default defineConfig([ - globalIgnores(['dist']), - { - files: ['**/*.{ts,tsx}'], - extends: [ - // Other configs... - // Enable lint rules for React - reactX.configs['recommended-typescript'], - // Enable lint rules for React DOM - reactDom.configs.recommended, - ], - languageOptions: { - parserOptions: { - project: ['./tsconfig.node.json', './tsconfig.app.json'], - tsconfigRootDir: import.meta.dirname, - }, - // other options... - }, - }, -]) -``` diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/eslint.config.js b/.claude/worktrees/modest-hamilton-53380c/frontend/eslint.config.js deleted file mode 100644 index 5e6b472..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/frontend/eslint.config.js +++ /dev/null @@ -1,23 +0,0 @@ -import js from '@eslint/js' -import globals from 'globals' -import reactHooks from 'eslint-plugin-react-hooks' -import reactRefresh from 'eslint-plugin-react-refresh' -import tseslint from 'typescript-eslint' -import { defineConfig, globalIgnores } from 'eslint/config' - -export default defineConfig([ - globalIgnores(['dist']), - { - files: ['**/*.{ts,tsx}'], - extends: [ - js.configs.recommended, - tseslint.configs.recommended, - reactHooks.configs.flat.recommended, - reactRefresh.configs.vite, - ], - languageOptions: { - ecmaVersion: 2020, - globals: globals.browser, - }, - }, -]) diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/index.html b/.claude/worktrees/modest-hamilton-53380c/frontend/index.html deleted file mode 100644 index 867f48c..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/frontend/index.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - Windows ISO Downloader | Official Microsoft Images - - - - - - - - - - - - - - - -
- - - diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/package.json b/.claude/worktrees/modest-hamilton-53380c/frontend/package.json deleted file mode 100644 index 178a815..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/frontend/package.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "name": "msdl-frontend-v2", - "private": true, - "version": "0.0.0", - "type": "module", - "scripts": { - "dev": "vite", - "build": "tsc -b && vite build", - "lint": "eslint .", - "preview": "vite preview" - }, - "dependencies": { - "@fontsource-variable/geist": "^5.2.8", - "@radix-ui/react-accordion": "^1.2.12", - "@radix-ui/react-select": "^2.2.6", - "geist": "^1.7.0", - "lucide-react": "^1.7.0", - "motion": "^12.38.0", - "react": "^19.2.4", - "react-dom": "^19.2.4", - "react-router-dom": "^7.13.2", - "sonner": "^2.0.7", - "tslib": "^2.8.1" - }, - "devDependencies": { - "@eslint/js": "^9.39.4", - "@tailwindcss/vite": "^4.2.2", - "@types/node": "^24.12.0", - "@types/react": "^19.2.14", - "@types/react-dom": "^19.2.3", - "@vitejs/plugin-react": "^6.0.1", - "eslint": "^9.39.4", - "eslint-plugin-react-hooks": "^7.0.1", - "eslint-plugin-react-refresh": "^0.5.2", - "globals": "^17.4.0", - "tailwindcss": "^4.2.2", - "typescript": "~5.9.3", - "typescript-eslint": "^8.57.0", - "vite": "^8.0.1" - } -} diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/public/_redirects b/.claude/worktrees/modest-hamilton-53380c/frontend/public/_redirects deleted file mode 100644 index 7797f7c..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/frontend/public/_redirects +++ /dev/null @@ -1 +0,0 @@ -/* /index.html 200 diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/public/data/products.json b/.claude/worktrees/modest-hamilton-53380c/frontend/public/data/products.json deleted file mode 100644 index fd7a303..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/frontend/public/data/products.json +++ /dev/null @@ -1,207 +0,0 @@ -{ - "48": { - "name": "Windows 8.1 Single Language (9600.17415)", - "badge": "LEGACY", - "archs": [ - "x64", - "x86" - ], - "related": [ - "52" - ] - }, - "52": { - "name": "Windows 8.1 (9600.17415)", - "badge": "LEGACY", - "archs": [ - "x64", - "x86" - ], - "related": [ - "48", - "2618" - ] - }, - "2378": { - "name": "Windows 10 22H2 Home China (19045.2006)", - "badge": "EOL SOON", - "archs": [ - "x64" - ], - "related": [ - "2618" - ] - }, - "2618": { - "name": "Windows 10 22H2 v1 (19045.2965)", - "badge": "EOL SOON", - "archs": [ - "x64", - "x86" - ], - "related": [ - "3113", - "3262", - "52" - ] - }, - "3113": { - "name": "Windows 11 24H2 (26100.1742)", - "badge": "STABLE", - "archs": [ - "x64" - ], - "related": [ - "3262", - "3131", - "2618" - ] - }, - "3114": { - "name": "Windows 11 24H2 Home China (26100.1742)", - "badge": "STABLE", - "archs": [ - "x64" - ], - "related": [ - "3113", - "3115" - ] - }, - "3115": { - "name": "Windows 11 24H2 Pro China (26100.1742)", - "badge": "STABLE", - "archs": [ - "x64" - ], - "related": [ - "3113", - "3114" - ] - }, - "3131": { - "name": "Windows 11 Arm64 24H2 (26100.1742)", - "badge": "STABLE", - "archs": [ - "ARM64" - ], - "related": [ - "3265", - "3113" - ] - }, - "3132": { - "name": "Windows 11 Arm64 24H2 Home China (26100.1742)", - "badge": "STABLE", - "archs": [ - "ARM64" - ], - "related": [ - "3131", - "3133" - ] - }, - "3133": { - "name": "Windows 11 Arm64 24H2 Pro China (26100.1742)", - "badge": "STABLE", - "archs": [ - "ARM64" - ], - "related": [ - "3131", - "3132" - ] - }, - "3262": { - "name": "Windows 11 25H2 (26200.6584)", - "badge": "LATEST", - "archs": [ - "x64" - ], - "related": [ - "3265", - "3321", - "3113" - ] - }, - "3263": { - "name": "Windows 11 25H2 Home China (26200.6584)", - "badge": "LATEST", - "archs": [ - "x64" - ], - "related": [ - "3262", - "3264" - ] - }, - "3264": { - "name": "Windows 11 25H2 Pro China (26200.6584)", - "badge": "LATEST", - "archs": [ - "x64" - ], - "related": [ - "3262", - "3263" - ] - }, - "3265": { - "name": "Windows 11 Arm64 25H2 (26200.6584)", - "badge": "LATEST", - "archs": [ - "ARM64" - ], - "related": [ - "3262", - "3321", - "3131" - ] - }, - "3266": { - "name": "Windows 11 Arm64 25H2 Home China (26200.6584)", - "badge": "LATEST", - "archs": [ - "ARM64" - ], - "related": [ - "3265", - "3267" - ] - }, - "3267": { - "name": "Windows 11 Arm64 25H2 Pro China (26200.6584)", - "badge": "LATEST", - "archs": [ - "ARM64" - ], - "related": [ - "3265", - "3266" - ] - }, - "3321": { - "name": "Windows 11 25H2 (Updated Oct)", - "badge": "LATEST", - "archs": [ - "x64" - ], - "related": [ - "3262", - "3324", - "3113" - ] - }, - "3324": { - "name": "Windows 11 Arm64 25H2 (Updated Oct)", - "badge": "LATEST", - "archs": [ - "ARM64" - ], - "related": [ - "3321", - "3262", - "3265" - ] - } -} \ No newline at end of file diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/public/favicon.svg b/.claude/worktrees/modest-hamilton-53380c/frontend/public/favicon.svg deleted file mode 100644 index 6893eb1..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/frontend/public/favicon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/public/icons.svg b/.claude/worktrees/modest-hamilton-53380c/frontend/public/icons.svg deleted file mode 100644 index e952219..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/frontend/public/icons.svg +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/public/og-image.png b/.claude/worktrees/modest-hamilton-53380c/frontend/public/og-image.png deleted file mode 100644 index bc269e5..0000000 Binary files a/.claude/worktrees/modest-hamilton-53380c/frontend/public/og-image.png and /dev/null differ diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/public/robots.txt b/.claude/worktrees/modest-hamilton-53380c/frontend/public/robots.txt deleted file mode 100644 index ea4d9e7..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/frontend/public/robots.txt +++ /dev/null @@ -1,4 +0,0 @@ -User-agent: * -Allow: / - -Sitemap: https://msdl.tech-latest.com/sitemap.xml diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/public/screenshots/msdl-1.jpg b/.claude/worktrees/modest-hamilton-53380c/frontend/public/screenshots/msdl-1.jpg deleted file mode 100644 index f66f6bf..0000000 Binary files a/.claude/worktrees/modest-hamilton-53380c/frontend/public/screenshots/msdl-1.jpg and /dev/null differ diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/public/screenshots/msdl-2.jpg b/.claude/worktrees/modest-hamilton-53380c/frontend/public/screenshots/msdl-2.jpg deleted file mode 100644 index bbc4631..0000000 Binary files a/.claude/worktrees/modest-hamilton-53380c/frontend/public/screenshots/msdl-2.jpg and /dev/null differ diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/public/screenshots/msdl-3.jpg b/.claude/worktrees/modest-hamilton-53380c/frontend/public/screenshots/msdl-3.jpg deleted file mode 100644 index a45d52a..0000000 Binary files a/.claude/worktrees/modest-hamilton-53380c/frontend/public/screenshots/msdl-3.jpg and /dev/null differ diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/public/screenshots/msdl-4.jpg b/.claude/worktrees/modest-hamilton-53380c/frontend/public/screenshots/msdl-4.jpg deleted file mode 100644 index a7270b9..0000000 Binary files a/.claude/worktrees/modest-hamilton-53380c/frontend/public/screenshots/msdl-4.jpg and /dev/null differ diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/public/sitemap.xml b/.claude/worktrees/modest-hamilton-53380c/frontend/public/sitemap.xml deleted file mode 100644 index 1ad0753..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/frontend/public/sitemap.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - - https://msdl.tech-latest.com/ - 2026-05-12 - 1.0 - weekly - - - https://msdl.tech-latest.com/products - 2026-05-12 - 0.9 - weekly - - - https://msdl.tech-latest.com/about - 2026-04-09 - 0.5 - monthly - - - https://msdl.tech-latest.com/privacy-policy - 2026-04-09 - 0.3 - yearly - - - https://msdl.tech-latest.com/disclaimer - 2026-04-09 - 0.3 - yearly - - - - https://msdl.tech-latest.com/product/482026-05-120.8monthly - https://msdl.tech-latest.com/product/522026-05-120.8monthly - https://msdl.tech-latest.com/product/23782026-05-120.8monthly - https://msdl.tech-latest.com/product/26182026-05-120.8monthly - https://msdl.tech-latest.com/product/31132026-05-120.8monthly - https://msdl.tech-latest.com/product/31142026-05-120.8monthly - https://msdl.tech-latest.com/product/31152026-05-120.8monthly - https://msdl.tech-latest.com/product/31312026-05-120.8monthly - https://msdl.tech-latest.com/product/31322026-05-120.8monthly - https://msdl.tech-latest.com/product/31332026-05-120.8monthly - https://msdl.tech-latest.com/product/32622026-05-120.8monthly - https://msdl.tech-latest.com/product/32632026-05-120.8monthly - https://msdl.tech-latest.com/product/32642026-05-120.8monthly - https://msdl.tech-latest.com/product/32652026-05-120.8monthly - https://msdl.tech-latest.com/product/32662026-05-120.8monthly - https://msdl.tech-latest.com/product/32672026-05-120.8monthly - https://msdl.tech-latest.com/product/33212026-05-120.8monthly - https://msdl.tech-latest.com/product/33242026-05-120.8monthly - diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/src/App.tsx b/.claude/worktrees/modest-hamilton-53380c/frontend/src/App.tsx deleted file mode 100644 index b701fa1..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/frontend/src/App.tsx +++ /dev/null @@ -1,46 +0,0 @@ -import { Routes, Route } from 'react-router-dom' -import { Toaster } from 'sonner' -import Dock from './components/Dock' -import SiteFooter from './components/SiteFooter' -import HomePage from './pages/HomePage' -import ProductsPage from './pages/ProductsPage' -import ProductDetailPage from './pages/ProductDetailPage' -import AboutPage from './pages/AboutPage' -import PrivacyPolicyPage from './pages/PrivacyPolicyPage' -import DisclaimerPage from './pages/DisclaimerPage' -import NotFoundPage from './pages/NotFoundPage' -import ScrollToTop from './components/ScrollToTop' - -export default function App() { - return ( -
- -
- - } /> - } /> - } /> - } /> - } /> - } /> - } /> - -
- - - -
- ) -} diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/src/assets/hero.png b/.claude/worktrees/modest-hamilton-53380c/frontend/src/assets/hero.png deleted file mode 100644 index cc51a3d..0000000 Binary files a/.claude/worktrees/modest-hamilton-53380c/frontend/src/assets/hero.png and /dev/null differ diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/src/assets/react.svg b/.claude/worktrees/modest-hamilton-53380c/frontend/src/assets/react.svg deleted file mode 100644 index 6c87de9..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/frontend/src/assets/react.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/src/assets/vite.svg b/.claude/worktrees/modest-hamilton-53380c/frontend/src/assets/vite.svg deleted file mode 100644 index 5101b67..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/frontend/src/assets/vite.svg +++ /dev/null @@ -1 +0,0 @@ -Vite diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/Aria2Tip.tsx b/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/Aria2Tip.tsx deleted file mode 100644 index f99d363..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/Aria2Tip.tsx +++ /dev/null @@ -1,78 +0,0 @@ -import { useState } from 'react' -import { motion, AnimatePresence } from 'motion/react' -import { Terminal, ChevronRight, Copy, Check } from 'lucide-react' -import { toast } from 'sonner' - -interface Aria2TipProps { - downloadUrl?: string -} - -export default function Aria2Tip({ downloadUrl }: Aria2TipProps) { - const [open, setOpen] = useState(false) - const [copied, setCopied] = useState(false) - - const urlPlaceholder = downloadUrl || 'PASTE_YOUR_LINK_HERE' - const command = `aria2c -x 16 -s 16 --disable-ipv6=true "${urlPlaceholder}"` - - function handleCopy() { - navigator.clipboard.writeText(command) - setCopied(true) - toast.success('Command copied!') - setTimeout(() => setCopied(false), 2000) - } - - return ( -
- - - - {open && ( - -
-
- Terminal - -
-
- - $ - {command} - -
- {!downloadUrl && ( -

- Generate a link above, then paste it into this command for 16× speed. -

- )} -
-
- )} -
-
- ) -} diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/Badge.tsx b/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/Badge.tsx deleted file mode 100644 index e05c38b..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/Badge.tsx +++ /dev/null @@ -1,34 +0,0 @@ -interface BadgeProps { - variant: 'latest' | 'stable' | 'eol' | 'legacy' - label?: string -} - -const config = { - latest: { - label: 'LATEST', - className: 'bg-blue-500/15 text-blue-400 border-blue-500/25', - }, - stable: { - label: 'STABLE', - className: 'bg-green-500/15 text-green-400 border-green-500/25', - }, - eol: { - label: 'END OF LIFE', - className: 'bg-amber-500/15 text-amber-400 border-amber-500/25', - }, - legacy: { - label: 'LEGACY', - className: 'bg-zinc-500/15 text-zinc-400 border-zinc-500/25', - }, -} - -export default function Badge({ variant, label }: BadgeProps) { - const { label: defaultLabel, className } = config[variant] - return ( - - {label ?? defaultLabel} - - ) -} diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/ComparisonTable.tsx b/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/ComparisonTable.tsx deleted file mode 100644 index 883a061..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/ComparisonTable.tsx +++ /dev/null @@ -1,77 +0,0 @@ -import { motion } from 'motion/react' -import { Check, X, Minus } from 'lucide-react' - -type CellValue = true | false | 'varies' - -interface Row { - feature: string - msdl: CellValue - official: CellValue - others: CellValue -} - -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 }, -] - -function Cell({ value, highlight = false }: { value: CellValue; highlight?: boolean }) { - if (value === true) - return - if (value === false) - return - return -} - -export default function ComparisonTable() { - return ( -
- -

Why MSDL?

-

Compared to your other options.

- - {/* Scrollable wrapper on mobile to prevent page-level overflow */} -
-
- {/* Header */} -
-
Feature
-
MSDL
-
Official
-
Others
-
- - {/* Rows */} - {rows.map((row, i) => ( -
-
{row.feature}
-
- -
-
- -
-
- -
-
- ))} -
-
- -

← scroll →

-
-
- ) -} diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/Dock.tsx b/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/Dock.tsx deleted file mode 100644 index 3c3c48b..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/Dock.tsx +++ /dev/null @@ -1,125 +0,0 @@ -import { useState, useEffect } from 'react' -import { useLocation, useNavigate } from 'react-router-dom' -import { motion } from 'motion/react' -import { Home, LayoutGrid, Info, ExternalLink, Shield } from 'lucide-react' - -interface DockItem { - label: string - icon: React.ReactNode - path?: string - href?: string -} - -const items: DockItem[] = [ - { label: 'Home', icon: , path: '/' }, - { label: 'Products', icon: , path: '/products' }, - { label: 'About', icon: , path: '/about' }, - { label: 'Privacy', icon: , path: '/privacy-policy' }, - { label: 'TechLatest', icon: , href: 'https://tech-latest.com' }, -] - -export default function Dock() { - const location = useLocation() - const navigate = useNavigate() - const [activeIndex, setActiveIndex] = useState(0) - - useEffect(() => { - const idx = items.findIndex(item => item.path && item.path === location.pathname) - if (idx !== -1) setActiveIndex(idx) - }, [location.pathname]) - - function handleClick(item: DockItem, index: number) { - setActiveIndex(index) - if (item.href) { - window.open(item.href, '_blank', 'noopener noreferrer') - } else if (item.path) { - navigate(item.path) - } - } - - return ( - <> - {/* ── DESKTOP DOCK (sm+) — centered floating pill ── */} -
- - {items.map((item, i) => { - const isActive = i === activeIndex - return ( - handleClick(item, i)} - whileHover={{ scale: 1.06, y: -2 }} - whileTap={{ scale: 0.93 }} - transition={{ type: 'spring', stiffness: 400, damping: 22 }} - className={` - relative flex items-center gap-2 rounded-xl cursor-pointer px-3 py-2 - transition-all duration-200 - ${isActive - ? 'bg-white/10 border border-white/15 text-white' - : 'border border-transparent text-zinc-500 hover:text-zinc-300' - } - `} - aria-label={item.label} - > - {item.icon} - - {/* Expanding active label */} - - {item.label} - - - {/* Active dot */} - {isActive && ( - - )} - - ) - })} - -
- - {/* ── MOBILE DOCK ( - {items.map((item, i) => { - const isActive = i === activeIndex - return ( - - ) - })} - - - ) -} diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/FAQAccordion.tsx b/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/FAQAccordion.tsx deleted file mode 100644 index 05b1d03..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/FAQAccordion.tsx +++ /dev/null @@ -1,92 +0,0 @@ -import { useState } from 'react' -import { motion, AnimatePresence } from 'motion/react' -import { ChevronRight } from 'lucide-react' - -interface FaqItem { - q: string - a: string -} - -const faqs: FaqItem[] = [ - { - q: 'Is this legal?', - a: 'Yes. MSDL does not host, modify, or redistribute any Microsoft files. It automates access to download links that Microsoft already provides for free at microsoft.com/software-download — the same way Rufus and the open-source Fido script do. Microsoft itself recommends Rufus (which uses the identical approach) in its official documentation. You are downloading a file directly from Microsoft\'s own servers. A valid Windows license is still required to activate the OS.', - }, - { - q: 'Are these download links safe?', - a: 'Yes. MSDL never stores or modifies any files. It retrieves signed, time-limited download links directly from Microsoft\'s servers (software.download.prss.microsoft.com). You can verify this by inspecting your browser\'s network requests.', - }, - { - q: 'Why do links expire in 24 hours?', - a: 'Microsoft generates short-lived, IP-tied signed URLs to prevent redistribution and hotlinking of their ISOs. This is the same link you\'d get from the official Microsoft Software Download page — we just make it accessible without a browser.', - }, - { - 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: '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.', - }, - { - q: 'Is MSDL open source?', - a: 'Yes. Both the frontend and the backend proxy are fully open source. The backend implements the same session-based flow as the Fido PowerShell script, ported to Go and Node.js. You can self-host the entire stack.', - }, -] - -export default function FAQAccordion() { - const [open, setOpen] = useState(null) - - return ( -
- -

Frequently asked questions

-

Everything you need to know before downloading.

- -
- {faqs.map((faq, i) => ( -
- - - - {open === i && ( - -

- {faq.a} -

-
- )} -
-
- ))} -
-
-
- ) -} diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/HowItWorks.tsx b/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/HowItWorks.tsx deleted file mode 100644 index 580a93a..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/HowItWorks.tsx +++ /dev/null @@ -1,62 +0,0 @@ -import { motion } from 'motion/react' -import { LayoutGrid, Globe, Link2 } from 'lucide-react' - -const steps = [ - { - num: '1', - icon: LayoutGrid, - title: 'Pick a release', - desc: 'Choose from Windows 11, 10, and 8.1 across all feature updates.', - }, - { - num: '2', - icon: Globe, - title: 'Choose language', - desc: '38 localised languages available for every release.', - }, - { - num: '3', - icon: Link2, - title: 'Get CDN link', - desc: 'Direct from Microsoft\'s servers. No proxy, no middleman.', - }, -] - -export default function HowItWorks() { - return ( -
- -

How it works

-

Three steps to your official Windows ISO.

- -
- {steps.map((step, i) => { - const Icon = step.icon - return ( -
-
- - {i + 1} - - -
-
-

{step.title}

-

{step.desc}

-
-
- ) - })} -
-
-
- ) -} diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/ProductCard.tsx b/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/ProductCard.tsx deleted file mode 100644 index 343071c..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/ProductCard.tsx +++ /dev/null @@ -1,76 +0,0 @@ -import { motion } from 'motion/react' -import { Download, ArrowRight } from 'lucide-react' -import Badge from './Badge' - -const WinLogo = ({ className }: { className?: string }) => ( - - - -) - -type BadgeVariant = 'latest' | 'stable' | 'eol' | 'legacy' - -interface ProductCardProps { - id: string - name: string - version: string - build: string - description: string - badge: BadgeVariant - archs?: string[] -} - -export default function ProductCard({ - name, - version, - build, - description, - badge, - archs = ['x64'], -}: ProductCardProps) { - return ( - - {/* Header row */} -
-
- -
- -
- - {/* Title */} -
-

{name} {version}

-

Build {build}

-
- - {/* Description */} -

{description}

- - {/* Footer */} -
-
- {archs.map(arch => ( - - {arch} - - ))} -
-
- - Get links - -
-
-
- ) -} diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/RelatedReleases.tsx b/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/RelatedReleases.tsx deleted file mode 100644 index f9e9ae4..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/RelatedReleases.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import { useNavigate } from 'react-router-dom' -import { ArrowRight } from 'lucide-react' - -interface RelatedProduct { - id: string - label: string -} - -interface RelatedReleasesProps { - current: string - items: RelatedProduct[] -} - -export default function RelatedReleases({ current, items }: RelatedReleasesProps) { - const navigate = useNavigate() - const filtered = items.filter(i => i.id !== current) - if (filtered.length === 0) return null - - return ( -
-

- Also available -

-
- {filtered.map(item => ( - - ))} -
-
- ) -} diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/ScrollToTop.tsx b/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/ScrollToTop.tsx deleted file mode 100644 index 6b85a02..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/ScrollToTop.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import { useEffect } from 'react' -import { useLocation } from 'react-router-dom' - -export default function ScrollToTop() { - const { pathname } = useLocation() - - useEffect(() => { - window.scrollTo({ top: 0, behavior: 'instant' }) - }, [pathname]) - - return null -} diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/SiteFooter.tsx b/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/SiteFooter.tsx deleted file mode 100644 index a231272..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/SiteFooter.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import { Link } from 'react-router-dom' - -export default function SiteFooter() { - return ( -
-

- This open-source project is not affiliated with Microsoft Corporation.{' '} - Windows is a registered trademark of Microsoft Corporation.{' '} - All ISO files are hosted on Microsoft's official CDN. -

-
- Privacy Policy - · - Disclaimer - · - About - · - - GitHub - -
-
- ) -} diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/StatsBar.tsx b/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/StatsBar.tsx deleted file mode 100644 index b256dd8..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/StatsBar.tsx +++ /dev/null @@ -1,46 +0,0 @@ -import { motion } from 'motion/react' -import { useState, useEffect } from 'react' - -interface Stat { - value: string - label: string -} - -export default function StatsBar() { - const [totalReleases, setTotalReleases] = useState('17') - - useEffect(() => { - fetch('/data/products.json') - .then(r => r.json()) - .then((data: Record) => { - const activeCount = Object.values(data).filter(p => p.active !== false).length - setTotalReleases(activeCount.toString()) - }) - .catch(() => {}) - }, []) - - const stats: Stat[] = [ - { value: totalReleases, label: 'releases available' }, - { value: '38', label: 'languages' }, - { value: '0', label: 'intermediaries' }, - ] - - return ( - - {stats.map((s, i) => ( - - - {s.value} - {' '}{s.label} - - {i < stats.length - 1 && ·} - - ))} - - ) -} diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/SystemRequirements.tsx b/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/SystemRequirements.tsx deleted file mode 100644 index ca81a67..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/frontend/src/components/SystemRequirements.tsx +++ /dev/null @@ -1,42 +0,0 @@ -import { Cpu, MemoryStick, HardDrive, Shield } from 'lucide-react' - -interface Requirement { - icon: React.ReactNode - value: string - label: string -} - -interface SystemRequirementsProps { - isWin11?: boolean -} - -export default function SystemRequirements({ isWin11 = false }: SystemRequirementsProps) { - const requirements: Requirement[] = [ - { icon: , value: '1 GHz+', label: 'Processor' }, - { icon: , value: isWin11 ? '4 GB' : '2 GB', label: 'RAM' }, - { icon: , value: '64 GB', label: 'Storage' }, - ] - - return ( -
-

- System Requirements -

-
- {requirements.map(req => ( -
- {req.icon} - {req.value} - {req.label} -
- ))} -
- {isWin11 && ( -
- - TPM 2.0 required for Windows 11 -
- )} -
- ) -} diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/src/index.css b/.claude/worktrees/modest-hamilton-53380c/frontend/src/index.css deleted file mode 100644 index 9f9d4ff..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/frontend/src/index.css +++ /dev/null @@ -1,57 +0,0 @@ -@import "tailwindcss"; -@import "@fontsource-variable/geist"; - -@theme { - /* Background layers */ - --color-bg: #09090b; - --color-surface: #111113; - --color-surface-2: #18181b; - - /* Borders */ - --color-border: rgba(255, 255, 255, 0.07); - --color-border-hover: rgba(255, 255, 255, 0.13); - - /* Accent */ - --color-accent: #3b82f6; - --color-accent-hover: #2563eb; - - /* Text */ - --color-text: #fafafa; - --color-text-2: #a1a1aa; - --color-text-muted: #52525b; - - /* Status */ - --color-success: #22c55e; - --color-warning: #f59e0b; - --color-error: #ef4444; - - /* Font families */ - --font-sans: 'Geist Variable', 'Geist', 'Inter', ui-sans-serif, system-ui, sans-serif; - --font-mono: 'Geist Mono Variable', 'Geist Mono', 'JetBrains Mono', ui-monospace, monospace; -} - -* { - box-sizing: border-box; -} - -html { - background-color: #09090b; - color: #fafafa; - font-family: var(--font-sans); - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - scroll-padding-bottom: 120px; - overflow-x: hidden; -} - -body { - margin: 0; - min-height: 100vh; - overflow-x: hidden; -} - -/* Thin, minimal scrollbar */ -::-webkit-scrollbar { width: 4px; height: 4px; } -::-webkit-scrollbar-track { background: transparent; } -::-webkit-scrollbar-thumb { background: #27272a; border-radius: 2px; } -::-webkit-scrollbar-thumb:hover { background: #3f3f46; } diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/src/main.tsx b/.claude/worktrees/modest-hamilton-53380c/frontend/src/main.tsx deleted file mode 100644 index ade9d64..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/frontend/src/main.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import { StrictMode } from 'react' -import { createRoot } from 'react-dom/client' -import { BrowserRouter } from 'react-router-dom' -import './index.css' -import App from './App.tsx' - -createRoot(document.getElementById('root')!).render( - - - - - , -) diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/src/pages/AboutPage.tsx b/.claude/worktrees/modest-hamilton-53380c/frontend/src/pages/AboutPage.tsx deleted file mode 100644 index cc8a6a4..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/frontend/src/pages/AboutPage.tsx +++ /dev/null @@ -1,121 +0,0 @@ -import { motion } from 'motion/react' - -const SITE_URL = 'https://msdl.tech-latest.com' - -function Section({ title, children }: { title: string; children: React.ReactNode }) { - return ( -
-

{title}

-
{children}
-
- ) -} - -export default function AboutPage() { - return ( - <> - About MSDL | Windows ISO Downloader - - - - - - -
- -
-

About MSDL

-

A TechLatest open-source project

-
- -
-

- MSDL (Microsoft Software Download Links) is a clean, open-source web tool for - obtaining official Windows ISO files directly from Microsoft's content delivery network - — without needing a Windows machine, the Media Creation Tool, or a browser lock check. -

-

- There are no third-party hosts, no redirects, no registration, and no ads. - Every link you receive is exactly the same signed URL you would get from - Microsoft's own download page. -

-
- -
-

- Our backend replicates the session-based authentication flow that Microsoft uses to - serve download links to end users. The same approach is used by{' '} - - Fido - {' '} - (the PowerShell script bundled with Rufus). The flow is: -

-
    -
  1. Register a session with Microsoft's tracking endpoint
  2. -
  3. Fetch and parse the MDT fingerprinting script
  4. -
  5. Call the SKU info API to retrieve available languages
  6. -
  7. Call the download links API using the warmed session to get signed CDN URLs
  8. -
-

- Links are IP-tied to the server and expire after 24 hours — this is standard - Microsoft behaviour, not a limitation of MSDL. -

-
- -
-

- All product data (release names, build numbers, and available architectures) is sourced - from Microsoft's official software download connector API: -

-

- - www.microsoft.com/software-download-connector/api/ - -

-

- Product IDs are maintained manually based on Microsoft's release cadence. - Windows 11 25H2, 24H2, Windows 10 22H2, and Windows 8.1 are currently listed. - New releases are added as Microsoft publishes them. -

-
- -
-

- The underlying session flow is inspired by{' '} - - Fido - {' '} - by Pete Batard, the same mechanism powering Rufus's ISO download feature. -

-

- Built and maintained by{' '} - - TechLatest - . -

-
-
-
- - ) -} diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/src/pages/DisclaimerPage.tsx b/.claude/worktrees/modest-hamilton-53380c/frontend/src/pages/DisclaimerPage.tsx deleted file mode 100644 index 263d91b..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/frontend/src/pages/DisclaimerPage.tsx +++ /dev/null @@ -1,86 +0,0 @@ -import { motion } from 'motion/react' - -const SITE_URL = 'https://msdl.tech-latest.com' - -function Section({ title, children }: { title: string; children: React.ReactNode }) { - return ( -
-

{title}

-
{children}
-
- ) -} - -export default function DisclaimerPage() { - return ( - <> - Disclaimer | Windows ISO Downloader - - - - - - -
- -
-

Disclaimer

-

Last updated: April 9, 2026

-
- -
- This open-source project is not affiliated with, endorsed by, or sponsored by - Microsoft Corporation in any way. Windows is a registered trademark of Microsoft Corporation. -
- -
-

- MSDL is an independent, open-source project. It is not produced, approved, or supported - by Microsoft Corporation. The name "Windows" and the Windows logo are registered - trademarks of Microsoft Corporation. -

-
- -
-

- MSDL exists solely to make it easier for users to access official, unmodified Microsoft - Windows ISO files that Microsoft already makes freely available for download. All files - are served directly from Microsoft's own servers — we do not host, mirror, or modify - any content. -

-
- -
-

- This tool is provided "as is" without warranty of any kind. We make no guarantees - about the availability of Microsoft's download links, the uptime of our backend, or - the compatibility of any downloaded ISO with your hardware configuration. -

-
- -
-

- By using this tool, you agree that you are solely responsible for complying with - Microsoft's End User License Agreement (EULA) and any applicable laws in your jurisdiction. - Downloading Windows does not grant you a license to use it — a valid product key or - digital license is required for activation. -

-
- -
-

- The source code is publicly available. You are free to inspect, fork, and self-host - this project under the terms of its open-source license. The project credits the - open-source Fido script by Pete Batard for the underlying session flow. -

-
-
-
- - ) -} diff --git a/.claude/worktrees/modest-hamilton-53380c/frontend/src/pages/HomePage.tsx b/.claude/worktrees/modest-hamilton-53380c/frontend/src/pages/HomePage.tsx deleted file mode 100644 index 8b6342d..0000000 --- a/.claude/worktrees/modest-hamilton-53380c/frontend/src/pages/HomePage.tsx +++ /dev/null @@ -1,191 +0,0 @@ -import { useState, useEffect } from 'react' -import { Link } from 'react-router-dom' -import { motion } from 'motion/react' -import { ArrowRight } from 'lucide-react' -import ProductCard from '../components/ProductCard' -import StatsBar from '../components/StatsBar' -import HowItWorks from '../components/HowItWorks' -import ComparisonTable from '../components/ComparisonTable' -import FAQAccordion from '../components/FAQAccordion' - -const SITE_URL = 'https://msdl.tech-latest.com' - -const featured = [ - { - id: '3262', - name: 'Windows 11', - version: '25H2', - build: '26200.6584', - description: 'The latest Windows 11 release with AI features and improved performance.', - badge: 'latest' as const, - archs: ['x64', 'ARM64'], - }, - { - id: '3113', - name: 'Windows 11', - version: '24H2', - build: '26100.1742', - description: 'The widely deployed stable release. Recommended for enterprise environments.', - badge: 'stable' as const, - archs: ['x64', 'ARM64'], - }, - { - id: '2618', - name: 'Windows 10', - version: '22H2', - build: '19045.2965', - description: 'The final Windows 10 feature update. Security support until October 2025.', - badge: 'eol' as const, - archs: ['x64', 'x86'], - }, - { - id: '52', - name: 'Windows 8.1', - version: 'RTM', - build: '9600.17415', - description: 'Legacy release for older hardware compatibility and historical reference.', - badge: 'legacy' as const, - archs: ['x64', 'x86'], - }, -] - -const container = { - hidden: {}, - show: { transition: { staggerChildren: 0.08 } }, -} - -const cardVariant = { - hidden: { opacity: 0, y: 20 }, - show: { opacity: 1, y: 0, transition: { type: 'spring' as const, stiffness: 280, damping: 28 } }, -} - -const jsonLd = { - '@context': 'https://schema.org', - '@type': 'SoftwareApplication', - name: 'MSDL — Windows ISO Downloader', - applicationCategory: 'UtilitiesApplication', - operatingSystem: 'Web', - url: SITE_URL, - description: 'Download official Microsoft Windows ISO files for Windows 11, 10, and 8.1. Direct links from Microsoft CDN. Free, no registration.', - offers: { '@type': 'Offer', price: '0', priceCurrency: 'USD' }, -} - -export default function HomePage() { - const [totalReleases, setTotalReleases] = useState(16) - - useEffect(() => { - fetch('/data/products.json') - .then(r => r.json()) - .then((data: Record) => { - const activeCount = Object.values(data).filter(p => p.active !== false).length - setTotalReleases(activeCount) - }) - .catch(() => {}) - }, []) - - return ( - <> - Windows ISO Downloader | Official Microsoft Images - - - - - -