Add Install-PowershellModules

This commit is contained in:
Haug, Christoph 2022-02-14 09:36:16 +01:00
parent 98c6db773b
commit 2381d32a5a
1 changed files with 4 additions and 0 deletions

View File

@ -0,0 +1,4 @@
$ModulePath="$($env:windir)\system32\WindowsPowerShell\v1.0\Modules\"
Get-ChildItem $PSScriptRoot -Directory | ForEach-Object{
Copy-Item -Recurse -Force $_.FullName $ModulePath
}