Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rgl/windows-evaluation-isos-scraper
Scrapes the Windows Evaluation ISO addresses into a JSON data file
https://github.com/rgl/windows-evaluation-isos-scraper
Last synced: 2 days ago
JSON representation
Scrapes the Windows Evaluation ISO addresses into a JSON data file
- Host: GitHub
- URL: https://github.com/rgl/windows-evaluation-isos-scraper
- Owner: rgl
- Created: 2022-05-02T21:11:26.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-02T00:45:06.000Z (about 1 month ago)
- Last Synced: 2024-10-30T01:43:01.440Z (5 days ago)
- Language: PowerShell
- Size: 89.8 KB
- Stars: 24
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome - rgl/windows-evaluation-isos-scraper - Scrapes the Windows Evaluation ISO addresses into a JSON data file (others)
README
# About
This scrapes the Windows Evaluation ISO addresses into a JSON data file.
## Scraped Windows Editions
* [Windows 11](https://www.microsoft.com/en-us/evalcenter/evaluate-windows-11-enterprise)
* [Windows 2022](https://www.microsoft.com/en-us/evalcenter/evaluate-windows-server-2022)
* [Windows 2025](https://www.microsoft.com/en-us/evalcenter/evaluate-windows-server-2025)## Data Files
The code in this repository creates a `data/windows-*.json` file for each Windows Edition, for example, the `data/windows-2022.json` file will be alike:
```json
{
"name": "windows-2022",
"url": "https://software-static.download.prss.microsoft.com/sg/download/888969d5-f34g-4e03-ac9d-1f9786c66749/SERVER_EVAL_x64FRE_en-us.iso",
"checksum": "3e4fa6d8507b554856fc9ca6079cc402df11a8b79344871669f0251535255325",
"size": 5044094976,
"createdAt": "2022-03-04T00:00:00+00:00",
"images": [
{
"index": 1,
"name": "Windows Server 2022 Standard Evaluation",
"version": "10.0.20348.587"
},
{
"index": 2,
"name": "Windows Server 2022 Standard Evaluation (Desktop Experience)",
"version": "10.0.20348.587"
},
{
"index": 3,
"name": "Windows Server 2022 Datacenter Evaluation",
"version": "10.0.20348.587"
},
{
"index": 4,
"name": "Windows Server 2022 Datacenter Evaluation (Desktop Experience)",
"version": "10.0.20348.587"
}
]
}
```