PowershellModules/Install-PowershellModules.ps1

4 lines
182 B
PowerShell
Raw Normal View History

2022-02-14 09:36:16 +01:00
$ModulePath="$($env:windir)\system32\WindowsPowerShell\v1.0\Modules\"
Get-ChildItem $PSScriptRoot -Directory | ForEach-Object{
Copy-Item -Recurse -Force $_.FullName $ModulePath
}