Remove unnecessary parameter

This commit is contained in:
Manuel Thalmann 2023-07-18 21:41:47 +02:00
parent c5536c7c75
commit 9715160b98

View file

@ -9,7 +9,7 @@ foreach ($module in @("PSWindowsUpdate", "KnownFolders"))
foreach ($nativeModule in @("PinnedItem")) {
if (-not (powershell -c Get-Module -ListAvailable $nativeModule)) {
powershell -c Install-Module -AcceptLicense -Force "$nativeModule";
powershell -c Install-Module -Force "$nativeModule";
}
}