Joe
Joe

Reputation: 85

How to set the whole installer invisible while using 'ExecWait' in NSIS?

I'm installing a program with my installer and run it with 'ExecWait'.

Is there a way to hide the window of the installer while the program is executed?

The installer should show up again and continue when the user quits the executed program.

Is there any way to achieve that?

Upvotes: 0

Views: 625

Answers (1)

Anders
Anders

Reputation: 101569

HideWindow
ExecWait '"$InstDir\Foo.exe" "space bar" /baz'
BringToFront

Upvotes: 1

Related Questions