localadmin.psd1
# # Module manifest for module 'localadmin' # # Generated by: schomburg # # Generated on: 26.02.2024 # @{ # Die diesem Manifest zugeordnete Skript- oder Binärmoduldatei. RootModule = 'localadmin.psm1' # Die Versionsnummer dieses Moduls ModuleVersion = '1.0.0' # ID zur eindeutigen Kennzeichnung dieses Moduls GUID = '890b7454-77d4-4941-b6cd-0da9a9fd9bb2' # Autor dieses Moduls Author = 'Byran Schomburg - byran@schomburg.dev' # Unternehmen oder Hersteller dieses Moduls CompanyName = 'Byran Schomburg' # Urheberrechtserklärung für dieses Modul Copyright = '(c) 2024 Byran Schomburg. All rights reserved.' # Description of the functionality provided by this module Description = 'This Module adds or removes the current loggen in user to the local Administrators group.' # 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 = @('add-localadmin', 'remove-localadmin') # 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. 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 = @('Localadmin') # A URL to the license for this module. # LicenseUri = '' # A URL to the main website for this project. # ProjectUri = '' # A URL to an icon representing this module. # IconUri = '' # Flag to indicate whether the module requires explicit user acceptance for install/update/save } # 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 = '' } |