VeeamAgent.psm1
#Get public and private function definition files. $Public = @( Get-ChildItem -Path $PSScriptRoot\Public\*.ps1 -ErrorAction SilentlyContinue -Recurse ) $Private = @( Get-ChildItem -Path $PSScriptRoot\Private\*.ps1 -ErrorAction SilentlyContinue -Recurse ) #Dot source the files Foreach ($import in @($Public + $Private)) { Try { . $import.fullname } Catch { Write-Error -Message "Failed to import function $($import.fullname): $_" } } # Read in or create an initial config file and variable # Export Public functions ($Public.BaseName) for WIP modules Export-ModuleMember -Function $Public.Basename # Set variables visible to the module and its functions only $script:DefaultDownloadURL = 'https://download2.veeam.com/VAW/v5/VeeamAgentWindows_5.0.3.4708.zip' $script:DefaultMD5 = 'f5be34d356534266dad89c838e4ae7e0' |