You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 10, 2017. It is now read-only.
Outputting connection strings as table makes them look better, but there
is an issue with the 'ConnectionString' column. It is too wide. Even the
-AutoSize parameters does not help.
Write-Host ($connectionStringList| Format-Table -AutoSize | Out-String)
Therefore, connection string is outputted as a list.
Write-Host ($connectionStringList| Format-List | Out-String)
0 commit comments