Printing object properties in Powershell
Printing object properties in Powershell
Printing object properties in Powershell
Re: Printing object properties in Powershell
Try this:
```
Write-Host ($obj | Format-Table | Out-String)
```
or
```
Write-Host ($obj | Format-List | Out-String)
```
```
Write-Host ($obj | Format-Table | Out-String)
```
or
```
Write-Host ($obj | Format-List | Out-String)
```