AzureExt.psm1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
#region Aliases ### This section contains aliases that will be exported from the module. ### Import all aliases from the Aliases folder. $AliasFileList = Get-ChildItem -Path $PSScriptRoot\Aliases\*Aliases.json; foreach ($AliasFile in $AliasFileList){ $AliasJson = ConvertFrom-Json -InputObject (Get-Content -Path $AliasFile -Raw); foreach ($Alias in $AliasJson.Aliases) { ### Validate that each alias has a name and value defined. The description is optional. if ($Alias.Name -and $Alias.Value) { $NewAlias = @{ Name = $Alias.Name; Value = $Alias.Value; Description = $Alias.Description; } New-Alias @NewAlias; } else { Write-Warning -Message ('Alias skipped in file {0}' -f $AliasFile.Name); } } } #endregion #region Functions #region Public Functions $FunctionList = Get-ChildItem -Path $PSScriptRoot\Functions\Public; foreach ($Function in $FunctionList) { Write-Verbose -Message ('Importing function file: {0}' -f $Function.FullName); . $Function.FullName; } #endregion Public Functions #region Private Functions $FunctionList = Get-ChildItem -Path $PSScriptRoot\Functions\Private; foreach ($Function in $FunctionList) { Write-Verbose -Message ('Importing function file: {0}' -f $Function.FullName); . $Function.FullName; } #endregion Private Functions #endregion Functions #region Import Argument Completers $CompleterScriptList = Get-ChildItem -Path $PSScriptRoot\Completers\*.ps1; foreach ($CompleterScript in $CompleterScriptList) { Write-Verbose -Message ('Import argument completer script: {0}' -f $CompleterScript.FullName); & $CompleterScript.FullName; } Write-Verbose -Message 'Finished importing argument completer scripts.'; #endregion #region Format Data $FormatFileList = Get-ChildItem -Path "$PSScriptRoot\Format Types\*" -Filter *format.ps1xml; foreach ($FormatFile in $FormatFileList) { Update-FormatData -PrependPath $FormatFile.FullName; Write-Verbose -Message ('Added format file: {0}' -f $FormatFile.Name); } #endregion |