PowerShell/Scripts/check-operating-system.ps1

31 lines
759 B
PowerShell
Raw Normal View History

2021-10-13 13:48:44 +02:00
<#
.SYNOPSIS
Determines the exact OS version
2021-10-13 13:48:44 +02:00
.DESCRIPTION
This script determines and says the exact operating system version by text-to-speech (TTS).
2021-10-13 13:48:44 +02:00
.EXAMPLE
PS> ./check-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) {
$Reply = (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
$Reply = "$OSname for $OSarchitecture version $OSversion"
2021-10-13 13:48:44 +02:00
}
"✔️ $Reply"
& "$PSScriptRoot/speak-english.ps1" "$Reply"
2021-10-13 13:48:44 +02:00
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}