SFX Install Button

189 Views Asked by At

I am working on a program that needs to extract a WinRar SFX automatically. Is there anyway I can programmatically click a install button once the exe is started with a Process? Here is the code that I have so far.

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

There are 1 best solutions below

4
On

You could make the sfx silent with winrar.

Here is a link