Closed thetalljosh closed 4 years ago
Hello @thetalljosh,
Thanks for the issue! There was a change implemented in 4.4.0, so that PowerSTIG.Convert will be included when users utilize the PSGet Install-Module method of installing PowerSTIG. That milestone is set to release on 04JUL20.
Thanks,
Eric
Adding the following functions in to functions.checklist would allow users to utilize the PowerSTIG.Document workflow from the PSGet Install-Module, without having to pull down the entire Repo.
function Get-StigXccdfBenchmarkContent { [CmdletBinding()] [OutputType([xml])] param ( [Parameter(Mandatory = $true)] [string] $Path )
}
<# .SYNOPSIS Extracts the xccdf file from the zip file provided from the DISA website.
>
function Get-StigContentFromZip { [CmdletBinding()] [OutputType([xml])] param ( [Parameter(Mandatory = $true)] [string] $Path )
}