I would like to start an application remotely. I am using the following PsExec command:
PsExec \\computerOne -u Domain\User1 -p 123456 -x "C:\Windows\System32\calc.exe"
I tried to use -i so that the program interacts with the desktop:
PsExec \\computerOne -u Domain\User1 -i 123456 -x "C:\Windows\System32\calc.exe"
but that does not work. The error from the second example is:
calc.exe exited on computerOne with error code -1073741502"
If I omit the specification and just write the path of the exe, the process is listed in the taskmanager but I can not see any UI. Do I have to change any settings on my Desktop on which I want to start the program?