如何使用命令行从 Microsoft 下载 Windows ISO?

如何使用命令行从 Microsoft 下载 Windows ISO?

如何通过命令行下载 Windows 10 ISO?如果我使用curlwget,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

答案3

是的,有办法做到这一点,但并不容易。

您可以下载的唯一 ISO 是Windows 10 Insider 预览版但您需要创建一个单击该按钮并捕获链接的机器人。

从那里您可以使用curlwget

相关内容