-
-
Notifications
You must be signed in to change notification settings - Fork 7
Out Verbose
apobekiaris edited this page Sep 4, 2020
·
4 revisions
Colored verbose stream output.
Out-Verbose [-VerboseInput] <Object> [[-ForegroundColor] <ConsoleColor>] [[-BackgroundColor] <ConsoleColor>]
[-PassThrough] [<CommonParameters>]
Colored verbose stream output.
PS C:\> "hello world"|Out-Verbose -ForegroundColor Red -Verbose
VERBOSE: hello world
Outputs hello world
into the verbose stream in Red.
{{ Fill BackgroundColor Description }}
Type: ConsoleColor
Parameter Sets: (All)
Aliases: bg
Accepted values: Black, DarkBlue, DarkGreen, DarkCyan, DarkRed, DarkMagenta, DarkYellow, Gray, DarkGray, Blue, Green, Cyan, Red, Magenta, Yellow, White
Required: False
Position: 2
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
{{ Fill ForegroundColor Description }}
Type: ConsoleColor
Parameter Sets: (All)
Aliases: fg
Accepted values: Black, DarkBlue, DarkGreen, DarkCyan, DarkRed, DarkMagenta, DarkYellow, Gray, DarkGray, Blue, Green, Cyan, Red, Magenta, Yellow, White
Required: False
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
{{ Fill PassThrough Description }}
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Required: False
Position: 3
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
{{ Fill VerboseInput Description }}
Type: Object
Parameter Sets: (All)
Aliases:
Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.