I have created a powershell script that runs with my account for others to use. In the script, it has a button that launches Windows Remote Assist. The problem is, as the script runs with my account, my name appears in the receiver end. I can include -credential but it will prompt for a login detail. Is there a way to launch it as a current user without any prompt?
I have tried to call another ps1 that processes msra /offerra but that still uses my credential.
Start-Process cmd.exe -ArgumentList "/C msra /offerra $StrComputer" -NoNewWindow
Is there a way to do it or is it even possible?