user interface - Starting a Windows Process or Service with a GUI with PowerShell DSC -
i have unity3d application (a simple .exe) i'm trying automate powershell dsc. however, seems unity3d cannot acquire gpu when started service or background process, breaks application. when started manually via double-clicking .exe, things work fine.
is there way force dsc show gui when starting service or process?
thanks!
dsc doesn't support interactive applications during configuration. can think of 2 solutions:
- ensure user logging on
- the user logs on whatever reason
- setup user auto-logon during config (and sure set dsc reboot.)
- ensure app runs when user logs on:
- setup scheduled task start app when user logs on
- the app set in registry run when user logs on
Comments
Post a Comment