Posted May 21, 20186 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, 20186 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