Example/Sample_x7Zip.ps1

#Installs the specified version of 7Zip in the specified version and architecture
# vasken@ucr.edu

Configuration Sample_Install7Zip
{
    param
    (
    
    [Parameter(Mandatory)]
    $VersionNumber,
    [Parameter(Mandatory)]
    $MachineBits,
    [Parameter(Mandatory)]
    $LocalPath    
        
    )
    
    Import-DscResource -module x7Zip
    
    VH_x7Zip 7zip
    {
    VersionNumber = $VersionNumber
    MachineBits = $MachineBits
    LocalPath = $LocalPath
    }
}