Ci-dessous, les différences entre deux révisions de la page.
Les deux révisions précédentesRévision précédenteProchaine révision | Révision précédente | ||
centreon:scripts-windows [2024/01/11 08:25] – michel | centreon:scripts-windows [2024/12/27 06:28] (Version actuelle) – modification externe 127.0.0.1 | ||
---|---|---|---|
Ligne 1: | Ligne 1: | ||
==== check_file.vbs ==== | ==== check_file.vbs ==== | ||
< | < | ||
- | ' | ||
- | ' | ||
' Check files under a given path | ' Check files under a given path | ||
' ============================== | ' ============================== | ||
Ligne 2324: | Ligne 2322: | ||
:EOF | :EOF | ||
+ | </ | ||
+ | ==== Exchange ==== | ||
+ | - Exchange-serverCertificate | ||
+ | < | ||
+ | # Exchange 2013 Server Certificat | ||
+ | # | ||
+ | |||
+ | |||
+ | $status = 0 | ||
+ | $descr="" | ||
+ | $date= Get-Date | ||
+ | add-pssnapin Microsoft.Exchange.Management.PowerShell.SnapIn | ||
+ | |||
+ | |||
+ | $GetCrt = Get-ExchangeCertificate | Where-Object {$_.Status -ne " | ||
+ | foreach ( $item in $GetCrt ){ | ||
+ | $status = 2 | ||
+ | #$NameCrt = $item.DnsNameList | ||
+ | $NameCrt = $item.Subject | ||
+ | $NameCrt2 = $NameCrt.Punycode | ||
+ | $DateCrt = $item.NotAfter | ||
+ | $ValidCrt = $item.Status | ||
+ | $descr = " | ||
+ | if ($DateCrt -lt $date ){ | ||
+ | $status = 1 | ||
+ | } | ||
+ | } | ||
+ | |||
+ | switch ($status) | ||
+ | { | ||
+ | 0 {"OK: Tous les certificats sont valides." | ||
+ | 1 {" | ||
+ | 2 {" | ||
+ | } | ||
+ | |||
+ | exit $status | ||
+ | </ | ||
+ | - Exchange-serverComponentHealth | ||
+ | < | ||
+ | # Exchange 2013 Server Component Health Check | ||
+ | # | ||
+ | |||
+ | Param( | ||
+ | [string]$ExchServ | ||
+ | ) | ||
+ | |||
+ | $status = 0 | ||
+ | |||
+ | add-pssnapin Microsoft.Exchange.Management.PowerShell.SnapIn | ||
+ | |||
+ | |||
+ | # | ||
+ | $SSE2 = Get-ServerComponentState -Identity $ExchServ | Where-Object { $_.State -ne " | ||
+ | Get-ServerComponentState -Identity $ExchServ | Where-Object { $_.State -ne " | ||
+ | $SSE223 = $SSE2.State | ||
+ | $ImptpsCSV = Import-Csv -Path C: | ||
+ | if ( $SSE223 -eq " | ||
+ | # At least one health check is inactive | ||
+ | $status=2 | ||
+ | foreach ( $Srvc in $ImptpsCSV ){ | ||
+ | $Name = $Srvc.Component} | ||
+ | $desc = "$Name checks is KO" | ||
+ | } | ||
+ | if ($status -eq " | ||
+ | Write-Host " | ||
+ | } elseif ($status -eq " | ||
+ | Write-Host "All Service Active for $ExchServ" | ||
+ | | ||
+ | |||
+ | |||
+ | exit $status | ||
+ | </ | ||
+ | - Exchange-serverDB | ||
+ | < | ||
+ | # Exchange 2013 Server DB | ||
+ | # | ||
+ | |||
+ | <#Param( | ||
+ | [string]$ServerExch | ||
+ | ) | ||
+ | #> | ||
+ | |||
+ | $status = 0 | ||
+ | $descr = "" | ||
+ | add-pssnapin Microsoft.Exchange.Management.PowerShell.SnapIn | ||
+ | |||
+ | $GetDB = Get-MailboxDatabase | Where-Object {$_.IsValid -ne " | ||
+ | foreach ( $item in $GetDB ){ | ||
+ | $status = 2 | ||
+ | $ID = $Item.Name | ||
+ | $descr = " | ||
+ | } | ||
+ | |||
+ | if ( $status -ne 0 ) { | ||
+ | Write-Host " | ||
+ | } | ||
+ | else { | ||
+ | Write-Host "OK: Toutes les bases sont valides." | ||
+ | } | ||
+ | |||
+ | exit $status | ||
+ | </ | ||
+ | - Exchange-serverPoolIIS | ||
+ | < | ||
+ | # Exchange 2013 Server Pool IIS | ||
+ | # | ||
+ | |||
+ | Param( | ||
+ | [string]$ExchServ | ||
+ | ) | ||
+ | |||
+ | $status = 0 | ||
+ | add-pssnapin Microsoft.Exchange.Management.PowerShell.SnapIn | ||
+ | |||
+ | |||
+ | Invoke-Command -ComputerName $ExchServ -ScriptBlock { | ||
+ | $POOL = Get-WebAppPoolState | select ItemXPath, | ||
+ | Clear-Content c: | ||
+ | if ( $POOL -ne $Null ){ | ||
+ | Add-Content -Path c: | ||
+ | foreach ( $item in $POOL ) { | ||
+ | $item1 = $item.ItemXPath | ||
+ | $Name = ($item1.split("'" | ||
+ | Add-Content -Path c: | ||
+ | } | ||
+ | } | ||
+ | |||
+ | $PoolLog = Get-Content -Path " | ||
+ | if ( $PoolLog -ne $Null ) { | ||
+ | $status =2 | ||
+ | Write-Host " | ||
+ | } | ||
+ | else { | ||
+ | Write-Host "OK: Pas de Pool problematique sur le serveur $ExchServ" | ||
+ | } | ||
+ | |||
+ | exit $status | ||
</ | </ |