2021-10-13 13:48:44 +02:00
|
|
|
|
<#
|
|
|
|
|
.SYNOPSIS
|
2022-10-31 08:39:14 +01:00
|
|
|
|
Query OS details
|
2021-10-13 13:48:44 +02:00
|
|
|
|
.DESCRIPTION
|
2022-10-31 08:39:14 +01:00
|
|
|
|
This PowerShell script queries and lists operating system details.
|
2021-10-13 13:48:44 +02:00
|
|
|
|
.EXAMPLE
|
2022-12-01 09:50:58 +01:00
|
|
|
|
PS> ./check-os
|
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-12-01 21:39:03 +01:00
|
|
|
|
"✅ $(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
|
2022-12-04 18:09:17 +01:00
|
|
|
|
$Name = $OS.Caption -Replace "Microsoft Windows","Windows"
|
2022-10-31 08:49:11 +01:00
|
|
|
|
$Arch = $OS.OSArchitecture
|
2022-10-25 20:11:09 +02:00
|
|
|
|
$Version = $OS.Version
|
|
|
|
|
|
2022-10-31 08:39:14 +01:00
|
|
|
|
[system.threading.thread]::currentthread.currentculture = [system.globalization.cultureinfo]"en-US"
|
|
|
|
|
$OSDetails = Get-CimInstance Win32_OperatingSystem
|
2022-10-31 08:49:11 +01:00
|
|
|
|
$BuildNo = $OSDetails.BuildNumber
|
|
|
|
|
$Serial = $OSDetails.SerialNumber
|
2022-10-31 08:39:14 +01:00
|
|
|
|
$InstallDate = $OSDetails.InstallDate
|
2022-12-04 12:10:07 +01:00
|
|
|
|
|
|
|
|
|
$ProductKey = (Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform" -Name BackupProductKeyDefault).BackupProductKeyDefault
|
|
|
|
|
"✅ $Name ($Arch, v$Version, S/N $Serial, key $ProductKey) since $($InstallDate.ToShortDateString())"
|
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
|
2022-12-01 21:39:03 +01:00
|
|
|
|
}
|