PowerShell/Scripts/say-operating-system.ps1

31 lines
755 B
PowerShell
Raw Normal View History

2021-10-13 13:48:44 +02:00
<#
.SYNOPSIS
Say the operating system details by text-to-speech
.DESCRIPTION
This script speaks the operating system details by text-to-speech (TTS).
.EXAMPLE
PS> ./say-operating-system
(listen)
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
try {
if ($IsLinux) {
$details = (uname -sr)
} 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
$details = "$OSname for $OSarchitecture version $OSversion"
}
& "$PSScriptRoot/speak-english.ps1" "$details"
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}