Envoke.psd1
|
# # Module manifest for module 'Envoke' # # Generated by: Aaron AlAnsari # Generated on: 2026-02-24 # @{ # Script module or binary module file associated with this manifest. RootModule = 'Envoke.psm1' # Version number of this module. ModuleVersion = '1.0.0' # ID used to uniquely identify this module GUID = '31ec4192-977c-46d1-a9d6-a6d2da6e58ba' # Author of this module Author = 'Aaron AlAnsari' # Company or vendor of this module CompanyName = 'Aaron AlAnsari' # Copyright statement for this module Copyright = '(c) 2026 Aaron AlAnsari. MIT License.' # Description of the functionality provided by this module Description = 'Automatically launch and arrange desktop applications based on time-of-day environment schedules.' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '5.1' # 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. # Public API surface FunctionsToExport = @('Get-EnvkConfig', 'Select-EnvkEnvironment', 'Resolve-EnvkExecutablePath', 'Start-EnvkAppSequence', 'Start-EnvkAppBatch', 'Invoke-EnvkStartup', 'Test-EnvkInstallation', 'Write-EnvkLog') # 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 = @() # Private data to pass to the module specified in RootModule/ModuleToProcess. PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. Tags = @('Windows', 'Automation', 'Startup', 'Desktop', 'TaskScheduler', 'PSEdition_Desktop', 'PSEdition_Core') # A URL to the license for this module. LicenseUri = 'https://github.com/aporonaut/Envoke/blob/main/LICENSE' # A URL to the main website for this project. ProjectUri = 'https://github.com/aporonaut/Envoke' # A URL to an icon representing this module. # IconUri = '' # ReleaseNotes of this module ReleaseNotes = 'Initial 1.0.0 release. Automatic desktop environment launcher for Windows with schedule-based environment detection, parallel app launching on PS 7+, and window maximization.' } # End of PSData hashtable } # End of PrivateData hashtable } |