1

Is it possible to run powershell.exe with startup parameters? Specifically I am looking to create a Windows Terminal profile which will launch a Windows Powershell session as a different user (my admin account). Here is a portion of my profile. Ideally, I am looking to modify the commandline argument but I am open to alternative workarounds.

profile

1 Answers1

3

Partial answer I know, but with respect to the specific requirement:

launch a Windows Powershell session as a different user

You can achieve this with

Start-Process powershell.exe -Credential “domain\username” -NoNewWindow -ArgumentList “Start-Process powershell.exe -Verb runAs”