diff --git a/docs/Get-HelloWorld.md b/docs/Get-HelloWorld.md new file mode 100644 index 0000000..2b7ce4b --- /dev/null +++ b/docs/Get-HelloWorld.md @@ -0,0 +1,52 @@ +--- +external help file: TheCleaners-help.xml +Module Name: TheCleaners +online version: +schema: 2.0.0 +--- + +# Get-HelloWorld + +## SYNOPSIS +Short description + +## SYNTAX + +``` +Get-HelloWorld [] +``` + +## DESCRIPTION +Long description + +## EXAMPLES + +### EXAMPLE 1 +``` + +``` + +Example of how to use this cmdlet + +### EXAMPLE 2 +``` + +``` + +Another example of how to use this cmdlet + +## PARAMETERS + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. +For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### Output from this cmdlet (if any) +## NOTES +General notes + +## RELATED LINKS diff --git a/docs/TheCleaners.md b/docs/TheCleaners.md new file mode 100644 index 0000000..6799f2d --- /dev/null +++ b/docs/TheCleaners.md @@ -0,0 +1,17 @@ +--- +Module Name: TheCleaners +Module Guid: 96512386-bbd2-4e95-badd-5d175310bace +Download Help Link: NA +Help Version: 0.0.1 +Locale: en-US +--- + +# TheCleaners Module +## Description +A module to help automate the cleanup of old log file and temp files on your systems. + +## TheCleaners Cmdlets +### [Get-HelloWorld](Get-HelloWorld.md) +Short description + + diff --git a/src/TheCleaners/TheCleaners.psd1 b/src/TheCleaners/TheCleaners.psd1 index aa8e2fe..5373a37 100644 --- a/src/TheCleaners/TheCleaners.psd1 +++ b/src/TheCleaners/TheCleaners.psd1 @@ -69,16 +69,16 @@ Description = 'A module to help automate the cleanup of old log file and temp fi # NestedModules = @() # 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 = '*' +FunctionsToExport = @('Get-HelloWorld') # 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 = '*' +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 = '*' +AliasesToExport = @() # DSC resources to export from this module # DscResourcesToExport = @()