ProcessStartInfo and Process in PowerShell - Authentication Error ProcessStartInfo and Process in PowerShell - Authentication Error powershell powershell

ProcessStartInfo and Process in PowerShell - Authentication Error


It's pretty much spelled out to you, isn't it?:

"Logon failure: unknown user name or bad password"

(first error line).

Note that DOMAIN should be provided in separate property:

$startInfo.Username = "Username"$startInfo.Domain = "DOMAIN"