Functions/Stream/Enable-Information.ps1

<#
    .SYNOPSIS
    Enable the information output.

    .DESCRIPTION
    Enable the information output by setting the global InformationPreference
    variable to the value 'Continue'.

    .INPUTS
    None.

    .OUTPUTS
    None.

    .EXAMPLE
    Enable-Information
    Enable the information output.

    .NOTES
    Author : Claudio Spizzi
    License : MIT License

    .LINK
    https://github.com/claudiospizzi/Spizzi.Profile
#>


function Enable-Information
{
    [CmdletBinding()]
    param
    (
    )

    Set-Variable -Scope Global -Name InformationPreference -Value 'Continue'
}