mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2026-02-03 12:19:29 -05:00
8 lines
132 B
PowerShell
8 lines
132 B
PowerShell
function Clear-CLIConsole()
|
|
{
|
|
try {
|
|
Clear-Host -ErrorAction Stop;
|
|
} catch {
|
|
# Nothing to do
|
|
}
|
|
}
|