Private/_SCHNIPPSEL.ps1

<#
 
# Schnippsel- / Test-Datei
 
Eine freie Fläche in diesem Workspace für eigene PowerShell-Experimente
 
- **Hashtags** Schnippsel Test
- **Version** 2020.05.29
 
        _ _ _ _ _ _ _
       | | | | (_) | | | (_) | |
   __ _| |_| |_ _| | __ _| | ___ __ _ ___| | __ ___ ___ _ __ ___
  / _` | __| __| | |/ _` | |/ / '__| |/ __| |/ / / __/ _ \| '_ ` _ \
 | (_| | |_| |_| | | (_| | <| | | | (__| < | (_| (_) | | | | | |
  \__,_|\__|\__|_|_|\__,_|_|\_\_| |_|\___|_|\_(_)___\___/|_| |_| |_|
 
 - - - - VCard ./AKPT/Private/Wissen/A0_AttilaKrick.png - - - - - - -
#>


# TODO PowerShell-Hilfe installieren & aktualisieren:
Update-Help -Module '*' -UICulture 'en-US' -ErrorAction 'Ignore'

# TODO Test- und Beispiel-Ordner erstellen:
New-Item -Path 'C:\Temp' -ItemType 'Directory' -Force

# TODO PowerShell-Workshop-Module importieren:
Import-Module -Name '.\AKPT' -Force

# TODO Feature-Beschreibung des AKPT-Module:
Get-Help -Name 'about_AKPT' -ShowWindow                          

# TODO AKPT => Im Module AKPT Wissen finden:
Find-Know -Keyword 'Help'

# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -