mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-21 17:38:19 +02:00
Update tell-uptime.ps1
This commit is contained in:
parent
5a2dcb0465
commit
71b72611b7
@ -20,7 +20,25 @@ try {
|
|||||||
$Uptime = New-TimeSpan -Start $BootTime.TimeCreated.Date -End $TimeNow
|
$Uptime = New-TimeSpan -Start $BootTime.TimeCreated.Date -End $TimeNow
|
||||||
}
|
}
|
||||||
|
|
||||||
$Answer = "I'm up for $($Uptime.Days) days, $($Uptime.Hours) hours and $($Uptime.Minutes) minutes."
|
$Days = $Uptime.Days
|
||||||
|
$Hours = $Uptime.Hours
|
||||||
|
$Minutes = $Uptime.Minutes
|
||||||
|
|
||||||
|
if ($Days -eq "1") {
|
||||||
|
$Answer = "I'm up for 1 day, "
|
||||||
|
} else {
|
||||||
|
$Answer = "I'm up for $Days days, "
|
||||||
|
}
|
||||||
|
if ($Hours -eq "1") {
|
||||||
|
$Answer += "1 hour "
|
||||||
|
} else {
|
||||||
|
$Answer += "$Hours hours "
|
||||||
|
}
|
||||||
|
if ($Minutes -eq "1") {
|
||||||
|
$Answer += "and 1 minute."
|
||||||
|
} else {
|
||||||
|
$Answer += "and $Minutes minutes."
|
||||||
|
}
|
||||||
|
|
||||||
& "$PSScriptRoot/speak-english.ps1" "$Answer"
|
& "$PSScriptRoot/speak-english.ps1" "$Answer"
|
||||||
write-output "$Answer"
|
write-output "$Answer"
|
||||||
|
Loading…
Reference in New Issue
Block a user