w10install/scripts/install-psupdate.cmd
Michael H.G. Schmidt 4d39a344cd bugfixing
2023-01-29 17:23:17 +01:00

20 lines
482 B
Batchfile

@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
echo ####### %0 #######
echo Installing package provider NuGet ...
powershell -command "Install-PackageProvider NuGet -Force"
echo Setting policy for PSGallery to trusted ...
powershell -command "Set-PSRepository PSGallery -InstallationPolicy Trusted"
echo Installing powershell package PSWindowsUpdate ...
powershell -command "Install-Module PSWindowsUpdate"
echo.
echo ####### %0 #######
pause