I am building a kiosk type config script on low-spec hardware.
At the end of the script, it runs the various apps for the user to interact with. I currently use a plain Invoke-Command "path\to\app.exe". I want to get the interface up and running as quickly as possible. I want to launch the apps asynchronous.
I know there there is start-job, and the -asJob flag in Invoke-Commnad, but they don't seem to work with launching visual apps. Is there a way to do this?