We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b82fbd5 commit 66f7667Copy full SHA for 66f7667
PSLog/PSLog.psm1
@@ -1074,6 +1074,11 @@ function Get-CallerPreference
1074
function Write-ProgressIndicator
1075
{
1076
# .ExternalHelp AutomatedLab.Help.xml
1077
+
1078
+ if ((Get-PSCallStack)[1].InvocationInfo.BoundParameters['NoDisplay'].IsPresent)
1079
+ {
1080
+ return
1081
+ }
1082
Write-ScreenInfo -Message '.' -NoNewline
1083
}
1084
#endregion Write-ProgressIndicator
@@ -1082,6 +1087,11 @@ function Write-ProgressIndicator
1087
function Write-ProgressIndicatorEnd
1088
1089
1090
1091
1092
1093
1094
1085
1095
Write-ScreenInfo -Message '.'
1086
1096
1097
#endregion Write-ProgressIndicatorEnd
0 commit comments