I have an application that works when installed (independently of SCCM) using
psexec -s -i Install-Application.bat
but fails when installed using
psexec -s Install-Application.bat
The symptom in the latter case is that the UI never appears when the application process is launched.
So far I have always left the "Allow users to view and interact" box unchecked because that is best practice because of security concerns. (For this application achieving automated deployment outweighs this particular security concern.) Indeed installation by the SCCM client fails in the same way as above with "Allow users to view and interact" left unchecked.
Is checking "Allow users to view and interact" equivalent to installing with the -i
option of psexec
?