Forum Discussion
franka2022
Feb 03, 2022Copper Contributor
PS Custom Object - Format Output
Hello, I have the following code: $dbs = Get-AzSqlDatabase -ResourceGroupName $SQLResourceGroup -ServerName $ServerName
$results = foreach ($db in $dbs.DatabaseName)
{
$dbAudit = Get-Az...
Feb 06, 2022
You could try outputting your data as [string]::Format("{0} `t `t {1}", $variable1, variable2) . the `t is tabbing between the two?