如何通过命令行下载 Windows 10 ISO?如果我使用curl
或wget
,Microsoft 提供的 ISO 链接仅在 24 小时内有效。
答案1
我在 github 上找到了答案”https://github.com/pbatard/Fido“
Fido 是一个 PowerShell 脚本,主要设计用于 Rufus,但也可以独立使用,其目的是自动访问官方 Microsoft Windows 零售 ISO 下载链接。GNU
通用公共许可证版本 3.0 或更高版本。需要 PowerShell 3.0 或更高版本。但是,脚本应该可以检测您是否正在使用旧版本。
由于该脚本旨在与 Rufus 一起使用,因此并非旨在涵盖所有可能的零售 ISO 下载。
答案2
如果安装了 PowerShell 5 或更高版本,这将下载 64 位版本的 Windows 10 版本 21H1:
# Source file location
$source = 'https://www.itechtics.com/?dl_id=140'
# Destination to save the file
$destination = 'C:\Users\username\Downloads\win10.iso'
# Download the source file and save it to destination
Invoke-WebRequest -Uri $source -OutFile $destination
- 将目标路径更改为可以保存文件的文件夹。
- 使用下载 Windows 10 ISO 文件(直接下载链接)要获取其他版本的链接,请更改上述命令中的 URL。