SFX安装按钮

时间:2015-01-15 16:05:17

标签: c# sfx

我正在开发一个需要自动提取WinRar SFX的程序。无论如何,一旦用进程启动exe,我可以以编程方式单击一个安装按钮吗?这是我到目前为止的代码。

public bool Extract()
    {
        try
        {
            Process process = new Process();
            process.StartInfo.WorkingDirectory = FilePath;
            process.StartInfo.FileName = FilePath + fileName;

            process.Start();

            process.WaitForExit();
        }
        catch (Exception)
        {
            return false;
        }

        return true;
    }

1 个答案:

答案 0 :(得分:0)

你可以用winrar使sfx保持沉默。

Here is a link