Files
Backup/_NDGOV_WindowsTeam/ITD.POC/Public/Get-PublicAndPrivateStuff.ps1
T
Zack Meier 1d304511b8 update
2026-04-15 15:45:50 -05:00

41 lines
637 B
PowerShell

<#
.Synopsis
Short description
.DESCRIPTION
Long description
.EXAMPLE
Example of how to use this cmdlet
.EXAMPLE
Another example of how to use this cmdlet
.INPUTS
Inputs to this cmdlet (if any)
.OUTPUTS
Output from this cmdlet (if any)
.NOTES
General notes
.COMPONENT
The component this cmdlet belongs to
.ROLE
The role this cmdlet belongs to
.FUNCTIONALITY
The functionality that best describes this cmdlet
#>
function Get-PublicandPrivateStuff
{
[CmdletBinding()]
Param
(
)
Begin
{
}
Process
{
Get-PublicStuff
Get-PrivateStuff
}
End
{
}
}