@ECHO OFF REM Edit these 3 variables if you wish to download some other update: set mypsscript1=c:\windows\temp\kb4515383.ps1 set download1=http://download.windowsupdate.com/d/msdownload/update/software/secu/2019/09/windows10.0-kb4515383-x64_33a465dd17f198241e23e286ee7565c3c28b2f9d.msu set file1=c:\windows\temp\kb4515383-x64.msu ( echo $MyUpdate1 = "%file1%" echo wget -UseBasicParsing "%download1%" -OutFile $MyUpdate1 echo wusa.exe $MyUpdate1 /quiet /norestart )>"%mypsscript1%" powershell -ExecutionPolicy bypass -File "%mypsscript1%" del c:\windows\temp\*.* /f /s /q