Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
Cache
1.1.1.124
imports.ps1
# grab functions from files
get-childitem
$psscriptroot\functions\
-filter
"*.ps1"
|
?
{
-not
(
$_
.
name
.
Contains
(
".Tests."
)
)
}
|
?
{
-not
(
(
$_
.
name
)
.
StartsWith
(
"_"
)
)
}
|
%
{
.
$_
.
fullname
}