Write-ProgressIndicatorEnd

SYNOPSIS

Write a . with line break

SYNTAX

Write-ProgressIndicatorEnd [<CommonParameters>]

DESCRIPTION

Write a . with line break

EXAMPLES

Example 1

function foo
{
    [CmdletBinding()]
    param
    ()

    foreach ($thing in $things)
    {
        #Long running operation. Need to have output.
        Write-ProgressIndicator
        sleep 120
    }
    Write-ProgressIndicatorEnd
}

After outputting . in a loop, will output . including a line break

PARAMETERS

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

None

OUTPUTS

System.Object

NOTES