Add Linux kernel version to software report (#2959)

This commit is contained in:
Mikhail Timofeev
2021-03-18 09:41:01 +03:00
committed by GitHub
parent 1dc087be2e
commit 4847468235
2 changed files with 7 additions and 0 deletions

View File

@@ -26,7 +26,9 @@ $markdown = ""
$OSName = Get-OSName
$markdown += New-MDHeader "$OSName" -Level 1
$kernelVersion = Get-KernelVersion
$markdown += New-MDList -Style Unordered -Lines @(
"$kernelVersion"
"Image Version: $env:IMAGE_VERSION"
)