Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
msdevmtl
1.2
msdevmtl.psm1
# Source all PowerShell scripts in order to export module member functions
Get-ChildItem
-Path
$PSScriptRoot\*.ps1
|
Foreach-Object
{
.
$_
.
FullName
}
# Dummy
Export-ModuleMember
-Function
Get-Dummy