Outils pour utilisateurs

Outils du site


Writing /app/www/public/data/meta/centreon/scripts-windows.meta failed
centreon:scripts-windows

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentesRévision précédente
Prochaine révision
Révision précédente
centreon:scripts-windows [2024/01/11 08:25] michelcentreon: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 ====
 <code> <code>
-' 
-' 
 ' Check files under a given path ' Check files under a given path
 ' ============================== ' ==============================
Ligne 2324: Ligne 2322:
  
 :EOF  :EOF 
 +</code>
 +==== Exchange ====
 +- Exchange-serverCertificate
 +<code>
 +# Exchange 2013 Server Certificat
 +
 +
 +
 +$status = 0
 +$descr=""
 +$date= Get-Date
 +add-pssnapin Microsoft.Exchange.Management.PowerShell.SnapIn
 +
 +
 +$GetCrt = Get-ExchangeCertificate | Where-Object {$_.Status -ne "Valid"}
 +foreach ( $item in $GetCrt ){
 + $status = 2
 + #$NameCrt = $item.DnsNameList
 +    $NameCrt = $item.Subject
 + $NameCrt2 = $NameCrt.Punycode
 + $DateCrt = $item.NotAfter
 + $ValidCrt = $item.Status
 + $descr = "$descr Certificat: $NameCrt (Due Date: $DateCrt) ,`n"
 +    if ($DateCrt -lt $date ){
 + $status = 1
 + }
 + }
 +
 +switch ($status)
 + {
 + 0 {"OK: Tous les certificats sont valides."}
 + 1 {"CRITICAL: Certificat expire: `n $descr"; $status =2}
 + 2 {"CRTICIAL: Certificat '$NameCrt' invalide "}
 + }
 +
 +exit $status
 +</code>
 +- Exchange-serverComponentHealth
 +<code>
 +# Exchange 2013 Server Component Health Check
 +
 +
 +Param(
 +  [string]$ExchServ
 +)
 +
 +$status = 0
 +
 +add-pssnapin Microsoft.Exchange.Management.PowerShell.SnapIn
 +
 +
 +#Get-ServerComponentState -Identity $ExchServ | Where-Object { $_.State -ne "Active" } | Where-Object { $_.Component -ne  "ForwardSyncDaemon"  } | Where-Object { $_.Component -ne  "ProvisioningRps"  }
 +$SSE2 = Get-ServerComponentState -Identity $ExchServ | Where-Object { $_.State -ne "Active" } | Where-Object { $_.Component -ne  "ForwardSyncDaemon"  } | Where-Object { $_.Component -ne  "ProvisioningRps"  }
 +Get-ServerComponentState -Identity $ExchServ | Where-Object { $_.State -ne "Active" } | Where-Object { $_.Component -ne  "ForwardSyncDaemon"  } | Where-Object { $_.Component -ne  "ProvisioningRps"  } | Export-Csv -Path C:\Temp\LogExch\TempSRVC.csv -Delimiter ";"
 +$SSE223 = $SSE2.State
 +$ImptpsCSV = Import-Csv -Path C:\Temp\LogExch\TempSRVC.csv -Delimiter ";"
 +if ( $SSE223 -eq "Inactive" ) {
 + # At least one health check is inactive
 + $status=2
 + foreach ( $Srvc in $ImptpsCSV ){
 + $Name = $Srvc.Component}
 + $desc = "$Name checks is KO"
 + }
 +if ($status -eq "2") {
 + Write-Host "CRITICAL: $desc"
 +} elseif ($status -eq "0") {
 + Write-Host "All Service Active for $ExchServ"
 +     
 +
 +
 +exit $status
 +</code>
 +- Exchange-serverDB
 +<code>
 +# Exchange 2013 Server DB
 +
 +
 +<#Param(
 +  [string]$ServerExch
 +)
 +#>
 +
 +$status = 0
 +$descr = ""
 +add-pssnapin Microsoft.Exchange.Management.PowerShell.SnapIn
 +
 +$GetDB = Get-MailboxDatabase | Where-Object {$_.IsValid -ne "True"}
 +foreach ( $item in $GetDB ){
 + $status = 2
 + $ID = $Item.Name
 + $descr = "$descr DB: $ID is not Valid ,"
 + }
 +
 +if ( $status -ne 0 ) { 
 + Write-Host "CRITICAL: $descr"
 + }
 +else { 
 + Write-Host "OK: Toutes les bases sont valides."
 + }
 +
 +exit $status
 +</code>
 +- Exchange-serverPoolIIS
 +<code>
 +# 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,Value | Where-Object { $_.Value -ne "Started" } | Where-Object { $_.ItemXPath -ne "/system.applicationHost/applicationPools/add[@name='.NET v4.5']" } | Where-Object { $_.ItemXPath -ne "/system.applicationHost/applicationPools/add[@name='.NET v4.5 Classic']" }
 +Clear-Content c:\temp\ResultPoolIIS.txt -ErrorAction SilentlyContinue
 +if ( $POOL -ne $Null ){
 + Add-Content -Path c:\temp\ResultPoolIIS.txt -Value "Nom du pool:" }
 +foreach ( $item in $POOL ) {
 + $item1 = $item.ItemXPath
 + $Name = ($item1.split("'")[1])
 + Add-Content -Path c:\temp\ResultPoolIIS.txt -Value "$Name"
 +
 +
 +
 +$PoolLog = Get-Content -Path "\\$ExchServ\C$\temp\ResultPoolIIS.txt" -ErrorAction SilentlyContinue
 +if ( $PoolLog -ne $Null ) { 
 + $status =2
 + Write-Host "CRITICAL: Pool problematique sur le serveur $ExchServ : $PoolLog"
 + }
 +else { 
 + Write-Host "OK: Pas de Pool problematique sur le serveur $ExchServ"
 + }
 +
 +exit $status
 </code> </code>
centreon/scripts-windows.1704961554.txt.gz · Dernière modification : 2024/12/27 06:28 (modification externe)