mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2026-02-03 12:19:29 -05:00
8 lines
279 B
PowerShell
8 lines
279 B
PowerShell
function Start-IcingaForWindowsCertificateThreadTask()
|
|
{
|
|
New-IcingaThreadInstance `
|
|
-Name 'CertificateRenewThread' `
|
|
-ThreadPool (New-IcingaThreadPool -MaxInstances 1) `
|
|
-Command 'New-IcingaForWindowsCertificateThreadTaskInstance' `
|
|
-Start;
|
|
}
|