Zabbix agent powershell scripts

From UVOO Tech Wiki
Revision as of 15:31, 26 July 2023 by Busk (talk | contribs)
Jump to navigation Jump to search

Replace Line in config

$file = "C:\app\zabbix\zabbix_agent2.win.conf"
$content = Get-Content $file -Encoding UTF8 -Raw
$startString = "UserParameter=zbx.getIpaddr"
$newString = "UserParameter=zbx.getIpaddr,powershell.exe -NonInteractive -NoProfile -Command `"(Get-NetIPAddress -AddressFamily ipv4 | Where-Object -Property InterfaceAlias -EQ ((Get-NetAdapter -Physical | Get-NetAdapterStatistics | Sort-Object -Property SentBytes)[-1]).Name ).IPAddress`""
$newcontent = ($content -replace "$startString.*?.*",$newString)
write-output $newcontent > $file