Question: Which command do you use to view all SharePoint site collection with PowerShell?
- `Get-SPSite -Limit All | Format-Table -property URL,ContentDatabase`
- `Get-SPSite -Limit All | Format-Table -property URL`
- `Get-SPWebApplication | Format-Table -property URL,ConnectDatabase`
- `Get-SPWebApplication | Get-SPSite -Limit All | Format-Table -property URL,ContentDatabase`
Answer: The correct answer of the above question is Option B:`Get-SPSite -Limit All | Format-Table -property URL`