PowerShell - Automation Patterns
What will be the output of this PowerShell snippet?
$baseline = @{Setting1='On'; Setting2='Off'}
$current = @{Setting1='On'; Setting2='On'}
Compare-Object -ReferenceObject $baseline -DifferenceObject $current -Property Setting2