WinServ-Status.ps1

<#PSScriptInfo
 
.VERSION 1.4
 
.GUID 2cb94e4f-1e85-4712-9441-91abcaea8572
 
.AUTHOR Mike Galvin twitter.com/digressive & Dan Price twitter.com/therezin, based on code by Bhavik Solanki.
 
.COMPANYNAME
 
.COPYRIGHT (C) Mike Galvin. All rights reserved.
 
.TAGS Windows Server Status Report Monitor
 
.LICENSEURI
 
.PROJECTURI https://gal.vin/2017/07/28/windows-server-status/
 
.ICONURI
 
.EXTERNALMODULEDEPENDENCIES
 
.REQUIREDSCRIPTS
 
.EXTERNALSCRIPTDEPENDENCIES
 
.RELEASENOTES
 
#>


<#
    .SYNOPSIS
    Creates a status report of Windows Servers.
 
    .DESCRIPTION
    Creates a status report of Windows Servers.
 
    This script will:
     
    Generate a HTML status report from a configurable list of Windows servers.
    The report will highlight information is the alert threashold is exceeded.
 
    Please note: to send a log file using ssl and an SMTP password you must generate an encrypted
    password file. The password file is unique to both the user and machine.
     
    The command is as follows:
 
    $creds = Get-Credential
    $creds.Password | ConvertFrom-SecureString | Set-Content c:\foo\ps-script-pwd.txt
     
    .PARAMETER List
    The path to a text file with a list of server names to monitor.
 
    .PARAMETER O
    The path where the HTML report should be output to. The filename will be WinServ-Status-Report.htm.
 
    .PARAMETER DiskAlert
    The percentage of disk usage that should cause the disk space alert to be raised.
 
    .PARAMETER CpuAlert
    The percentage of CPU usage that should cause the CPU alert to be raised.
 
    .PARAMETER MemAlert
    The percentage of memory usage that should cause the memory alert to be raised.
 
    .PARAMETER Refresh
    The number of seconds that she script should wait before running again. The minimum is 300 seconds (5 minutes)
    and the maximum is 28800 (8 hours). If not configured the script will run once and then exit.
 
    .PARAMETER SendTo
    The e-mail address the log should be sent to.
 
    .PARAMETER From
    The from address the log should be sent from.
 
    .PARAMETER Smtp
    The DNS or IP address of the SMTP server.
 
    .PARAMETER User
    The user account to connect to the SMTP server.
 
    .PARAMETER Pwd
    The txt file containing the encrypted password for the user account.
 
    .PARAMETER UseSsl
    Connect to the SMTP server using SSL.
 
    .EXAMPLE
    WinServ-Status.ps1 -List C:\foo\servers.txt -O C:\foo -DiskAlert 90 -CpuAlert 95 -MemAlert 85 -Refresh 120
    The script will execute using the list of servers and output a html report called WinServ-Status-Report.htm to C:\foo.
    The disk usage alert will highlight at 90% usage for any one drive, the CPU usage alert will highlight at 95% usage,
    and the memory usage alert will highlight at 85% usage. The script will re-run every 2 minutes.
#>


## Set up command line switches and what variables they map to
[CmdletBinding()]
Param(
    [Parameter(Mandatory=$True)]
    [Alias("List")]
    [ValidateScript({Test-Path -Path $_ -PathType Leaf})]
    [string]$ServerFile,
    [Parameter(Mandatory=$True)]
    [Alias("O")]
    [ValidateScript({Test-Path $_ -PathType 'Container'})]
    [string]$OutputPath,
    [Alias("DiskAlert")]
    [ValidateRange(0,100)]
    [int]$DiskAlertThreshold,
    [Alias("CpuAlert")]
    [ValidateRange(0,100)]
    [int]$CpuAlertThreshold,
    [Alias("MemAlert")]
    [ValidateRange(0,100)]
    [int]$MemAlertThreshold,
    [Alias("Refresh")]
    [ValidateRange(300,28800)]
    [int]$RefreshTime,
    [Alias("SendTo")]
    [string]$MailTo,
    [Alias("From")]
    [string]$MailFrom,
    [Alias("Smtp")]
    [string]$SmtpServer,
    [Alias("User")]
    [string]$SmtpUser,
    [Alias("Pwd")]
    [string]$SmtpPwd,
    [switch]$UseSsl)

## Function to get the up time from the server
Function Get-UpTime
{
    param([string] $LastBootTime)
    $Uptime = (Get-Date) - [System.Management.ManagementDateTimeconverter]::ToDateTime($LastBootTime)
    "$($Uptime.Days) days $($Uptime.Hours)h $($Uptime.Minutes)m"
}

