PowerShell/Scripts/tell-operating-system.ps1

31 lines
755 B
PowerShell
Raw Normal View History

2021-10-13 13:48:44 +02:00
<#
.SYNOPSIS
Tells the OS version by text-to-speech
2021-10-13 13:48:44 +02:00
.DESCRIPTION
This script speaks the operating system version by text-to-speech (TTS).
2021-10-13 13:48:44 +02:00
.EXAMPLE
PS> ./tell-operating-system
2021-10-13 13:48:44 +02:00
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
try {
if ($IsLinux) {
2021-11-27 14:16:50 +01:00
$Answer = (uname -sr)
2021-10-13 13:48:44 +02:00
} else {
2021-10-13 13:53:01 +02:00
$OS = Get-WmiObject -class Win32_OperatingSystem
$OSname = $OS.Caption
2021-10-13 13:48:44 +02:00
$OSarchitecture = $OS.OSArchitecture
$OSversion = $OS.Version
2021-11-27 14:16:50 +01:00
$Answer = "$OSname for $OSarchitecture version $OSversion"
2021-10-13 13:48:44 +02:00
}
2021-11-27 14:16:50 +01:00
& "$PSScriptRoot/speak-english.ps1" "$Answer"
write-output "$Answer"
2021-10-13 13:48:44 +02:00
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}