Sometimes when you issue a PowerShell command, the result comes back truncated with “…” and you cannot see what’s being printed to the screen. Pipe the command through Format-Table to fix. For example in SharePoint Get-SPServiceInstance | Where-Object {$_.TypeName –eq ‘Central Administration’} becomes… Get-SPServiceInstance | Where-Object {$_.TypeName –eq ‘Central Administration’} | Format-Table -Wrap -AutoSize InContinue reading “PowerShell Word Truncate”