2024-10-01 15:11:03 +02:00
|
|
|
|
<#
|
2021-10-13 13:48:44 +02:00
|
|
|
|
.SYNOPSIS
|
2023-04-11 10:48:59 +02:00
|
|
|
|
Checks the OS status
|
2021-10-13 13:48:44 +02:00
|
|
|
|
.DESCRIPTION
|
2023-04-11 10:48:59 +02:00
|
|
|
|
This PowerShell script queries the operating system status and prints it.
|
2021-10-13 13:48:44 +02:00
|
|
|
|
.EXAMPLE
|
2023-08-06 21:35:36 +02:00
|
|
|
|
PS> ./check-os.ps1
|
2024-08-17 13:52:26 +02:00
|
|
|
|
✅ Windows 10 Pro 64-bit since 6/22/2021 (v10.0.19045, S/N 00123-45678-15135-AAOEM, P/K AB123-CD456-EF789-GH000-WFR6P)
|
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-28 12:21:15 +01:00
|
|
|
|
$Name = $PSVersionTable.OS
|
2023-04-11 10:26:05 +02:00
|
|
|
|
if ([System.Environment]::Is64BitOperatingSystem) { $Arch = "64-bit" } else { $Arch = "32-bit" }
|
2023-11-24 10:26:30 +01:00
|
|
|
|
Write-Host "✅ $Name (Linux $Arch)"
|
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
|
2024-08-17 13:52:26 +02:00
|
|
|
|
Write-Host "✅ $Name $Arch since $($InstallDate.ToShortDateString()) (v$Version, S/N $Serial, P/K $ProductKey)"
|
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
|
2023-08-06 21:35:36 +02:00
|
|
|
|
}
|