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
Asked
Active
Viewed 1,095 times
1 Answers
0
Assuming you are using the Process
class call to start it try to call it with ProcessStartInfo.CreateNoWindow = true;
.

Yahia
- 69,653
- 9
- 115
- 144
-
@Sathish then use some other technique or write a custom SFX module (needs C or assembler!)... – Yahia Nov 09 '11 at 08:30