PowerShell/Scripts/check-uptime.ps1

50 lines
1.1 KiB
PowerShell
Raw Normal View History

2021-11-24 14:59:01 +01:00
<#
2021-11-24 14:56:38 +01:00
.SYNOPSIS
Determines the uptime
2021-11-24 14:56:38 +01:00
.DESCRIPTION
This script determines and says the uptime by text-to-speech (TTS).
2021-11-24 14:56:38 +01:00
.EXAMPLE
PS> ./check-uptime
2021-11-24 14:56:38 +01:00
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
try {
if ($IsLinux) {
$Uptime = (get-uptime)
} else {
$BootTime = Get-WinEvent -ProviderName eventlog | Where-Object {$_.Id -eq 6005} | Select-Object TimeCreated -First 1
$TimeNow = Get-Date
$Uptime = New-TimeSpan -Start $BootTime.TimeCreated.Date -End $TimeNow
2021-11-27 14:29:49 +01:00
}
$Days = $Uptime.Days
$Hours = $Uptime.Hours
$Minutes = $Uptime.Minutes
2021-11-24 14:56:38 +01:00
2021-12-04 14:10:16 +01:00
$Reply = "I'm up for "
2021-11-27 14:29:49 +01:00
if ($Days -eq "1") {
2021-12-04 14:10:16 +01:00
$Reply += "1 day, "
} elseif ($Days -ne "0") {
$Reply += "$Days days, "
2021-11-27 14:29:49 +01:00
}
if ($Hours -eq "1") {
$Reply += "1 hour "
2021-12-04 14:10:16 +01:00
} elseif ($Hours -ne "0") {
$Reply += "$Hours hours "
2021-11-27 14:29:49 +01:00
}
if ($Minutes -eq "1") {
2021-12-04 14:10:16 +01:00
$Reply += "and 1 minute"
} elseif ($Minutes -ne "0") {
$Reply += "and $Minutes minutes"
2021-11-27 14:29:49 +01:00
}
2021-12-04 14:10:16 +01:00
$Reply += "."
2021-12-06 17:00:49 +01:00
& "$PSScriptRoot/give-reply.ps1" "$Reply"
2021-11-24 14:56:38 +01:00
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}