mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 06:08:07 +00:00
14 lines
484 B
PowerShell
14 lines
484 B
PowerShell
################################################################################
|
|
## File: Validate-WDK.ps1
|
|
## Desc: Validate the installation of the Windows Driver Kit
|
|
################################################################################
|
|
|
|
# Adding description of the software to Markdown
|
|
$SoftwareName = "Windows Driver Kit"
|
|
|
|
$Description = @"
|
|
_Version:_ 10.0.17763.0<br/>
|
|
"@
|
|
|
|
Add-SoftwareDetailsToMarkdown -SoftwareName $SoftwareName -DescriptionMarkdown $Description
|