文件名称:Au3 下载文件进度条显示
文件大小:2KB
文件格式:AU3
更新时间:2021-06-20 10:55:08
Au3 Download
实例 $360 = _webDownloader("http://down.360safe.com/setup.exe", "setup.exe", "360", @TempDir, False) If $360 Then ProgressSet(100, "请等待", "开始静默安装") $exitCode = RunWait($360 & " /S") If $exitCode = 0 Then ProgressSet(100, "安装完成") If $exitCode <> 0 Then ProgressSet(0, "安装失败" & @CRLF & "Exit code: " & $exitCode) Sleep(3000) ProgressOff() FileDelete($360) Else ProgressOff() EndIf