@ECHO Off
mode con:cols=80 lines=20
COLOR 8F
Echo Starte Windows Update
ping localhost -n 2 >NUL
echo.
if defined ProgramFiles(x86) (
START "" %windir%\SysWoW64\wuapp.exe /detectnow
) else (
START "" wuauclt /detectnow
)
pause
Viel spass!