ConnectWiseAutomateAgent.psd1
|
@{ # Script module or binary module file associated with this manifest. RootModule = 'ConnectWiseAutomateAgent.psm1' # Version number of this module. ModuleVersion = '2.0.0' # ID used to uniquely identify this module GUID = '37424fc5-48d4-4d15-8b19-e1c2bf4bab67' # Author of this module Author = 'Chris Taylor' # Company or vendor of this module CompanyName = 'Chris Taylor' # Copyright statement for this module Copyright = '(c) 2026 Chris Taylor. All rights reserved.' # Description of the functionality provided by this module Description = 'PowerShell module for working with the ConnectWise Automate Agent.' # Minimum version of the Windows PowerShell engine required by this module PowerShellVersion = '3.0' # Functions to export from this module # ModuleBuilder overwrites this list at build time FunctionsToExport = @('Hide-CWAAAddRemove','Rename-CWAAAddRemove','Show-CWAAAddRemove','Install-CWAA','Redo-CWAA','Uninstall-CWAA','Update-CWAA','Get-CWAAError','Get-CWAALogLevel','Get-CWAAProbeError','Set-CWAALogLevel','Get-CWAAProxy','Set-CWAAProxy','Register-CWAAHealthCheckTask','Repair-CWAA','Restart-CWAA','Start-CWAA','Stop-CWAA','Test-CWAAHealth','Unregister-CWAAHealthCheckTask','Get-CWAAInfo','Get-CWAAInfoBackup','Get-CWAASettings','New-CWAABackup','Reset-CWAA','ConvertFrom-CWAASecurity','ConvertTo-CWAASecurity','Invoke-CWAACommand','Test-CWAAPort','Test-CWAAServerConnectivity') # Cmdlets to export from this module CmdletsToExport = @() # Variables to export from this module VariablesToExport = @() # Aliases to export from this module # ModuleBuilder discovers [Alias()] attributes at build time AliasesToExport = @('Hide-LTAddRemove','Rename-LTAddRemove','Show-LTAddRemove','ConvertFrom-LTSecurity','ConvertTo-LTSecurity','Install-LTService','Reinstall-CWAA','Redo-LTService','Reinstall-LTService','Uninstall-LTService','Update-LTService','Invoke-LTServiceCommand','Get-LTErrors','Get-LTLogging','Get-LTProbeErrors','Set-LTLogging','Get-LTProxy','Set-LTProxy','Register-LTHealthCheckTask','Repair-LTService','Restart-LTService','Start-LTService','Stop-LTService','Test-LTHealth','Unregister-LTHealthCheckTask','Get-LTServiceInfo','Get-LTServiceInfoBackup','Get-LTServiceSettings','New-LTServiceBackup','Reset-LTService','Test-LTPorts','Test-LTServerConnectivity') # Private data to pass to the module specified in RootModule/ModuleToProcess PrivateData = @{ PSData = @{ # Tags applied to this module Tags = @('ChrisTaylorCodes', 'ConnectWise', 'Automate', 'LabTech', 'RMM') # A URL to the license for this module LicenseUri = 'https://github.com/christaylorcodes/ConnectWiseAutomateAgent/blob/main/LICENSE' # A URL to the main website for this project ProjectUri = 'https://github.com/christaylorcodes/ConnectWiseAutomateAgent' # A URL to an icon representing this module IconUri = 'https://raw.githubusercontent.com/christaylorcodes/ConnectWiseAutomateAgent/main/Media/connectwise-automate.png' # ReleaseNotes populated at build time from CHANGELOG.md ReleaseNotes = '## [2.0.0] - 2026-02-04 ### Added ### Changed ### Fixed ' # Prerelease tag for PSGallery (ASCII alphanumeric only, no dots/hyphens) # Controlled by GitVersion at build time; leave empty in source Prerelease = '' } } # HelpInfo URI of this module HelpInfoURI = 'https://raw.githubusercontent.com/christaylorcodes/ConnectWiseAutomateAgent/main/source/en-US/ConnectWiseAutomateAgent-help.xml' } |