Re: PowerShell- Session.Open hangs when using incorrect options
Thanks. I'll look into it.
$ParameterList=@{
Session=$Session
SessionOptions=$SessionOptions
}
$RunSpace= [RunspaceFactory]::CreateRunspace()
$PS= [PowerShell]::Create()
$PS.RunSpace= $RunSpace
$RunSpace.Open()
$null= $PS.AddScript({
Param($Session,$SessionOptions)
$Session.Open($SessionOptions)
}).AddParameters($ParameterList)
$AsyncObject= $PS.BeginInvoke()
$StartTime= Get-Date
Do{
# Timer for 10 seconds
}While ((([DateTime]::Now)-$StartTime).Seconds -lt 10)
If ($AsyncObject.IsCompleted -ne "True"){
write-host "$($Session.Output)"
write-host "`n`nAborting"
$Session.Abort()
$Session.Dispose()
$Inspector.Dispose()
$PS.Dispose()
}
Else{
#...rest of code with a valid $Session
}
WinSCP.SessionOptions
), everything works smoothly, but when altering some options, like using an incorrect RootPath
, the Session.Open
just hangs.
Timeout
to SessionOptions
($TimeOut= New-Timespan -Seconds 20
), but it doesn't work as well.