I made a quick powershell script with some tasks for updating outlook signature with infos from AD and some unmounting and mounting network shares. Also, the script starts an application on the local computer. The Application starts just fine but, after the script finishes, the process gets killed too. It is a Logon Script, if that matters. So its started when logging in as the user.
How can I keep the Application open?
Here is the "Start-Process Part" of it:
Try {
Start-Process -FilePath "C:\Program Files (x86)\Application\Application.exe"
}
Catch {}