icinga-powershell-framework/lib/web/Disable-IcingaProgressPreference.psm1
Lord Hepipud 3d875639e4 Feature Requests: Add Proxy Server support
Also re-arranges web content by using old content from lib/web into lib/webserver, while new lib/web contains the proxy configuration.
Fixes #19
2020-11-19 17:16:33 +01:00

17 lines
587 B
PowerShell

<#
.SYNOPSIS
Disables the progress bar during file downloads or while loading certain modules.
This will increase the speed of certain tasks, for example file downloads
.DESCRIPTION
Disables the progress bar during file downloads or while loading certain modules.
This will increase the speed of certain tasks, for example file downloads
.FUNCTIONALITY
Sets the $ProgressPreference to 'SilentlyContinue'
.LINK
https://github.com/Icinga/icinga-powershell-framework
#>
function Disable-IcingaProgressPreference()
{
$global:ProgressPreference = "SilentlyContinue";
}