@Adroit-Tester2, the background agent on Windows is meant to run commands that don't do anything with the GUI, like this reboot command:
shutdown /r /t 1
One benefit is the TRIGGERcmdAgent Windows service runs before you login, so you could reboot the PC even if it's not logged in.
Background commands run in the context of the TRIGGERcmdAgent Windows service that runs as Local System, which can be of benefit too because it has full access to your PC and it bypasses UAC.
Here's a test command you use try in background mode to verify it's working:
echo testing > c:\folder\log.txt
I just tried that and it produced the log.txt file when I ran it in background mode.
If you want to see the processes run, I suggest you leave them in foreground mode. You could still lock the PC after logging it on if you don't the developers to mess with them.