inno-setup – 如何在Inno安装程序中获取执行程序的输出?

前端之家收集整理的这篇文章主要介绍了inno-setup – 如何在Inno安装程序中获取执行程序的输出?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以获得执行的可执行文件输出

我想向用户显示信息查询页面,但在输入框中显示MAC地址的默认值。有没有办法实现这一点?

解决方法

是的,使用标准输出重定向到一个文件
[Code]

function NextButtonClick(CurPage: Integer): Boolean;
var
  TmpFileName,ExecStdout: string;
  ResultCode: integer;
begin
  if CurPage = wpWelcome then begin
    TmpFileName := ExpandConstant('{tmp}') + '\ipconfig_results.txt';
    Exec('cmd.exe','/C ipconfig /ALL > "' + TmpFileName + '"','',SW_HIDE,ewWaitUntilTerminated,ResultCode);
    if LoadStringFromFile(TmpFileName,ExecStdout) then begin
      MsgBox(ExecStdout,mbInformation,MB_OK);
      // do something with contents of file...
    end;
    DeleteFile(TmpFileName);
  end;
  Result := True;
end;

请注意,可能有多个网络适配器,因此可以选择几个MAC地址。

原文链接:https://www.f2er.com/delphi/103526.html

猜你在找的Delphi相关文章