如何在InstallScript代码中添加倒计时器?

时间:2018-05-28 10:56:39

标签: windows-installer installscript installscript-msi

我已经创建了一个Basic MSI项目,并且我编写了一个InstallScript Custom Action来从服务器下载文件。我为此使用了CopyFile()函数。我也在下载过程中显示sdShowMsg()。但是当下载服务器没有响应时,sdShowMsg()对话框保持在屏幕上并且在后台下载中,不会发生。那么有没有办法添加一个倒计时器,它只会在那段时间内执行下载操作,然后从中退出。或者有没有其他方法来检查下载服务器是否响应?

SdShowMsg("Please Wait... Downloading file from our server...", TRUE);
CopyFile("https://<downloadURL>/sample.rtf", szEULAFile);
SdShowMsg("Please Wait... Downloading file from our server...", FALSE);

1 个答案:

答案 0 :(得分:1)

您可以使用外部命令替换CopyFile调用以下载文件,然后使用LaunchApp()函数设置超时。 这是一个使用powershell的小型伪示例(您还可以使用curl.exe和许多其他方法从命令行下载文件)

nOptions = LAAW_OPTION_WAIT | LAAW_OPTION_HIDDEN | LAAW_OPTION_FIXUP_PROGRAM | LAAW_OPTION_SHOW_HOURGLASS;
LAAW_PARAMETERS.nTimeOut = 30000;  // 30 seconds
SdShowMsg("Downloading, please wait...", TRUE);
nResult = LaunchAppAndWait( "powershell", "-Command \"Invoke-WebRequest -Uri https://example.com/sample.rtf -OutFile " + szEULAFile + "\"", nOptions); 
SdShowMsg("", FALSE);
if nResult < 0 then
  // failed to launch, notify the user
elseif (nResult == 5) || (nResult == 259) then
  // timeout reached, notify the user
endif;