0E041D
0E041D
I have the same issue and found a workaround. For my case, I have the issue when I run winget with a command prompt with elevated privileges with another user...
`$strUser = "SamAcountXXX" $strPasswordPlainText = "XXXXXXXXXXXXXXXXXXXXX" $objPassword = ConvertTo-SecureString -String $strPasswordPlainText -AsPlainText -Force $objAdUser = Get-ADUser -Identity $strUser $Hostname = 'switch.xxx.local' $objCredential = New-Object Management.Automation.PSCredential ($objAdUser.SamAccountName, $objPassword) $objSshSession = New-SSHSession...
Indeed after using $objSshShellStream.Read() I have more data but at the end the prompt ends with # and is part of the regex so I don't really understand where the...