Public/Stop-DTTitle.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
<#
.SYNOPSIS Stops the DynamicTitle thread and restores the original title. .DESCRIPTION Stops the DynamicTitle thread and restores the original title. All the jobs are also stopped. .INPUTS None. .OUTPUTS None. .EXAMPLE Stop-DTTitle #> function Stop-DTTitle { [Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSUseShouldProcessForStateChangingFunctions', '')] param() process { $script:globalStore.Clear() } } |