在全新的 Windows 10 上,在提示符下输入下载最新的 Firefox 安装程序的最短的非交互式命令是什么?

在全新的 Windows 10 上,在提示符下输入下载最新的 Firefox 安装程序的最短的非交互式命令是什么?

我想安装最新稳定的 Windows 版 Firefox,而无需打开 IE、Edge 或通过 FTP 或文本浏览器浏览。

我正在寻找一个易于记忆的单个命令或单行命令,只需下载正确的安装程序(尽力而为),不问我任何问题,只需在命令提示符(或运行命令小程序或其他)上进行最少的输入。

答案1

curl -Lo Firefox.exe is.gd/FireFoxDL

rem :: Or, one line output ::
curl -#Lo Firefox.exe is.gd/FireFoxDL

# => Onle line progress bar
-L => deal with redirection/location
-o C:\folder\File.ext => Path to save your File.extension Output

rem :: Also work ::
curl is.gd/FireFoxDL -#Lo Firefox.exe

您可以使用curl和短链接:

...Windows 10 Insider build 17063 及更高版本现在包含真正的 curl 和 tar 可执行文件,您可以直接从 Cmd 或 PowerShell 执行它们。


1.访问很好=>是gd

2.点击自定义:

在此处输入图片描述

3.注意如果字符串已经被使用,我测试了 Firefox、FireFox 和 Mozilla 字符串,它们已经被使用,所以我使用了 FireFoxDL、FireFox DownLoad),但您可以使用任何容易记住的字符串,人名、地点、日期,无论什么,重要的是不要忘记。

在此处输入图片描述

观察:1该网站还提供了生成的排序链接的二维码

在此处输入图片描述

观察:2与 System/iDevices 中的 IO 使用的服务相同

答案2

您可以在 Powershell 中执行此命令:

iwr -Uri 'https://download.mozilla.org/?product=firefox-latest&os=win64&lang=en-US' -OutFile '.\FirefoxInstaller.exe'

或者在 Powershell <=2.0 中:

(New-Object System.net.WebClient).DownloadFile('https://download.mozilla.org/?product=firefox-latest&os=win64&lang=en-US', '.\FirefoxInstaller.exe')

这将下载最新的 Firefox 安装程序(当前为 v79)作为当前目录中的 FirefoxInstaller.exe,您可以cd在下载前使用命令进行更改。

注意:iwr确实在窗口顶部显示进度表,但DownloadFile方法绝对是静默的,所以如果您需要最终的静默,请选择第二种方法,除非出现错误。

或者从 cmd.exe 或运行...框执行:

powershell -noProfile -command "& {(New-Object System.net.WebClient).DownloadFile('https://download.mozilla.org/?product=firefox-latest&os=win64&lang=en-US', '.\FirefoxInstaller.exe')}"

相关内容