Functions/Stream/Enable-Verbose.ps1
<# .SYNOPSIS Enable the verbose output. .DESCRIPTION Enable the verbose output by setting the global VerbosePreference variable to the value 'Continue'. .INPUTS None. .OUTPUTS None. .EXAMPLE Enable-Verbose Enable the verbose output. .NOTES Author : Claudio Spizzi License : MIT License .LINK https://github.com/claudiospizzi/Spizzi.Profile #> function Enable-Verbose { [CmdletBinding()] [Alias('ev')] param ( ) Set-Variable -Scope Global -Name VerbosePreference -Value 'Continue' } |