mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 07:10:15 -05:00
Disables PowerShell progress bar on init
This commit is contained in:
parent
4a77fce45a
commit
d164fae558
2 changed files with 2 additions and 0 deletions
|
|
@ -19,6 +19,7 @@ Released closed milestones can be found on [GitHub](https://github.com/Icinga/ic
|
|||
* [#188](https://github.com/Icinga/icinga-powershell-framework/pull/188) Removes hardcoded zones `director-global` and `global-zones` which were always set regardless of user specification. This fix will ensure the user has the option to add or not add these zones
|
||||
* [#189](https://github.com/Icinga/icinga-powershell-framework/pull/189) Fixes wrong documented user group for accessing Performance Counter objects which should be `Performance Monitor Users`
|
||||
* [#195](https://github.com/Icinga/icinga-powershell-framework/pull/195) Fix Agent installer crash on package lookup with different files in directory
|
||||
* [#197](https://github.com/Icinga/icinga-powershell-framework/pull/197) Fixes progress bar appearance on check outputs for certain plugins, by disabling the entire PowerShell progress bar during the usage of Icinga for Windows
|
||||
|
||||
## 1.3.0 (2020-12-01)
|
||||
|
||||
|
|
|
|||
|
|
@ -61,6 +61,7 @@ function Use-Icinga()
|
|||
}
|
||||
}
|
||||
New-IcingaPerformanceCounterCache;
|
||||
Disable-IcingaProgressPreference;
|
||||
|
||||
# Enable DebugMode in case it is enabled in our config
|
||||
if (Get-IcingaFrameworkDebugMode) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue