Skip to content

Commit

Permalink
Working build
Browse files Browse the repository at this point in the history
  • Loading branch information
SamErde committed Apr 4, 2024
1 parent e605339 commit c5b3548
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 3 deletions.
52 changes: 52 additions & 0 deletions docs/Get-HelloWorld.md
Original file line number Diff line number Diff line change
@@ -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 [<CommonParameters>]
```

## 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
17 changes: 17 additions & 0 deletions docs/TheCleaners.md
Original file line number Diff line number Diff line change
@@ -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


6 changes: 3 additions & 3 deletions src/TheCleaners/TheCleaners.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -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 = @()
Expand Down

0 comments on commit c5b3548

Please sign in to comment.