如果安装了 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
我从 github“ https://github.com/pbatard/Fido ”找到了答案
Fido 是一个 PowerShell 脚本,主要设计用于 Rufus,但也可以以独立方式使用,其目的是自动化访问官方 Microsoft Windows 零售 ISO 下载链接。
GNU 通用公共许可证版本 3.0 或更高版本。需要 PowerShell 3.0 或更高版本。但是,该脚本应该检测您是否使用的是旧版本。
由于其与 Rufus 的预期用途,此脚本并非旨在涵盖所有可能的零售 ISO 下载。
如果安装了 PowerShell 5 或更高版本,这将下载 64 位版本的 Windows 10 版本 21H1:
是的,有办法做到这一点,但并不容易。
您可以下载的唯一 ISO 是Windows 10 Insider 预览版,但您需要创建一个机器人来单击该按钮并捕获链接。
然后您可以从那里使用
curl
orwget
。