https://github.com/innovatodev/windowsmediadownloader
Module to download Windows ISOs
https://github.com/innovatodev/windowsmediadownloader
download iso media windows
Last synced: 10 months ago
JSON representation
Module to download Windows ISOs
- Host: GitHub
- URL: https://github.com/innovatodev/windowsmediadownloader
- Owner: innovatodev
- License: mit
- Archived: true
- Created: 2024-01-08T22:37:40.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-20T04:10:46.000Z (over 2 years ago)
- Last Synced: 2025-02-25T20:16:34.173Z (over 1 year ago)
- Topics: download, iso, media, windows
- Language: PowerShell
- Homepage: https://github.com/innovatodev/
- Size: 29.3 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# WindowsMediaDownloader
Module to download Windows ISOs from https://massgrave.dev/genuine-installation-media.html (Thanks [Massgravel](https://github.com/massgravel))
Can download :
- Windows 11 (consumer, business)
- Windows 10 (consumer, business)
- Windows server (2016, 2019, 2022)
Will asks the user for a language for none are specified.
## HowTo
Install it:
`Install-Module -Name WindowsMediaDownloader`
Or simply import it:
`Import-Module .\Module\WindowsMediaDownloader.psd1 -Force`
## Examples
`Invoke-WindowsMediaDownloader -OS '11' -Type 'consumer' -Lang 'en-us'`
Downloads latest consumer version of Windows 11 with language 'en-us'
`Invoke-WindowsMediaDownloader -OS '11' -Type 'consumer'`
Asks to select a language from the availables list and downloads latest consumer version of Windows 11
`Invoke-WindowsMediaDownloader -OS 'server' -Type '2022'`
Asks to select a language from the availables list and downloads latest 2022 version of Windows Server
