icinga-powershell-framework/lib/core/installer/tools/Clear-CLIConsole.psm1

9 lines
132 B
PowerShell
Raw Normal View History

function Clear-CLIConsole()
{
try {
Clear-Host -ErrorAction Stop;
} catch {
# Nothing to do
}
}