Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
PSWinGlue
0.3.1
PSWinGlue.psm1
# Import all functions
$Functions
=
Get-ChildItem
-Path
(
Join-Path
-Path
$PSScriptRoot
-ChildPath
'Functions'
)
-File
foreach
(
$Function
in
$Functions
)
{
.
$Function
.
FullName
}