2021-10-13 13:48:44 +02:00
|
|
|
|
<#
|
|
|
|
|
.SYNOPSIS
|
2021-12-01 11:01:53 +01:00
|
|
|
|
Determines the exact OS version
|
2021-10-13 13:48:44 +02:00
|
|
|
|
.DESCRIPTION
|
2022-10-09 19:16:32 +02:00
|
|
|
|
This PowerShell script determines and lists the exact operating system version.
|
2021-10-13 13:48:44 +02:00
|
|
|
|
.EXAMPLE
|
2021-12-01 11:01:53 +01:00
|
|
|
|
PS> ./check-operating-system
|
2021-10-13 13:48:44 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
2022-01-29 12:47:46 +01:00
|
|
|
|
.NOTES
|
2022-09-06 21:42:04 +02:00
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
2021-10-13 13:48:44 +02:00
|
|
|
|
#>
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
if ($IsLinux) {
|
2022-10-09 19:16:32 +02:00
|
|
|
|
$Details = (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
|
2022-10-09 19:16:32 +02:00
|
|
|
|
$Details = "$OSname for $OSarchitecture version $OSversion"
|
2021-10-13 13:48:44 +02:00
|
|
|
|
}
|
2022-10-09 19:16:32 +02:00
|
|
|
|
"✅ Running $Details."
|
2021-10-13 13:48:44 +02:00
|
|
|
|
exit 0 # success
|
|
|
|
|
} catch {
|
2022-04-13 12:06:32 +02:00
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2021-10-13 13:48:44 +02:00
|
|
|
|
exit 1
|
|
|
|
|
}
|