how to silently extract winzip self extractor without progress bar

1.1k Views Asked by At

I am running Winzip Self extractor file from .net by passing a command line argument "/auto" so that the installation goes silently. However i dont want to show the UI/Progress during the installation. Can anyone guide me on this

1

There are 1 best solutions below

1
On

Assuming you are using the Process class call to start it try to call it with ProcessStartInfo.CreateNoWindow = true;.