You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Invoke-Maester function currently performs a version check every time it is run. This is causing errors in air gapped environments so to provide more flexibility, it would be beneficial to have a SkipVersionCheck parameter that allows users to bypass this check.
Proposed Solution
Implement a SkipVersionCheck parameter in the Invoke-Maester function. When this parameter is set, the version check should be skipped.
Example Implementation
Add the SkipVersionCheck parameter to the Invoke-Maester function.
# Skip the version check.# If set, the version check will not be performed.
[switch] $SkipVersionCheck
Wrap Get-IsNewMaesterVersionAvailable | Out-Null in an if statement.
if (-not$SkipVersionCheck) {
Get-IsNewMaesterVersionAvailable|Out-Null
}
Please let me know if there are any additional details you would like to include.
The text was updated successfully, but these errors were encountered:
Issue Description
The
Invoke-Maester
function currently performs a version check every time it is run. This is causing errors in air gapped environments so to provide more flexibility, it would be beneficial to have aSkipVersionCheck
parameter that allows users to bypass this check.Proposed Solution
Implement a
SkipVersionCheck
parameter in theInvoke-Maester
function. When this parameter is set, the version check should be skipped.Example Implementation
Add the
SkipVersionCheck
parameter to the Invoke-Maester function.Wrap
Get-IsNewMaesterVersionAvailable | Out-Null
in anif
statement.Please let me know if there are any additional details you would like to include.
The text was updated successfully, but these errors were encountered: