mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2026-02-03 12:19:29 -05:00
7 lines
178 B
PowerShell
7 lines
178 B
PowerShell
function Restart-IcingaForWindows()
|
|
{
|
|
Stop-IcingaForWindows;
|
|
Start-IcingaForWindows;
|
|
}
|
|
|
|
Set-Alias -Name 'Restart-IcingaWindowsService' -Value 'Restart-IcingaForWindows';
|