diff --git a/Install-PowershellModules.ps1 b/Install-PowershellModules.ps1 new file mode 100644 index 0000000..80aba7f --- /dev/null +++ b/Install-PowershellModules.ps1 @@ -0,0 +1,4 @@ +$ModulePath="$($env:windir)\system32\WindowsPowerShell\v1.0\Modules\" +Get-ChildItem $PSScriptRoot -Directory | ForEach-Object{ + Copy-Item -Recurse -Force $_.FullName $ModulePath +} \ No newline at end of file