DNSSuffix.psd1
# # Module manifest for DNSSuffix # @{ RootModule = 'DNSSuffix.psm1' ModuleVersion = '0.5.0' CompatiblePSEditions = @('Desktop') GUID = 'bb504c7c-1bf9-44fb-a253-d771d635a2df' Author = 'Jeff Hicks' CompanyName = 'JDH Information Technology Solutions, Inc.' Copyright = '(c) 2018-2025 JDH Information Technology Solutions, Inc.' Description = 'This PowerShell module has two simple commands that work with the registry to either get or set the primary DNS suffix of a computer.' PowerShellVersion = '5.1' FunctionsToExport = 'Get-PrimaryDNSSuffix', 'Set-PrimaryDNSSuffix' PrivateData = @{ PSData = @{ Tags = @('DNS','registry''networking') LicenseUri = 'https://github.com/jdhitsolutions/DNSSuffix/blob/main/license.txt' ProjectUri = 'https://github.com/jdhitsolutions/DNSSuffix' ReleaseNotes = 'https://github.com/jdhitsolutions/DNSSuffix/blob/main/README.md' } } } |