Posted May 21, 20187 yr I am attempting to start an app interactively with the desktop. With the following code the script just runs until killed. If I remove the top two lines it runs and finishes but obviously doesn't interact with the desktop. $cred = (Get-Credential $env:USERNAME) Enter-PSSession -computerName "$env:computername" -credential $cred cd $env:userprofile\Desktop .\Loader.bat I would be grateful for any suggestions.
May 23, 20187 yr Staff Hi Jim, If you want to interact with the user's session, then you will need to use the PSexec to access it. An exam: psexec \\computer-name -u username -p password /accepteula -i 1 -d "C:\Program Files\Sublime Text 3\sublime_text.exe"
Create an account or sign in to comment