init commit

This commit is contained in:
iFlip721
2025-04-16 09:55:57 -04:00
commit a03209dc9e
935 changed files with 177492 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
#Using module posh-PowerPlatformToolkit
New-Variable -Name scriptRoot -Value $PSScriptRoot -Scope Script -Force
###########################
# enums
###########################
# public classes
###########################
# public functions
$publicFunctions = @{
Path = "$scriptRoot"
Include = "*.ps1"
Recurse = $true
}
(Get-ChildItem @publicFunctions).Where({$_.FullName -notmatch 'bin'}) | ForEach-Object {. $_}
#Export-ModuleMember -Alias * -function *
#Write-Host "┌───────────────────────────────────────────────────────────────┐" -ForegroundColor Green
#Write-Host "│" -ForegroundColor Green -NoNewLine; Write-Host "`t`tCOMMANDS AVAIABLE IN MODULE`t`t`t" -ForegroundColor Cyan -NoNewline; Write-Host "│" -ForegroundColor Green
#Write-Host "└───────────────────────────────────────────────────────────────┘" -ForegroundColor Green
Get-Alias | ?{$_.Source -eq "posh-PowerPlatformToolkit"} | %{
Write-Host "$($_.Name)" -ForegroundColor Green
}