mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 15:19:58 -05:00
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
17 lines
587 B
PowerShell
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";
|
|
}
|