12-13-2022, 07:00 PM
The one you posted with START does work for me...
Example:
_HIDE causes the first one not to launch, but adding "start" in the second example allows it to launch Notepad.
I'd like to buy the explanation that _HIDE prevents the cmd.exe console form launching an app, but I don't believe that is so, because...
See? _HIDE with No "start" and Firefox launches where Notepad wouldn't.
Fickle.
Pete
Example:
Code: (Select All)
SHELL _HIDE _DONTWAIT "notepad" ' Doesn't launch.
BEEP: SLEEP
SHELL _HIDE _DONTWAIT "start notepad" ' Launches because of START.
BEEP: SLEEP
_HIDE causes the first one not to launch, but adding "start" in the second example allows it to launch Notepad.
I'd like to buy the explanation that _HIDE prevents the cmd.exe console form launching an app, but I don't believe that is so, because...
Code: (Select All)
SHELL _HIDE _DONTWAIT "firefox"
See? _HIDE with No "start" and Firefox launches where Notepad wouldn't.
Fickle.
Pete