-1

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

SSK
  • 783
  • 3
  • 18
  • 42

1 Answers1

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