Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions scripts/main.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,10 @@ LogGroup 'Host' {
$Host | Select-Object * | Format-List | Out-String
}

LogGroup 'Host - Json' {
Write-Host "$($Host | ConvertTo-Json -Depth 10)"
Comment thread
MariusStorhaug marked this conversation as resolved.
Outdated
}

LogGroup 'MyInvocation' {
$MyInvocation | Select-Object * | Format-List | Out-String
}
Expand All @@ -145,3 +149,7 @@ LogGroup 'PSSessionOption' {
LogGroup 'PSStyle' {
$PSStyle | Select-Object * | Format-List | Out-String
}

LogGroup 'PSStyle - Json' {
Write-Host "$($PSStyle | ConvertTo-Json -Depth 10)"
Comment thread
MariusStorhaug marked this conversation as resolved.
Outdated
}
Loading