PSJumpStart.psd1
# # Module manifest for module 'PSJumpStart' # # Started by: Jack Olsson # # First release: 2018-07-04 # # 1.0.2 # ----- # Correction for Verbose argument override by Get-GlobalDefaultsFromDfpFiles # "Template" for self-signing PowerShell scripts. # # 1.0.3 # ----- # Correction of file logging in MSG-function # Improved PSJumpStart templates # Write-Verbose included in the dfp file processing. # Improved ScriptSigner.ps1 # # 1.0.4 # ----- # Improved description. # Improved AppendValue method for Hastable type add-on in ps1xml # # 1.0.5 # ----- # Small bug correction in the Get-GlobalDefaultsFromDfpFiles # New function Send-MailMessageUsingHtmlTemplate # EPS template implementation planned but not in play yet # Improved documentation ReadMe.md # # 1.1.0 # ----- # Code structure change and naming cleanup. Separate ps1-files for each function. # # Renamed functions: # ExportDataTableToFile -> Out-DataTableToFile # QuerySQL -> Invoke-SqlQuery # # Correction and cleanup in the ps1xml file for the HashTable extension methods. # Improved Send-MailMessageUsingHtmlTemplate function. # # 1.1.1 # ------ # Msg-function will now support both Eventlog-writing AND File-log writing. If non is used it will # send output to Std-out and Std-Err to be captured by calling entity. # # 1.1.2 #------- # Improved documentation. Support for array argument input when running PS-files from generic CMD-file. # Small changesd in test-code. # # 1.2.0 #------- #Added support for JSON setting files along with the DFP-files. # # 1.2.1 #------- #New function for handling credentials - Get-AccessCredential # # 1.2.2 #------- #Bugs correction of the old functions for template handling. # # 1.2.3 - 1.2.9 # -------------- #Support for LocalLib in current script location OR current directory $PWD.Path (this may get removed) #Added support for sendlist in the send mail function # 1.2.4 - Added Pipeline script template # 1.2.5 - New functions html handling (for general use or part of html-mail content) # 1.2.6 - Small fixes and improved doc as well as a shell enviroment script # 1.2.7 - Improved Get-ModuleHelp and new PS-header handlers # 1.2.71 - Bug correction in PSJumpstart.ps1xml # 1.2.8 - Support for DLL Add-Type in same fasion as functions (load from script localLib folder or localLib module folder). Improved Get-ModuleHelp to include Available modules. # 1.2.9 - Support for computer name settings files (long overdue) + Mutex support # # 1.3 #----- #Support for dynamic loading (PSJumpStart style) of TypeData and Format files (.ps1xml). New module folder structure as well as expected local one. #Script template improvements and a few new functions - Set-ValuesFromExpressions + Compare-PSObjects #Some housekeeping in samples folder and new folder for Pester tests. # # 2.0.0 # ----- # DFP files are no longer supported! # Major rewrite removing most usage of $CallerInvocation (root script $MyInvocation environment) # Msg is now an alias for Write-Message # New functions for json configuration file usage @{ # Script module or binary module file associated with this manifest. RootModule = '.\PSJumpStart.psm1' # Version number of this module. ModuleVersion = '2.0.0' # Supported PSEditions # CompatiblePSEditions = @() # ID used to uniquely identify this module GUID = 'd21b1c94-e492-42ac-abd7-e5bedf2a23dc' # Author of this module Author = 'Jack Olsson' # Company or vendor of this module CompanyName = 'jGO Solutions AB' # Copyright statement for this module Copyright = '(c)2018-2024 jGO Solutions AB' # Description of the functionality provided by this module Description = 'The PowerShell PSJumpStart module is a dynamic framework to create an environment for jumpstarting PS-script authoring. Please visit the project site for documentation and samples' # Minimum version of the Windows PowerShell engine required by this module PowerShellVersion = '5.1' # Name of the Windows PowerShell host required by this module # PowerShellHostName = '' # Minimum version of the Windows PowerShell host required by this module # PowerShellHostVersion = '' # Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. # DotNetFrameworkVersion = '' # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. # CLRVersion = '' # Processor architecture (None, X86, Amd64) required by this module # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module # RequiredModules = @() # Assemblies that must be loaded prior to importing this module # RequiredAssemblies = @() # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() # Type files (.ps1xml) to be loaded when importing this module # Type files are loaded dynamically from the psm1-file BUT the Get-Module command will be blind to this #TypesToProcess = (. "$PSScriptRoot\Get-TypesToProcess.ps1") # Format files (.ps1xml) to be loaded when importing this module # Format files are loaded dynamically from the psm1-file BUT the Get-Module command will be blind to this #FormatsToProcess = "$PSScriptRoot\Get-FormatsToProcess.ps1" # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess NestedModules = @() # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = '*' # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. CmdletsToExport = '*' # Variables to export from this module VariablesToExport = '*' # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. AliasesToExport = '*' # DSC resources to export from this module # DscResourcesToExport = @() # List of all modules packaged with this module # ModuleList = @() # List of all files packaged with this module FileList = @() # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. Tags = @("jumpstart","admin","administration","tools","templates","sendmail", "functions","library","libraries","credential","credentials","password" "framework","sql","sqlquery","json","settings","get-help","script","signing") # A URL to the license for this module. # LicenseUri = '' # A URL to the main website for this project. ProjectUri = 'https://github.com/jaols/PSJumpStart' # A URL to an icon representing this module. # IconUri = '' # ReleaseNotes of this module # ReleaseNotes = '' } # End of PSData hashtable } # End of PrivateData hashtable # HelpInfo URI of this module # HelpInfoURI = '' # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. # DefaultCommandPrefix = '' } |