2019-11-15 15:23:41 -05:00
|
|
|
################################################################################
|
|
|
|
|
## File: Validate-WDK.ps1
|
2019-12-11 14:58:32 -05:00
|
|
|
## Team: CI-X
|
2019-11-15 15:23:41 -05:00
|
|
|
## 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/>
|
|
|
|
|
"@
|
|
|
|
|
|
2019-12-11 14:58:32 -05:00
|
|
|
Add-SoftwareDetailsToMarkdown -SoftwareName $SoftwareName -DescriptionMarkdown $Description
|