OSBuilder.psm1
# Implement your module commands in this script. # Export only the functions using PowerShell standard verb-noun naming. # Be sure to list each exported functions in the FunctionsToExport field of the module manifest file. # This improves performance of command discovery in PowerShell. #Export-ModuleMember -Function *-* . $PSScriptRoot\Get-OSBuilder.ps1 . $PSScriptRoot\Get-OSBuilderUpdates.ps1 . $PSScriptRoot\Import-OSMedia.ps1 . $PSScriptRoot\Invoke-OSBuildTask.ps1 . $PSScriptRoot\New-OSBuilderISO.ps1 . $PSScriptRoot\New-OSBuilderUSB.ps1 . $PSScriptRoot\New-OSBuildTask.ps1 . $PSScriptRoot\Show-OSInfo.ps1 . $PSScriptRoot\Update-OSMedia.ps1 |