24/7, right @Pete ?
:D
Okay guys, here's a weird one...
shell _dontwait _hide "notepad"
For some reason, _HIDE prevents notepad from opening.
This can be circumvented by removing _HIDE, or by adding any of the following...
shell _dontwait _hide "start notepad"
or
shell _dontwait _hide "cmd/c notepad"
Also, although START is not needed in some SHELL calls anymore, START is still the only way I know of to add switches, like /max, /min, or /p (for print) Example: shell _dontwait _hide "start /max notepad"
Pete