Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
AU
2021.7.18
AU.psm1
#requires -version 3
$paths
=
"Private"
,
"Public"
foreach
(
$path
in
$paths
)
{
Get-ChildItem
(
[System.IO.Path]
::
Combine
(
$PSScriptRoot
,
$path
,
'*.ps1'
)
)
|
ForEach-Object
{
.
$_
.
FullName
}
}