Add dedicated script for installing prerequisites

This commit is contained in:
Manuel Thalmann 2023-06-18 19:58:01 +02:00
parent fda8da3396
commit b40ba593a3
4 changed files with 9 additions and 8 deletions
scripts/Windows/Scripts

View file

@ -0,0 +1,7 @@
foreach ($module in @("PSWindowsUpdate", "KnownFolders"))
{
if (-not (Get-Module $module))
{
Install-Module -AcceptLicense -Force "$module";
}
}