## Begining of the loop. Lower down the loop is broken if the refresh option is not configured.
Do
{
    ## Change value of the following parameter as needed
    $OutputFile = "$OutputPath\WinServ-Status-Report.htm"
    $ServerList = Get-Content $ServerFile
    $Result = @()

    #Sort Servers
    $ServerList = $ServerList | Sort-Object

    ForEach ($ServerName in $ServerList)
    {
        $PingStatus = Test-Connection -ComputerName $ServerName -Count 1 -Quiet

        If ($PingStatus -eq $False)
        {
            $ServersOffline += @($ServerName)
        }

        Else
        {
            $ServersOnline += @($ServerName)
        }
    }

    $ServerListFinal = $ServersOffline + $ServersOnline

    ## Look through the servers in the file provided
    ForEach ($ServerName in $ServerListFinal)
    {
        $PingStatus = Test-Connection -ComputerName $ServerName -Count 1 -Quiet

        ## If server responds, get uptime and disk info
        If ($PingStatus)
        {
            $CpuAlert = $false
            $MemAlert = $false
            $DiskAlert = $false
            $OperatingSystem = Get-WmiObject Win32_OperatingSystem -ComputerName $ServerName
            $CpuUsage = Get-WmiObject Win32_Processor -Computername $ServerName | Measure-Object -Property LoadPercentage -Average | ForEach-Object {$_.Average; If($_.Average -ge $CpuAlertThreshold){$CpuAlert = $True}; "%"}
            $Uptime = Get-Uptime($OperatingSystem.LastBootUpTime)
            $MemUsage = Get-WmiObject -Class Win32_OperatingSystem -ComputerName $ServerName | ForEach-Object {“{0:N0}” -f ((($_.TotalVisibleMemorySize - $_.FreePhysicalMemory) * 100)/ $_.TotalVisibleMemorySize); If((($_.TotalVisibleMemorySize - $_.FreePhysicalMemory) * 100)/ $_.TotalVisibleMemorySize -ge $MemAlertThreshold){$MemAlert = $True}; "%"}
            $DiskUsage = Get-WmiObject Win32_LogicalDisk -ComputerName $ServerName | Where-Object {$_.DriveType -eq 3} | Foreach-Object {$_.DeviceID, [Math]::Round((($_.Size - $_.FreeSpace) * 100)/ $_.Size); If([Math]::Round((($_.Size - $_.FreeSpace) * 100)/ $_.Size) -ge $DiskAlertThreshold){$DiskAlert = $True}; "%"}
        }
    
        ## Put the results together
        $Result += New-Object PSObject -Property @{
            ServerName = $ServerName
            Status = $PingStatus
            CpuUsage = $CpuUsage
            CpuAlert = $CpuAlert
            Uptime = $Uptime
            MemUsage = $MemUsage
            MemAlert = $MemAlert
            DiskUsage = $DiskUsage
            DiskAlert = $DiskAlert
        }

        ## Clear the variables after obtaining and storing the results, otherwise hilarity ensues.
        If ($ServerListFinal)
        {
            Clear-Variable ServerListFinal
        }

        If ($ServersOffline)
        {
            Clear-Variable ServersOffline
        }

        If ($ServersOnline)
        {
            Clear-Variable ServersOnline
        }

        If ($PingStatus)
        {
            Clear-Variable PingStatus
        }

        If ($CpuUsage)
        {
            Clear-Variable CpuUsage
        }

        If ($Uptime)
        {
            Clear-Variable Uptime
        }

        If ($MemUsage)
        {
            Clear-Variable MemUsage
        }

        If ($DiskUsage)
        {
            Clear-Variable DiskUsage
        }
    }

    ## If there is a result put the HTML file together.
    If ($Result -ne $null)
    {
        $HTML = '<style type="text/css">
                p {font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;font-size:14px}
                p {color:#ffffff;}
                #Header{font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;width:100%;border-collapse:collapse;}
                #Header td, #Header th {font-size:15px;text-align:left;border:1px solid #1a1a1a;padding:2px 2px 2px 7px;color:#ffffff;}
                #Header tr.alt td {color:#ffffff;background-color:#1a1a1a;}
                #Header tr:nth-child(even) {background-color:#1a1a1a;}
                #Header tr:nth-child(odd) {background-color:#3b3b3b;}
                body {background-color: #1a1a1a;}
                div {background-color: #1a1a1a;-webkit-animation-name: example;animation-duration: 4s;animation-iteration-count: infinite;animation-direction: alternate;}
                @-webkit-keyframes example {from {background-color: #1a1a1a;} to {background-color: #d90000;}
                @keyframes example {from {background-color: #1a1a1a;} to {background-color: #d90000;}
                </style>
                <head><meta http-equiv="refresh" content="300"></head>'


        $HTML += "<html><body>
            <p><font color=#e6e6e6>Status refreshed on: $(Get-Date -Format G)</font></p>
            <table border=0 cellpadding=0 cellspacing=0 id=header>"


        ## Highlight the alerts if the alerts are triggered.
        ForEach($Entry in $Result)
        {
            If ($Entry.Status -eq $True)
            {
                $HTML += "<td><font color=#00e600>&#10004</font></td>"
            }

            Else
            {
                $HTML += "<td><font color=#FF4D4D>&#10008</font></td>"
            }

            If ($Entry.Status -eq $True)
            {
                $HTML += "<td><font color=#00e600>$($Entry.ServerName)</font></td>"
            }

            Else
            {
                $HTML += "<td><div><font color=#FF4D4D>$($Entry.ServerName)</font></div></td>"
            }

            If ($Entry.CpuUsage -ne $null)
            {
                If ($Entry.CpuAlert -eq $True)
                {
                    $HTML += "<td><font color=#ffff4d>CPU:$($Entry.CpuUsage)</font></td>"
                }

                Else
                {
                    $HTML += "<td><font color=#00e600>CPU:$($Entry.CpuUsage)</font></td>"
                }
            }
        
            Else
            {
                $HTML += "<td><div><font color=#FF4D4D>Offline</font></div></td>"
            }

            If ($Entry.MemUsage -ne $null)
            {
                If ($Entry.MemAlert -eq $True)
                {
                    $HTML += "<td><font color=#ffff4d>RAM:$($Entry.MemUsage)</font></td>"
                }

                Else
                {
                    $HTML += "<td><font color=#00e600>RAM:$($Entry.MemUsage)</font></td>"
                }
            }

            Else
            {
                $HTML += "<td><div><font color=#FF4D4D>Offline</font></div></td>"
            }

            If ($Entry.DiskUsage -ne $null)
            {
                If ($Entry.DiskAlert -eq $True)
                {
                    $HTML += "<td><font color=#ffff4d>$($Entry.DiskUsage)</font></td>"
                }

                Else
                {
                    $HTML += "<td><font color=#00e600>$($Entry.DiskUsage)</font></td>"
                }
            }

            Else
            {
                $HTML += "<td><div><font color=#FF4D4D>Offline</font></div></td>"
            }

            If ($Entry.Status -eq $True)
            {
                $HTML += "<td><font color=#00e600>$($Entry.Uptime)</font></td>
                          </tr>"

            }

            Else
            {
                $HTML += "<td><div><font color=#FF4D4D>Offline</font></div></td>
                          </tr>"

            }
        }

        ## Finish the HTML file.
        $HTML += "</table></body></html>"

        ## Output the HTML file
        $HTML | Out-File $OutputFile

        ## If email was configured, set the variables for the email subject and body
        If ($SmtpServer)
        {
            $MailSubject = "Server Status Report"
            $MailBody = Get-Content -Path $OutputFile | Out-String

            ## If an email password was configured, create a variable with the username and password
            If ($SmtpPwd)
            {
                $SmtpPwdEncrypt = Get-Content $SmtpPwd | ConvertTo-SecureString
                $SmtpCreds = New-Object System.Management.Automation.PSCredential -ArgumentList ($SmtpUser, $SmtpPwdEncrypt)

                ## If ssl was configured, send the email with ssl
                If ($UseSsl)
                {
                    Send-MailMessage -To $MailTo -From $MailFrom -Subject $MailSubject -Body $MailBody -BodyAsHtml -SmtpServer $SmtpServer -UseSsl -Credential $SmtpCreds
                }

                ## If ssl wasn't configured, send the email without ssl
                Else
                {
                    Send-MailMessage -To $MailTo -From $MailFrom -Subject $MailSubject -Body $MailBody -BodyAsHtml -SmtpServer $SmtpServer -Credential $SmtpCreds
                }
            }

            ## If an email username and password were not configured, send the email without authentication
            Else
            {
                Send-MailMessage -To $MailTo -From $MailFrom -Subject $MailSubject -Body $MailBody -BodyAsHtml -SmtpServer $SmtpServer
            }
        }

        ## If the refresh time option is configured, wait the specifed number of seconds then loop.
        If ($RefreshTime -ne 0)
        {
            Start-Sleep -Seconds $RefreshTime
        }
    }
}

## If the refresh time option is not configured, stop the loop.
Until ($RefreshTime -eq 0)

## End