How do I run a command with nohup so that both the stdout and stderr are saved to nohup.out? By default only stdout is saved and stderr is discarded.
nohup
nohup.out
Try this
nohup 2>&1 Ex.exe &