$Env:PSModulePath
Die zwei bevorzugten Pfade sind:
C:\Users\JoernWalter\Documents\WindowsPowerShell\Modules
C:\Program Files\WindowsPowerShell\Modules
Der erste Pfad ist benutzerspezifisch wobei der zweite Pfad die Module allen Benutzern zugänglich macht.
Powershell-Modul aus dem Internet herunterladen
https://github.com/raandree/NTFSSecurity
Powershell-Modul entpacken und in den benutzerspezifischen Pfad kopieren
C:\Users\JoernWalter\Documents\WindowsPowerShell\Modules
Alle vorhandenen Module abfragen
Get-Module -ListAvailable
NTFSSecurity Modul laden und nutzen
Import-Module NTFSSecurity
Optional:
Alle vorhandenen Module laden
$AllModules = Get-Module -ListAvailable | Select-Object Name -ExpandProperty Name
Foreach ($ Modul in $ AllModules)
Import-Modul-Name $ Modul
}