functions/New-AVDMFConfiguration.ps1

function New-AVDMFConfiguration {
    [CmdletBinding()]
    param (
        [Parameter()]
        [string]$Path = (Get-Location).Path
    )

    $modulePath = Split-Path -Path $MyInvocation.MyCommand.Module.Path
    $zipPath = Join-Path -Path $modulePath -ChildPath 'SampleConfiguration.zip'

    Expand-Archive -Path $zipPath -DestinationPath $Path
}