Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
XKCD
1.4.66
xkcd.psm1
$Public
=
@(
Get-ChildItem
-Path
"$PSScriptRoot/Public/*.ps1"
-Recurse
)
@(
$Public
)
|
ForEach-Object
{
try
{
.
$_
.
FullName
}
catch
{
Write-Error
-Message
"Failed to import function $($_.FullName): $_"
}
}