Set-NTPConfig.psd1
@{ # Script module or binary module file associated with this manifest. RootModule = 'Set-NTPConfig.psm1' # Version number of this module. ModuleVersion = '2.0.8' # Supported PowerShell editions CompatiblePSEditions = @('Desktop') # ID used to uniquely identify this module GUID = '9436be54-93b7-4b28-91cc-7968acbd588e' # Author of this module Author = 'Collin George' # Company or vendor of this module CompanyName = 'xAI' # Copyright statement for this module Copyright = '(c) 2025 Collin George. All rights reserved.' # Description of the functionality provided by this module Description = 'Configures Windows NTP client with secure, reliable time synchronization.' # Minimum version of the Windows PowerShell engine required by this module PowerShellVersion = '5.1' # Functions to export FunctionsToExport = @('Set-NTPConfig') # Cmdlets to export from this module CmdletsToExport = @() # Variables to export from this module VariablesToExport = @() # Aliases to export from this module AliasesToExport = @() # Private data to pass to the module PrivateData = @{ PSData = @{ Tags = @('NTP','Time','Synchronization','Windows') LicenseUri = 'https://github.com/collingeorge/Set-NTPConfig/blob/main/LICENSE' ProjectUri = 'https://github.com/collingeorge/Set-NTPConfig' IconUri = '' ReleaseNotes = 'v2.0.8: Reordered operations to apply configuration **after** service registration' } } } |