Pretty simple, I'm just wondering if there's a way to use NSIS's FindWindow and HideWindow commands for this extra popup. I tried this in C, and it usually works, but only when I know and enter the correct window title. I like and understand NSIS, and just thought I'd ask some experts 🙂.Name "Help"
OutFile "bar.exe"
Section "foo"
SetOutPath "c:\Program Files\Foo"
ExecWait foo.exe
SectionEnd
Can NSIS hide a command window?
I just found NSIS this weekend, and I love it. I have a strange problem that I was wondering if anyone could figure out. I have .exe files made from Matlab, which are 16 bit .exe's that open a command window then a GUI when executed. All I want to do is have Windows hide this command window. The name changes on different systems and on different calls, but it's always a DOS window, and I know nothing about finding HWNDs and hiding them. Here is NSIS code that at least runs one of these programs (though it still opens up a separate command window):