mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 07:10:15 -05:00
10 lines
171 B
PowerShell
10 lines
171 B
PowerShell
function Start-IcingaService()
|
|
{
|
|
param(
|
|
$Service
|
|
);
|
|
|
|
if (Get-Service $Service -ErrorAction SilentlyContinue) {
|
|
Start-Service $Service;
|
|
}
|
|
}
|